Temporary patch for bug 1358192: printf("%f"...) sets fraction to zero.
[fw/sdcc] / ChangeLog
1 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2
3         * device/lib/printf_large.c: Temporary patch for bug 1358192: 
4           printf("%f"...) sets fraction to zero. 
5
6 2005-11-16 Raphael Neider <rneider AT web.de>
7
8         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
9           fixes #1357221
10         * src/pic/gen.c (genIfx): implemented for CARRY bit
11         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
12           to generic pointers, fixes #1357332,
13           (pic16_movLit2f): NEW,
14           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
15
16 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
17
18         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
19
20 2005-11-11 Raphael Neider <rneider AT web.de>
21
22         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
23         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
24           compute pointer's type from operand,
25           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
26           improved single bit reads, fixes bug #1353379
27
28 2005-11-09 Borut Razem <borut.razem AT siol.net>
29
30         * support/scripts/sdcc.nsi: added lib/pic to the package
31
32 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
35
36 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
37
38         * support/regression/tests/bug1348008.c: added
39         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
40         * support/regression/tests/bug1337835.c: updated comment
41
42 2005-11-06 Borut Razem <borut.razem AT siol.net>
43
44         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
45           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
46           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
47           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
48           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
49           dynamic construction of cl_error_class and derivates - 2.nd try
50
51 2005-11-05 Borut Razem <borut.razem AT siol.net>
52
53         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
54           bug, which caused Bus Errors on sparc solaris
55
56 2005-11-04 Borut Razem <borut.razem AT siol.net>
57
58         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
59           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
60           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
61           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
62           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
63           and derivates to resolve the initialization problem on OSX
64
65 2005-11-02 Borut Razem <borut.razem AT siol.net>
66
67         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
68           corrected typo - #include <winsock2.h>
69
70 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
71
72         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
73           (_asxxxx_mapping): added org directive for future enhancements
74
75 2005-11-01 Borut Razem <borut.razem AT siol.net>
76
77         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
78           enabled sockets on WIN32
79         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
80
81 2005-10-31 Borut Razem <borut.razem AT siol.net>
82
83         * support/regression/generate-cases.py: escape backslashes in {testcase}:
84           WIN32 backslash path delimiters should be escaped when used in C strings
85         * support/regression/tests/bitfields.c: exclude failing assertions for
86           __CYGWIN32__ and __MINGW32__ hosts
87
88 2005-10-30 Borut Razem <borut.razem AT siol.net>
89
90         * src/SDCCutil.c: corrected double comparison typo
91
92 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
93
94         * device/lib/medium/Makefile: added for new memory model medium
95         * device/include/asm/mcs51/features.h: updated for medium/pdata
96         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
97           added Multiply & Accumulate sbit's and MAC0_PAGE define
98         * device/include/mcs51/c8051f300.h: added sfr16 definitions
99         * device/include/mcs51/c8051f310.h: added sfr16 definitions
100         * device/lib/_mullong.c: update for medium model
101         * device/lib/incl.mk: added medium model
102         * doc/sdccman.lyx: documented medium model
103         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
104         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
105         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
106         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
107           (allocParms): set SCLS and OCLS to pdata for medium model
108         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
109           for pdata,
110           (powof2): return <0 if not power of 2
111         * src/avr/gen.c (genBitWise): use updated powof2
112         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
113           (shiftR2Left2Result): small optimization in setup, save acc when storing,
114           (shiftLLeftOrResult): use B if necessary
115         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
116         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
117         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
118         * support/regression/Makefile.in: added test-mcs51-medium
119         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
120
121 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
122
123         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
124         specifier unsigned
125         * device/lib/time.c (mktime): fixed bug 1334315
126
127 2005-10-28 Raphael Neider <rneider AT web.de>
128
129         * device/include/pic/p16f_common.inc: added common declarations
130         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
131
132 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
135           (aopPutUsesAcc): added to predict accumulator use,
136           (assignResultValue): save acc if necessary,
137           (genMinusDec): store result if indirectly addressed,
138           (genDivOneByte):  save acc if necessary,
139           (movLeft2Result): bugfix if left already in acc,
140           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
141             attention to accumulator use (esp. pdata),
142           (genReceive): receive pdata correctly
143         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
144         * src/SDCCicode.h: added isOperandInPagedSpace prototype
145
146 2005-10-27 Raphael Neider <rneider AT web.de>
147
148         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
149
150 2005-10-27 Raphael Neider <rneider AT web.de>
151
152         * .version: changed version to 2.5.4
153         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
154         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
155           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
156             arithmetics support routines
157         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
158         * device/lib/Makefile.in: also create installdir for pic
159
160         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
161           pic14 port as well
162         * src/pic/device.c (dump_sfr): rewritten to delegate register
163           placement to the linker (use `extern sym' rather than sym EQU addr),
164           (validAddress): fixed to check last specified address
165         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
166           (popGetLit): truncate literal value to 8 bit,
167           (popGet): moved assert to more appropriate place
168           (popGetExternal): create pCode operand from and mark the according
169             symbol as being `extern'
170           (popGetAddr): added sanity check on immediate's offset, provide
171             GPOINTER tag on demand
172           (aopPut): fixed for immediates,
173           (mov2w_op): move operand's address or contents to WREG (depending on
174             operand type), safer variant of mov2w,
175           (movwf,call_libraryfunc): NEW, handy abbreviations,
176           (get_argument_pcop,get_return_val_pcop,pass_argument,
177           get_returnvalue): interface for accessing function parameters and
178             return values,
179           (assignResultValuei,genRet): use new parameter/return value interface
180           (pic14_getDataSize): back to old version handling generic pointers,
181           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
182             provided implementation and/or fixed old one,
183           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
184             calls, removed legacy 8051 reference code
185           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
186           (loadSignToC): NEW, move the operands sign bit to CARRY,
187           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
188             genRightShiftSigned, accepts negative shift counts,
189           (setup_fsr): load FSR and adjust IRP (indirect memory access),
190           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
191             generic pointers, __data pointers and __code pointers,
192           (genUnpackBits,genPackBits): rewritten to work with generic pointers
193             and signed bitfields, limit bitfields to 8 bit,
194           (genDataPointerGet): fixed number of bytes read,
195           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
196           (genPointerGet,genPointerSet): fixed handling of __code pointers,
197             pointers to constant data are no longer assumed to point to __code
198             space, removed invalid pointer types,
199           (bitpatternFromVal): retrieve the PICs representation of an integer
200             or float literal,
201           (genDataPointerSet): fixed assigning to po_immediate operands,
202           (genGenPointerSet): implemented as library call,
203           (genIfx): fixed incorrect condition,
204           (genAddrOf): limit generic pointers' addresses to 2 bytes,
205             provide GPOINTER tag according to destination's storage class,
206           (genCast): added code to handle casting to generic pointers, added
207             sign-/zero extension of the result
208           (aop_isLitLike,op_isLitLike): fixed handling of immediates
209         * src/pic/gen.h: added macros to access IRP bit in STATUS register
210         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
211           extend the result
212         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
213           address/register resides in the shared banks
214           (emitSymbolToFile): improved to handle global and `pinned' symbols,
215             put all variables into separate sections (have the linker arrange
216             them)
217           (picglue): put init code and interrupt handlers in separate sections
218         * src/pic/main.c: added port specific options table, modified to PORT
219           structure to make GPOINTERs 3 byte, added pic14_options
220           (_pic14_do_link): private linking routine (update paths to libraries,
221             add libsdcc.lib by default)
222         * src/pic/main.h: declare pic14_options
223         * src/pic/pcode.c: fixed instructions i/o relations,
224           (RegCond): reverted to correct version,
225           (newpCodeOpLit): truncate literals to 8 bit,
226           (genericPrint): added debug output,
227           (getRegFromInstruction): fixed for various operand types, simplified
228           (BuildFlow): fixed broken handling of isntructions with labels
229           (LinkFlow): start at last instruction in flow (skip trailing comments),
230             pass the flow on to the next instruction after CALL
231           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
232           (insertPCodeInstruction): fixed inserting after a skip instruction,
233           (DoBankSelect): fixed for labeled instructions
234           (OptimizepBlock): honor --nopeep switch
235           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
236         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
237         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
238           (pCodeOptime2pCodes): allow disabling this optimization via
239             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
240             but is still buggy), started implementation of a dataflow based
241             pCode optimization (CSE + dead code elimination)
242           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
243         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
244           names are independant of the stack location and therefore portable across
245           devices
246
247 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
248
249         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
250           (selectSpil): fixed bug 1337835 by not spilling bit variables
251         * support/regression/tests/bug1337835.c: added test for this bug
252         * src/mcs51/peeph.def: restart after rule 3.c,
253           addded rules 263.x to optimize loading constants
254
255 2005-10-26 Raphael Neider <rneider AT web.de>
256
257         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
258         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
259           (genAssign): emit warning when casting literals to generic pointer
260             type, also applies when taking the address of a fixed variable,
261           (genCast): improved casting to generic pointers
262         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
263           extern variables, added verbose error message
264         * device/include/pic16/{string.h,errno.h}: added #pragma library c
265
266 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
267
268         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
269         carry must be complemented too
270         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
271         could be emitted by genMinus
272         * src/SDCCval.c (constVal): fixed bug 1305065
273
274 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
275
276         * src/SDCCast.c (addCast): added promotion for bit variables
277         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
278         promotion casts + optimisation
279         (optimizeGetWord): fix warning 'i' might be used uninitialized
280         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
281         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
282
283 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
284
285         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
286         all chars are promoted to int; promotion should be handled in SDCCast.c
287
288 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
289
290         * device/lib/_strcmp.c: Fixed bug 1326457
291
292 2005-10-11 Raphael Neider <rneider AT web.de>
293
294         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
295         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
296
297 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
298
299         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
300         * support/regression/tests/sfr16.c: added test for the sfr32 bug
301
302 2005-10-04 Raphael Neider <rneider AT web.de>
303
304         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
305           device/lib/pic16/pics.all: added pic18f1320
306         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
307
308 2005-09-30 Raphael Neider <rneider AT web.de>
309
310         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
311         * src/pic16/devices.inc: NEW, provides device descriptions
312         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
313
314 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
315
316         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
317           GETHBIT
318
319 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
320
321         * doc/sdccman.lyx: updated Highest Order Bit documentation,
322           documented Any Order Bit, Higher Order Byte and Higher Order Word
323         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
324         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
325           (optimizeGetAbit): new, to get any bit, not only the high bit,
326           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
327           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
328           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
329           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
330             RIGHT_OP: also try GETBYTE, GETWORD optimization,
331             GETABIT, GETBYTE, GETWORD: decorate them,
332           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
333           (ast_print): added GETABIT, GETBYTE, GETWORD
334         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
335         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
336           (geniCodeBinary): new generic binary icode,
337           (ast2iCode): added GETABIT, GETBYTE, GETWORD
338         * src/port.h: updated comment for PORT.hasExtBitOp
339         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
340           (genGetByte): new, to get a single byte,
341           (genGetWord): new, to get a word from a long,
342           (gen51Code): added GETABIT, GETBYTE, GETWORD
343         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
344
345 2005-09-23 Raphael Neider <rneider AT web.de>
346
347         * configure.in, configure: have device/lib/pic configured
348         * device/lib/Makefile.in: added model-pic14
349         * device/lib/clean.mk: added pic/ to clean rule
350         * device/lib/pic: added rudimentary pic14 library providing support
351           functions for multiplication/division/generic pointer access
352         * src/SDCCopt.c (convilong): mark support functions as extern
353           for pic14 port as well
354         * src/pic/gen.c (genMult): added assertions,
355           (genpic14Code): emit warning on unhandled iCodes
356         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
357         * src/pic/pcode.c (pCodeOpCopy),
358         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
359           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
360           SFR_REGISTER}), made safe for future extensions
361         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
362           instructions even if preceeded by SKIP instructions (also remove
363           them); removed unused code
364         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
365           prevents leaving parts of the structure uninitialized after copying
366
367 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
368
369         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
370           ago by me
371         * support/regression/tests/addsub.c: added test for the bug
372
373 2005-09-21 Raphael Neider <rneider AT web.de>
374
375         * device/include/pic16/pic18f1220.h,
376           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
377         * device/lib/pic16/Makefile.rules: added missing opening paren
378         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
379           are provided in genutils.c,
380           (genUminusFloat,genUminus,genCmpEq): added asserts on different
381           operand/result sizes,
382           (genCmp): assert on NULL pointers first, then check deref'ed values
383         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
384           result size
385
386 2005-09-18 Raphael Neider <rneider AT web.de>
387
388         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
389           as these are now unused,
390           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
391         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
392           local, avoids uninitialized pointer dereference on r->name
393         * src/pic16/ralloc.c (newReg): fixed indentation
394
395 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
396
397         * src/SDCCval.c (constVal): fixed bug 730366
398         * support/Util/SDCCerr.c,
399         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
400
401 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
402
403         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
404
405 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
406
407         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
408
409 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
410
411         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
412           (hex2dec): made hex_digit unsigned char, removed ascii dependance
413         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
414           (hex2dec): made hex_digit unsigned char, removed ascii dependance
415         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
416         * packihx/packihx.c (hexDigit): made c unsigned char
417         * as/mcs51/lklibr.c (fndsym),
418         * link/z80/lkgb.c (gb),
419         * link/z80/lklibr.c (fndsym),
420         * link/z80/lkrloc.c (relr),
421         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
422         * src/SDCC.lex (checkCurrFile, process_pragma),
423         * src/SDCCglue.c (spacesToUnderscores),
424         * src/SDCCmain.c (setParseWithComma, processFile),
425         * src/asm.c (tvsprintf, printCLine),
426         * src/avr/gen.c (emitcode, aopPut),
427         * src/ds390/gen.c (emitcode),
428         * src/hc08/gen.c (emitcode, emitinline),
429         * src/mcs51/gen.c (emitcode, genInline),
430         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
431           tokenizeLineNode),
432         * src/pic/ralloc.c (debugLog),
433         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
434           tokenizeLineNode),
435         * src/pic16/ralloc.c (debugLog),
436         * src/z80/main.c (_process_pragma):
437            made all ctype.h function calls safe
438         * src/SDCCopt.c: include math.h for fabs
439         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
440           and used them throughout the code to make ctype.h function calls safe
441         * src/ds390/main.c (asmLineNodeFromLineNode),
442         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
443         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
444            unsigned char*
445         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
446           (newpCodeAsmDir): made ctype.h function calls safe
447         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
448           pic16_emitcode):  made lbp unsigned char*
449         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
450           (pic16_newpCodeAsmDir): made ctype.h function calls safe
451         * src/xa51/gen.c (emitcode),
452         * src/z80/gen.c (_emit2): made lbp unsigned char*
453         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
454            char*
455
456 2005-09-05 Raphael Neider <rneider AT web.de>
457
458         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
459           access bank splitpoint
460
461 2005-09-05 Raphael Neider <rneider AT web.de>
462
463         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
464
465 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
466
467         * .version: changed to version 2.5.3
468         * doc/sdccman.lyx: changed version to 2.5.3,
469           documented --codeseg and --constseg and pragma codeseg and constseg,
470           documented bit parameters (reentrant) and bit returning
471         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
472            currFunc->recvSize, but is this ok for all ports?
473           (ast2iCode): result of ~ on unsigned char must be cast to int for
474            bool to work
475         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
476           function pointers in bit space
477         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
478           (processFuncArgs): call port.reg_parm() with reentrancy info
479         * src/port.h,
480         * src/avr/main.c,
481         * src/ds390/main.c,
482         * src/hc08/main.c,
483         * src/pic/main.c,
484         * src/pic16/main.c,
485         * src/xa51/main.c,
486         * src/z80/main.c: port.reg_parm prototype extended with
487           "bool reentrant" parameter
488         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
489           options.stackAuto for allocating bit register parameters
490         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
491           (genSend): set BitBankUsed if it is,
492           (selectRegBank): factored out of genCall for use in genPcall,
493           (genCall): removed redundant dtype assignmen, use selectRegBank,
494           (genPcall): handle returning in Carry properly, save in F0 if needed,
495           (genReceive): handle bit register parameters
496         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
497           (mcs51_assignRegisters): enable bit registers for all reentrant
498            functions and don't set BitBankUsed unconditionally
499         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
500         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
501         * support/regression/tests/funptrs.c: added tests for BOOL and for return
502
503 2005-08-27 Borut Razem <borut.razem AT siol.net>
504
505         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
506         ppc-osx (Darwin) does not support -u option. It seems that it is
507         supported only on Linux - GNU cp
508
509 2005-08-25 Borut Razem <borut.razem AT siol.net>
510
511         * sim/ucsim/gui.src/serio.src/Makefile.in,
512           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
513           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
514           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
515           install and strip, since the strip at /usr/ccs/bin should be used
516           on solaris
517
518 2005-08-24 Borut Razem <borut.razem AT siol.net>
519
520         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
521
522 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
523
524         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
525         ffffffffu
526
527 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
528
529         * as/mcs51/aslink.h: completed lkrloc.c prototypes
530         * as/mcs51/lkmain.c (link_main): fixed warning
531         * device/include/stdbool.h: ds390 has no advanced bit support yet
532         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
533         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
534         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
535           and updated their macros
536         * src/SDCCval.c (constVal): updated comment for renamed b_long
537
538 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
539
540         * as/mcs51/asdata.c: changed ctype['['] to BINOP
541         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
542           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
543           (oprio): set priority for '['
544         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
545            and adb_24_bit
546         * as/mcs51/asm.h: added defines R_BIT and S_BIT
547         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
548         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
549         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
550           added overlayable BIT_BANK area
551         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
552           (summary2): explain 'T' in legenda
553         * as/mcs51/lkrloc.c: replaced old K&R style,
554           (relr): added R_BIT processing,
555           (errmsg): added "Bit-addressable relocation error",
556           (adb_bit): added for converting from byte- to bit-addressable space,
557           (adb_24_bit): added for converting from byte- to bit-addressable space
558         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
559            used in reentrant functions now even as return value
560         * device/lib/_gptrput.c (_gptrput): removed obsolete code
561         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
562           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
563         * src/SDCCglobl.h: added indicator BitBankUsed
564         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
565            the bit registers b0-b7
566         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
567           (geniCodeCast): fixed bug 1263853,
568           (geniCodeLogicAndOr): put result in bool or char,
569           (geniCodeReceive): added parameter func for accessing the return type,
570           (geniCodeFunctionBody): pass func to geniCodeReceive
571         * src/SDCCmain.c: added indicator BitBankUsed
572         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
573         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
574           (checkSClass): don't put automatic bool/bit on stack,
575           (checkFunction): removed check on function cannot return bit
576         * src/SDCCsymt.h: added newBoolLink prototype
577         * src/mcs51/gen.c (rb1regs): added bit registers,
578           (movc): created for assigning to carry,
579           (pushReg, popReg): created for pushing registers,
580           (sameRegs): check both AOP_REG and AOP_CRY types,
581           (aopOp): handle bit registers,
582           (aopPut): optimization no self-assign,
583           (saveRegisters): push reg->base (bits) only once for bit registers,
584            and use pushReg,
585           (unsaveRegisters): pop reg->base only once and use popReg,
586           (assignResultValue): added parameter func and return in carry for bits,
587           (genIpush): optimization no reload in A if not changed,
588           (genSend): bit parameters in reentrant functions are passed in bit
589            registers by first assigning to bits in B, then save registers and
590            copy B to bits,
591           (genCall): handle returning in Carry properly, save it in F0 if needed,
592           (genPcall): updated assignResultValue call, this is not safe yet for bit
593            returning function !!!
594           (genFunction): don't generate equ's for bit registers and use pushReg,
595           (genEndFunction): take care of bit returning functions and use popReg,
596           (genRet): return bit in Carry,
597           (genIfx): optimize bit registers and other directly addressable bits,
598           (genReceive): updated assignResultValue call
599         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
600           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
601            registers when using stack-auto
602         * src/mcs51/ralloc.c (_G): added allBitregs,
603           (regs8051): added the bit registers,
604           (createStackSpil): use macro IS_BIT,
605           (getRegBit): added to allocate a bit register, else spill,
606           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
607           (updateRegUsage): factored out to ease stepping while debugging,
608           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
609            also allocate bit registers,
610           (fillGaps): handle bit registers,
611           (findAllBitregs): added to create bit vector with all bit registers,
612           (mcs51_allBitregs): returns this bit vector,
613           (mcs51_assignRegisters): when using stack-auto use bit registers for
614            passing parameters and creating local variables
615         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
616
617 2005-08-22 Borut Razem <borut.razem AT siol.net>
618
619         * device/lib/Makefile.in: replaced find option -or with -o
620           to make it run on solaris
621
622 2005-08-22 Raphael Neider <rneider AT web.de>
623
624         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
625           fixes #1265442 (crash on Solaris)
626
627 2005-08-20 Borut Razem <borut.razem AT siol.net>
628
629         * configure, configure.in: added tests for libsocket and libnsl libraries,
630           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
631           from support/regression/Makefile.in
632         * support/regression/Makefile.in: added
633         * device/lib/pic16/Makefile.common.in: force make to use bash shell
634         * sim/ucsim/libtool: regenerated on sparc-solaris
635         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
636           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
637           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
638           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
639           sparc-solaris, which doesn't use GNU ld linker
640         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
641         * as/Makefile: find on sparc-solaris does not support -maxdepth option
642
643 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
644
645         * src/mcs51/peeph.def: updated comments
646
647 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
648
649         * device/lib/_gptrget.c,
650         * device/lib/_gptrput.c: slightly shorter
651         * doc/sdccman.lyx: incremented version
652         * src/mcs51/peeph.def: moved peephole comments to the line of first
653           change to better keep line correlation, reanimated 186.e
654         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
655
656 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
657
658         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
659           David Saxton with quotes around file name.
660
661 2005-08-15 Borut Razem <borut.razem AT siol.net>
662
663         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
664           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
665           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
666           make tests run on x86_64 platform
667
668 2005-08-13 Raphael Neider <rneider AT web.de>
669
670         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
671           as it might be executed DURING a build (parallel make is wonderful)
672
673 2005-08-13 Raphael Neider <rneider AT web.de>
674
675         * device/lib/Makefile.in (port-specific-objects-pic16):
676           revert to cp $(PORT)/bin/*.* $(PORTDIR)
677         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
678           dependency
679         * device/lib/pic16/Makefile.rules: build subdirs before creating
680           the library, removed builddir rule, create $(builddir) early in
681           recurse rule, use empty recurse rule for leaf directories
682         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
683           mkdir errors (race condition), removed duplicate suffix "hex"
684           from clean rules
685         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
686         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
687           prevents mkdir -p from aborting on Alpha
688
689 2005-08-12 Raphael Neider <rneider AT web.de>
690
691         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
692           db-statements in order to allow for arrays of pointers in code
693           sections to be placed without interspersed 0-padding, fixes
694           bug #1256215
695         * (emitStatistics): fixed division by zero for pic18f1220
696         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
697           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
698         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
699         * (pic16_pCodeConstString): keep track of already emitted string
700           literals to prevent "duplicate definitions of symbol _str_NR"
701         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
702           debug message
703         * device/lib/Makefile.in: ignore failing PIC16 library builds
704         * device/lib/pic16/Makefile: do not build if gputils are missing
705         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
706
707 2005-08-10 Raphael Neider <rneider AT web.de>
708
709         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
710           my last commit)
711
712 2005-08-10 Raphael Neider <rneider AT web.de>
713
714         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
715           Rokas' patch to add the new fixed point type "__fixed16x16"
716         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
717           functions for __fixed16x16 arithmetics
718         * device/lib/pic16: reimplemented the build system to support
719           a separate build directory, better handling of libio (create
720           the library in a separate subdir for each architecture) and
721           easier configuration (centralized in Makefile.common)
722
723 2005-08-07 Raphael Neider <rneider AT web.de>
724
725         * src/pic16/gen.c (genrshTwo): fixed sign extension
726         * src/pic16/device.c: added pic18f2320, 4220 and 4320
727         * device/include/pic16/pic18f2220.h: changed some bit definitions,
728           added T0CONbits
729         * device/include/pic16/pic18f4220.h: NEW, header for
730           pic18f4220 and pic18f4320
731         * device/include/pic16/pic18fregs.h: added new devices,
732           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
733         * device/include/pic16/signal.h: resolved name clashes
734           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
735           to also allow testing for interrupt enable bits, added
736           comments on how to use the macros
737         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
738         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
739           register definitions for the devices
740         * device/lib/pic16/pics.all: added new devices
741         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
742           allocated memory
743         * device/lib/pic16/libc/stdlib/memfree: do not count
744           the block header as free memory
745         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
746           simplified and added missing end-of-blocklist-marker
747           (reported by Peter Onion, fixes #1252814)
748         * (_mergeHeapBlock): fixed loop condition
749         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
750           len==0, restructured code
751         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
752           up a bit, reduced bitfield accesses, prevent endless loops
753           in case of heap corruption
754         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
755           "unreferenced arguments/must return a value" warnings
756         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
757           replaced BAUDREG with SPBRG
758         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
759           device/lib/pic16/debug/gstack/gstack.c: replaced
760           _naked, _asm, _endasm with __naked, __asm, __endasm
761
762 2005-08-05 Raphael Neider <rneider AT web.de>
763
764         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
765           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
766
767 2005-08-05 Borut Razem <borut.razem AT siol.net>
768
769         * device/lib/Makefile.in: added missing ';'
770         * configure: removed ^M characters
771
772 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
773
774         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
775           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
776           License
777
778 2005-08-04 Borut Razem <borut.razem AT siol.net>
779
780         * configure.in: pic16 libraries build 2nd try - enable running
781           configure in device/lib/pic16
782         * configure: regenerated from configure.in
783         * device/lib/Makefile.in: create $(PORT)/bin directory
784
785 2005-08-03 Raphael Neider <rneider AT web.de>
786
787         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
788           to get/set values via pointers
789         * (genUnpackBits,genPackBits): changed detection of
790           ptr->bitfield vs. sym.bitfield, fixed access via generic
791           pointers, removed dead (wrong) code for multibyte bitfields
792         * (genNearPointerGet, genGenPointerGet): removed useless code,
793           fixed bitfield detection, fixes #1250594
794         * (genNearPointerSet): removed useless code
795         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
796           and introduced macro pic16_emitpcode that conditionally emits
797           the origin of the following pCode (useful for debugging SDCC)
798         * src/pic16/pcode.c: changed (and disabled) some debug outputs
799         * (createDefmap): fixed handling of LFSR for --optimize-df
800
801 2005-08-02 Borut Razem <borut.razem AT siol.net>
802
803         * device/lib/Makefile.in: pic16 libraries build enabled since
804           gputils-0.13.2 are now localy installed at sourceforge's compile farm
805
806 2005-08-02 Raphael Neider <rneider AT web.de>
807
808         * src/pic16/gen.c (genPackBits): removed deprecated warning
809         * (genGenPointerSet): fixed bitfield detection
810
811 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
812
813         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
814
815 2005-07-31 Raphael Neider <rneider AT web.de>
816
817         * device/lib/pic16/libdev/pic18f458.c,
818           device/include/pic16/pic18f458.h: added missing T0CONbits
819
820 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
821
822         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
823
824 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
825
826         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
827
828 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
829
830         * device/include/mcs51/at89c51ed2.h: added.
831
832 2005-07-23 Raphael Neider <rneider AT web.de>
833
834         * src/pic/gen.h: added emitpcode macro for debugging
835         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
836           and replace by macro adding debug information on demand
837         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
838         * (gencjne): tried to fix; replaced with correct (slower) code
839         * (gen{Unp,P}ackBits): fixed single bit access
840         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
841         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
842           previous instruction
843         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
844           register has to be handled with care (forbidding movement
845           of assignments/uses, removing assignments completely, ...)
846         * (pCodeOptime2pCodes): make use of regIsSpecial
847         * added lots of debugging output (commented out)
848         * src/pic/rallloc.c (deassignLRs): prevent operand registers
849           from being reused as result UNLESS it is known to work
850
851 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
852
853         * support/Util/dbuf.h: include <stddef.h> for size_t
854         * .version: changed to version 2.5.2
855
856 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
857
858         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
859
860 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
861
862         * src/hc08/gen.c (genMinus): fixed bug #1241835,
863           (genModOneByte): removed needless psha/pula
864
865 2005-07-22 Raphael Neider <rneider AT web.de>
866
867         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
868           have PIC14 handled like PIC16, fixes broken pic14 linker calls
869         * src/pic/gen.c (resolveIfx): do not "invent" labels
870         * (genSkipc): changed to positive logic
871         * (genSkipCond): removed as no longer needed
872         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
873           backport from PIC16
874         * (genLeftShift): check operands are in different registers
875         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
876           INCF does not update CARRY...
877         * src/pic/main.c: fixed _linkCmd
878         * src/pic/pcode.c (unlinkpCode): added inactive code
879         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
880           alive (do not assign result and operand overlapping registers)
881
882 2005-07-22 Raphael Neider <rneider AT web.de>
883
884         * src/pic/device.c (dump_sfr): replaced register declaration with
885           call to emitSymbolToFile() to avoid duplicate symbols
886         * (assignRelocatableRegisters): do not declare external symbols
887         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
888           right (take size of type, not etype)
889         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
890         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
891         * (packRegsForAccUse): disabled assignment of WREG as
892           the result reg to prevent occurence of just fixed #1235003,
893           fixes #1242954
894         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
895           symbols (avoids duplicate symbols in .asm file)
896         * (pic14emitRegularMap): use emitSymbolToFile()
897         * src/pic/gen.c (aopOp): fixed spillLocation handling
898         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
899         * (genDataPointerSet): removed unneccessary variables/output
900
901 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
902
903         * as/mcs51/lkarea.c: enlarged codemap for banked memory
904         * device/lib/mcs51/crtbank.asm: added # to 0x0F
905
906 2005-07-21 Raphael Neider <rneider AT web.de>
907
908         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
909           architecture cannot handle them efficiently, fixes bug #1235003
910         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
911           check for empty sets before using them (fixes bug #1232190)
912
913 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
914
915         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
916           (lnksect2): generate warnings for memory overlap
917         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
918           constseg to set the name of these segments so you can instruct the linker
919           to place them in banks
920         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
921         * src/SDCCglobl.h: added MODEL_HUGE to enum,
922           added code_seg and const_seg to options
923         * src/SDCCglue.c (emitMaps): use options.const_seg,
924           (createInterruptVect): put interrupt vectors in segment HOME,
925           (glue): put HOME before static segment and put the main glue in HOME,
926           (glue): use options.code_seg
927         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
928         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
929           these segments so you can instruct the linker to place them in banks
930           (linkEdit): use code_loc for HOME segment which should be the first
931           segment in code memory now
932         * src/SDCCmem.c: fixed more stuff like bug 1238386
933         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
934           (changePointer): don't change function pointers to code pointers for
935           banked functions,
936           (compareType): added exceptional check for banked function pointers
937         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
938         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
939           after static in code memory
940         * src/mcs51/gen.c: added aopLiteralLong prototype,
941           (aopForSym): use getSize for functions,
942           (genCall): generate banked calls over one trampoline __sdcc_banked_call
943           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
944           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
945           the segment,
946           (genPcall): use call for literal function pointers and generate banked
947           calls over the one trampoline so there's only one place for the user to
948           modify according to his/hers hardware,
949           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
950           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
951         * src/mcs51/main.c: added keyword banked,
952           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
953         * support/Util/SDCCerr.c,
954         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
955           needed for passing the bank and address to the trampoline
956         * device/lib/mcs51/crtbank.asm: added for bankswitching
957         * device/lib/mcs51/Makefile: added crtbank
958
959 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
960
961         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
962           for fields at offset 0 of a struct or union as reported
963           on 2005-07-07 in the developer mailing list.
964
965 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
966
967         * src/SDCCmem.c: fixed bug 1238386
968
969 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
970
971         * src/mcs51/peeph.def: added labelrefcounting for peepholes
972           (patch #1144962), added peephole 300, enabled 259.x
973         * doc/sdccman.lyx: removed screenshot and provided link instead
974
975 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
976
977         * doc/sdccman.lyx: added section about debugging with ddd
978         * doc/figures/ddd_example.eps: screenshot of debugging session
979
980 2005-07-04 Raphael Neider <rneider AT web.de>
981
982         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
983           like CODE pointers, fixes #1115683
984         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
985           call, fixes bugs #1232211, #1228110,
986           fixed wrong casts to pCodeFlow from pCodeInstructions
987
988 2005-07-04 Raphael Neider <rneider AT web.de>
989
990         * src/pic/gen.c (popGet): changed assert to allow for
991           bit operands
992         * (popGetAddr): changed signature to provide
993           an additional index, patched all call sites
994         * (genCmpEq): handle literal-like operands correctly
995         * (genAddrOf): added sanity checks on __code/__data pointers
996         * (genAssign): added handling of symbols from __code section
997         * (gencjne): do not generate code for comparisons whose result
998           is neither stored nor used, fixes bug #1171114
999         * (AccLsh, AccRsh): operate on operand instead of WREG
1000         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1001           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1002           by known count
1003         * rewrote complete shift-by-literal logic, commented unused
1004           functions out
1005         * (genConstPointerGet): get multiple bytes (if result size > 1),
1006           fixed handling of non-immediate addresses
1007         * (genPointerGet): handle CODE pointers like CONST pointers
1008         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1009         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1010           operand is to be treated as a literal or not
1011         * (mov2w,genPcall,genCmpEq),
1012           src/pic/genarith.c: use aop_isLitLike() to decide between
1013           literal/register contents
1014         * (addSign): added missing offset
1015         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1016           only emit comment in debug-mode,
1017           use {aop,op}_isLitLike throughout the file
1018         * src/pic/glue.c: fix initializers for pointers (work in progress)
1019         * src/pic/pcode.c (get_op): honor index on _const symbols
1020         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1021         * (dumppBlock): added pCode size estimation
1022         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1023           check for IS_SYMOP before OP_SYMBOL'ing
1024         * fixed indentation, compacted switch-statements
1025         * (allocReg): find free register and allocate it instead of
1026           allocating new registers all the time
1027         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1028           registers as its operands (necessary only for multibyte GETs)
1029
1030 2005-07-01 Raphael Neider <rneider AT web.de>
1031
1032         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1033           debugging .asm-output macros FENTRY + FEXIT
1034         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1035           way... I wonder...
1036         * (emitpComment): NEW, printf to pCode
1037         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1038           offset handling
1039         * (popGetAddr): NEW, variant of popGet to access an immediates
1040           high(er) bytes instead of the n'th byte of memory they reference,
1041           replaced popGet with popGetAddr where neccessary
1042         * (genDataPointerGet): reactivated and fixed implementation
1043         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1044           accesses
1045         * (genDataPointerSet): fixed multibyte assignments
1046         * (genpic14Code): fixed --i-code-in-asm handling
1047         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1048         * (genPlus): fixed index-out-of-bounds error
1049         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1050         * src/pic/ralloc.c: added debugging output macro FENTRY2
1051         * (spillThis): fixed indentation, enbraced for-body for clarity
1052         * (rematStr): commented out as now unused
1053         * (regTypeNum): commented out special spill case (overwrites
1054           arbitrary values)
1055         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1056
1057 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1058
1059         * doc/sdccman.lyx: documented sfr16/sfr32,
1060           added example for using storage class with function pointers
1061         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1062
1063 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1066         * device/lib/_itoa.c,
1067         * device/lib/_ltoa.c: optimized codesize
1068         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1069           but don't know how to suppress the double warning.
1070         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1071         * support/Util/SDCCerr.c,
1072         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1073
1074 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1077           fixed old K&R prototypes
1078         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1079         * device/lib/_gptrget.c,
1080         * device/lib/_gptrgetc.c,
1081         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1082           also new versions for small generic pointers and banked generic pointers
1083         * src/port.h: added const_name
1084         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1085         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1086         * src/SDCCcse.c (findPrevIc): check all associative operators
1087         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1088         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1089         * src/SDCCmem.c: updated comments,
1090           set far-space to 0 for pdata, results in optimized code
1091         * src/SDCCmem.h: added macro CONST_NAME
1092         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1093           moving the info into the highest bits, see also gptrget/gptrput
1094         * src/src.dsp: added sdcc.ico to project files
1095         * src/avr/gen.c (genCast): fixed bug 0x%d
1096         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1097         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1098           relation between ptr_type and DCL_TYPE,
1099           (genCast): fixed bug 0x%d
1100         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1101           (CODE)" for const_name
1102         * src/hc08/gen.c (genCast): fixed bug 0x%d
1103         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1104           (hc08_port): added "CONST (CODE)" for const_name
1105         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1106           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1107           between ptr_type and DCL_TYPE,
1108           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1109           operand* and took AOP() inside function so sfr-ness can be checked,
1110           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1111           new prototype,
1112           (genFunction, genEndFunction): optimized stack setup,
1113           (genMinus): optimized for literals with ending zeroes (in bytes),
1114           (genCast): fixed bug 0x%d
1115         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1116           (mcs51_port): added "CONST (CODE)" for const_name
1117         * src/mcs51/peeph.def: made rule 226 more generic
1118         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1119         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1120         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1121         * src/z80/main.c (z80_port): added NULL for const_name,
1122           (gbz80_port): added NULL for const_name
1123         * support/regression/tests/bug663539.c,
1124         * support/regression/tests/sfr16.c: new tests
1125
1126 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1127
1128         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1129
1130 2005-06-24 Raphael Neider <rneider AT web.de>
1131
1132         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1133           corrected typos...
1134         * device/include/pic16/signal.h: added USBIF
1135           and SIG_USB
1136
1137 2005-06-24 Raphael Neider <rneider AT web.de>
1138
1139         * device/lib/pic16/libdev/pic18f2455.c,
1140           device/include/pic16/pic18f2455.h: NEW
1141         * device/include/pic16/pic18fregs.h,
1142           device/lib/pic16/pics.all,
1143           src/pic16/device.c: added 18f2455
1144         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1145           device/include/pic16/{pic18f[68][567].h,usart.h}:
1146           replaced MULTIPLE_USARTS define with more relaible
1147           compatibility sfrs (for USART access)
1148
1149 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1150
1151         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1152           and the output asm file line is printed on two lines.
1153
1154 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1155
1156         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1157           BGT, BLE, BHI, and BLS instructions
1158         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1159           genCmpEq): removed
1160         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1161           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1162           fixes bug #1216342
1163         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1164
1165 2005-06-15 Raphael Neider <rneider AT web.de>
1166
1167         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1168         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1169         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1170           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1171           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1172
1173 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1174
1175         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1176           Marcel Telka in bug #1215704
1177
1178 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1179
1180         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1181           located in shared memory bank.
1182
1183 2005-05-31 Raphael Neider <rneider AT web.de>
1184
1185         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1186           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1187           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1188
1189 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * device/lib/_strncpy.c: fixed the fix
1192
1193 2005-05-26 Raphael Neider <rneider AT web.de>
1194
1195         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1196           initializers with \0, bug #1208187
1197         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1198           intializers with \0, bug #1208187
1199
1200 2005-05-26 Raphael Neider <rneider AT web.de>
1201
1202         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1203           initializers with \0, bug #1208187
1204         * src/pic16/main.c (_process_pragma): added sanity checks
1205           for stack position and size, emit warnings when appropriate
1206
1207 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1208
1209         * device/lib/_strncpy.c: fixed not filling with \0
1210
1211 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1212
1213         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1214           createFunction),
1215         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1216           compound_statement),
1217         * src/SDCCsymt.h,
1218         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1219
1220 2005-05-24 Raphael Neider <rneider AT web.de>
1221
1222         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1223
1224 2005-05-24 Raphael Neider <rneider AT web.de>
1225
1226         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1227           TRISE definitions, closes bug #1162453
1228
1229 2005-05-22 Raphael Neider <rneider AT web.de>
1230
1231         * src/pic16/main.c (_process_pragma): check for missing
1232           arguments to pragmas code and udata
1233         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1234           consistency fixes to match other headers (thanks to Jim Paris)
1235         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1236
1237 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1238
1239         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1240
1241 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1242
1243         * support/regression/tests/bug1198642.c: new test
1244         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1245         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1246         * support/scripts/resource.h,
1247         * support/scripts/resource.rc,
1248         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1249         * support/scripts/sdcc.ico: added 32x32 icon
1250
1251 2005-05-18 Raphael Neider <rneider AT web.de>
1252
1253         * device/lib/pic16/libdev/pic18f*.c,
1254         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1255           keywords to "__sfr" and "__at (X)"
1256         * device/include/pic16/pic18fregs.h: added pic18f4520
1257         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1258           #1203088 (MPLAB compatibility)
1259
1260 2005-05-17 Raphael Neider <rneider AT web.de>
1261
1262         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1263         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1264         * device/lib/pic16/pics.all: added new devices
1265         * src/pic16/device.c: added support for pic18f4520
1266
1267 2005-05-16 Raphael Neider <rneider AT web.de>
1268         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1269         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1270         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1271           convenience function for bit access
1272
1273 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1274
1275         * device/lib/printf_large.c: fixed bug 1193299
1276         * support/regression/tests/bug1057979.c: added test %3.3s
1277
1278 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1279
1280         * device/include/mcs51/8051.h,
1281         * device/include/mcs51/8052.h: made parseable with lint
1282         * device/include/mcs51/lint.h: added include file for (sp)lint
1283         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1284         * doc/cdbfileformat.lyx,
1285         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1286
1287 2005-05-14 Raphael Neider <rneider AT web.de>
1288
1289         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1290         * device/lib/pic16/libc/stdlib/itoa.c (new)
1291         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1292         * device/lib/pic16/libio/Makefile: exclude subdir according to
1293           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1294         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1295         * src/pic16/gen.c (genFunction): prevent annoying warning
1296         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1297           nameclashes on BeOS
1298         * support/cpp2/cppmain.c (cpp_output_string): new
1299         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1300           fixes bug 1116802
1301
1302 2005-05-13 Borut Razem <borut.razem AT siol.net>
1303
1304         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1305
1306 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1307
1308         * .version: changed to version 2.5.1; back to bleeding edge development
1309
1310 2005-05-11 Borut Razem <borut.razem AT siol.net>
1311
1312         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1313           generate PDF version 1.3 documents
1314
1315 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1316
1317         * .version: changed to version 2.5.0
1318
1319 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1320
1321         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1322
1323 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1324
1325         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1326         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1327         well as many smaller updates.
1328         * .version: changed to version 2.5.0-pre1
1329
1330 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1331
1332         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1333
1334 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1335
1336         * support/regression/tests/bug1185672.c: added
1337         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1338           bug 1185672
1339         * src/mcs51/gen.c (genCall): added comments, made it look safer
1340         * src/mcs51/gen.c (genEndFunction): simplified
1341
1342 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1343
1344         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1345
1346 2005-04-14 Borut Razem <borut.razem AT siol.net>
1347
1348         * fixed bug 1045046 - SIGSEGV with really simple code?:
1349           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1350           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1351
1352 2005-04-14 Borut Razem <borut.razem AT siol.net>
1353
1354         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1355           src/pic16/device.h: temporarily disabled experimental #inline pragma
1356           for 2.5.0 release
1357
1358 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1359
1360         * device/include/z80/stdio.h,
1361         * device/include/z80/string.h: removed these highly incomplete files so
1362           SDCC can use the default ones in device/include/
1363
1364 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1365
1366         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1367         gcc warning.
1368         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1369         fix sdcpp warnings.
1370
1371 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1372
1373         * device/include/malloc.h: removed redundant __reentrant prototypes
1374         * device/lib/_mullong.c: added working xstack variant in asm (C version
1375           doesn't pass regression tests)
1376         * device/lib/bpx.c: used __data and made bpx char for mcs51
1377         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1378           (createFunction): fixed bug with xstackPtr
1379         * src/SDCCcse.c: corrected comments
1380         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1381           (killDeadCode, eBBlockFromiCode): removed unused code
1382         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1383           corrected comments
1384         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1385           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1386           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1387           (genModOneByte): fixed warning in MSVC
1388         * src/mcs51/main.c (): added comments
1389         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1390
1391 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1392
1393         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1394
1395 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1396
1397         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1398
1399 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1400
1401         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1402         characters arrays of larger size than the declared one.
1403
1404 2005-04-10 Borut Razem <borut.razem AT siol.net>
1405
1406         * src/pic/gen.c (genInline),
1407           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1408           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1409           (findNextInstruction), (findPrevInstruction),
1410           (findInstructionUsingLabel),
1411           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1412         * src/pic/pcode.c (findLabel): added missing '\n'
1413         * src/src.dsp: added SDCCdwarf2.c to the project
1414
1415 2005-04-09 Borut Razem <borut.razem AT siol.net>
1416
1417         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1418
1419 2005-04-08 Raphael Neider <rneider AT web.de>
1420
1421         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1422           into the chain after a given one) and mergeDefmapSymbols (combine
1423           defmap entries for each symbol per pcode)
1424         * (createDefmap): have defmap entries merged in the end
1425         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1426           a symbol before replacing one access type's symbol, merge symbols in
1427           the end (replacement symbol might already have an entry)
1428         * (assignValnums): keep reference to written WREG intact
1429
1430 2005-04-08 Raphael Neider <rneider AT web.de>
1431
1432         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1433           Alpha)
1434
1435 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1436
1437         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1438         bytes
1439
1440 2005-04-07 Raphael Neider <rneider AT web.de>
1441
1442         * device/include/pic16/usart.h: added compatibility defines for
1443           devices with more than one USART
1444         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1445
1446 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1447
1448         * device/lib/Makefile.in: updated for port specific include
1449
1450 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1451
1452         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1453
1454 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1455
1456         * device/include/8051.h,
1457         * device/include/8052.h,
1458         * device/include/at89S8252.h,
1459         * device/include/at89c55.h,
1460         * device/include/at89x051.h,
1461         * device/include/at89x51.h,
1462         * device/include/at89x52.h,
1463         * device/include/mcs51reg.h,
1464         * device/include/reg51.h,
1465         * device/include/reg764.h,
1466         * device/include/regc515c.h,
1467         * device/include/sab80515.h: (re)moved these 12 files
1468         * device/include/mcs51/8051.h,
1469         * device/include/mcs51/8052.h,
1470         * device/include/mcs51/at89S8252.h,
1471         * device/include/mcs51/at89c55.h,
1472         * device/include/mcs51/at89x051.h,
1473         * device/include/mcs51/at89x51.h,
1474         * device/include/mcs51/at89x52.h,
1475         * device/include/mcs51/mcs51reg.h,
1476         * device/include/mcs51/reg51.h,
1477         * device/include/mcs51/reg764.h,
1478         * device/include/mcs51/regc515c.h,
1479         * device/include/mcs51/sab80515.h: and added them here
1480
1481 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1482
1483         * device/include/stdarg.h: changed SDCC specific keywords to double
1484           underlined form.
1485         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1486           mcs51 and ds390.
1487         * device/include/hc08/mc68hc908gp32.h,
1488         * device/include/hc08/mc68hc908jb8.h,
1489         * device/include/hc08/mc68hc908jkjl.h,
1490         * device/include/hc08/mc68hc908qy.h: fixed comments
1491         * device/include/mcs51/README: updated
1492         * device/include/mcs51/c8051f120.h: added PINRSF
1493         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1494         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1495           amidst code. Also inline is not supported.
1496
1497 2005-04-06 Raphael Neider <rneider AT web.de>
1498
1499         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1500         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1501           callers stack/frame pointers
1502
1503 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1504
1505         * device/include/pic16/usart.h: added, missing in previous commit,
1506         * device/include/pic16/adc.h: fixed typo,
1507         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1508         commit,
1509         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1510         <p18fxxx.inc>
1511         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1512         uninitialized because a bug appears with gplink
1513         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1514         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1515         complains for unrecognised option
1516
1517 2005-04-05 Raphael Neider <rneider AT web.de>
1518
1519         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1520           structs as well (using memcpy)
1521         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1522           on ISRs (GOTO has no label)
1523         * src/pic16/device.h: added OF_OPTIMIZE_DF
1524         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1525           new data flow analysis/optimization
1526         * src/pic16/pcode.c: added (prototypes for and implementation of)
1527           dataflow analysis functions, fixed pCodeInstructions' inCond and
1528           outCond values, made RCALL a branch instruction
1529         * (pic16_unlinkpCode): keep C line if possible
1530         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1531           C line moved if possible
1532         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1533         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1534           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1535         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1536           new flow)
1537         * (pic16_getJumptabpCode): NEW, needed in...
1538         * (LinkFlow): fixed handling of jumptables, calls and conditional
1539           branches
1540         * (pic16_InsertCommentAfter): NEW
1541         * (pic16_pCodeReplace): made verbose and flow preserving
1542         * (AnalyzeFlow): added call to data flow analysis
1543         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1544         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1545         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1546
1547 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1548
1549         * src/SDCCast.c (decorateType): fixed bug #1105626
1550
1551 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1552
1553         * device/include/asm/pic16/features.h,
1554         * pic18f*.h headers,
1555         * device/include/pic16/adc.h,
1556         * device/include/pic16/delay.h,
1557         * device/include/pic16/i2c.h,
1558         * device/include/pic16/malloc.h,
1559         * device/include/pic16/stdio.h,
1560         * device/include/pic16/stdlib.h,
1561         * device/include/pic16/string.h,
1562         * device/lib/pic16/libc/stdio/printf_tiny.c,
1563         * device/lib/pic16/libc/stdio/printf_small.c,
1564         * device/lib/pic16/libc/stdio/strmgpsim.c,
1565         * device/lib/pic16/libc/stdio/strmmssp.c,
1566         * device/lib/pic16/libc/stdio/strmusart.c,
1567         * device/lib/pic16/libc/stdio/vfprintf.c,
1568         * device/lib/pic16/libc/stdlib/ltoa.c,
1569         * device/lib/pic16/libc/stdlib/putchar.c,
1570         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1571         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1572         * device/lib/pic16/libc/stdlib/memchrram.c,
1573         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1574         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1575         * device/lib/pic16/libio/adc/adcbusy.c,
1576         * device/lib/pic16/libio/adc/adcread.c,
1577         * device/lib/pic16/libio/adc/adcsetch.c,
1578         * device/lib/pic16/libio/usart/ubaud.c,
1579         * device/lib/pic16/libio/usart/ubusy.c,
1580         * device/lib/pic16/libio/usart/udrdy.c,
1581         * device/lib/pic16/libio/usart/uopen.c,
1582         * device/lib/pic16/libio/usart/uputc.c,
1583         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1584         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1585         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1586         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1587         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1588         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1589         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1590         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1591         specific keywords to double underlined form,
1592         * device/lib/pic16/libc/Makefile.rules,
1593         * device/lib/pic16/libsdcc/Makefile.rules,
1594         * device/lib/pic16/libm/Makefile,
1595         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1596         to compile with C standard set in Makefile.common
1597         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1598         rand.c and crc.c in compilation process,
1599         * device/lib/pic16/libsdcc/int/divuint.c,
1600         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1601         `c' from signed to unsigned,
1602         * device/lib/pic16/startup/crt0.c,
1603         * device/lib/pic16/startup/crt0i.c,
1604         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1605         keywords to double underlined form, bug fixes in _do_cinit function
1606         which prevented the correct initialization of the .idata segment,
1607         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1608         core to enter a infinite loop
1609         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1610
1611 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1612
1613         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1614
1615 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1616
1617         * device/include/Makefile.in: add support for hc08 subdirectory
1618         * device/include/hc08/: new subdirectory
1619         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1620         Lucas Loizaga, thanks!
1621         * device/include/hc08/mc68hc908qy.h,
1622         * device/include/hc08/mc68hc908gp32.h,
1623         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1624         their own directory. Changed internal macro names to use the compiler
1625         reserved namespace. Changed SDCC specific keywords to double
1626         underlined form.
1627         * device/include/math.h,
1628         * device/include/malloc.h,
1629         * device/include/stdarg.h,
1630         * device/include/stdbool.h
1631         * device/include/string.h,
1632         * device/include/tinibios.h,
1633         * device/include/ds400rom.h,
1634         * device/include/8051.h,
1635         * device/include/8052.h,
1636         * device/include/80c51xa.h,
1637         * device/include/at89c55.h,
1638         * device/include/at89S8252.h,
1639         * device/include/at89x51.h,
1640         * device/include/at89x52.h,
1641         * device/include/ds80c390.h,
1642         * device/include/reg764.h,
1643         * device/include/regc515c.h,
1644         * device/include/sab80515.h,
1645         * device/include/mcs51/c8051f000.h,
1646         * device/include/mcs51/c8051f018.h,
1647         * device/include/mcs51/c8051f020.h,
1648         * device/include/mcs51/c8051f040.h,
1649         * device/include/mcs51/c8051f060.h,
1650         * device/include/mcs51/c8051f120.h,
1651         * device/include/mcs51/c8051f300.h,
1652         * device/include/mcs51/c8051f310.h,
1653         * device/include/mcs51/c8051f320.h,
1654         * device/include/mcs51/c8051f330.h,
1655         * device/include/mcs51/c8051f350.h,
1656         * device/include/z180.h: Changed SDCC specific keywords to double
1657         underlined form.
1658
1659 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1660
1661         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1662         18F4455,
1663         * (pic16_assignConfigWordValue): disable testing of configuration
1664         register value with config mask,
1665         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1666         function with port->fun_prefix,
1667         * (genFunction): when generating a naked interrupt function never
1668         create an absolute segment placed in interrupt vector address, place
1669         the actual interrupt function at IVA instead, when an interrupt
1670         function is generated with unspecified interrupt then do not create
1671         the absolute section,
1672         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1673         code for generating a call to generic pointer get/put function with
1674         a call to function pic16_callGenericPointer(),
1675         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1676         the call to the generic pointer get/put functions with prefixing the
1677         function name with port->fun_prefix,
1678         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1679         * src/pic16/main.c (_process_pragma): prefix function with
1680         port->fun_prefix,
1681         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1682         calling assembler, old 18Fxxxx macro is deprecated,
1683         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1684         PC_ASMDIR in while condition,
1685         * (findInstruction): add PC_ASMDIR in while condition,
1686         * (buildCallTree): prefix main with port->fun_prefix,
1687         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1688         identifier for variable with banked access in instructions BTFSS,
1689         BTFSC, BCF, BSF, BTG
1690         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1691         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1692         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1693         perform optimization when enviroment variable NO_REG_OPT is set,
1694         * (insideLRBlock): NEW, return 1 if register is inside an
1695         INF_LOCALREGS block,
1696         * (RemoveRegFromLRBlock): remove a register that is completely
1697         eliminated by register optimization, but it is still left in local
1698         register store/restore in/from stack block,
1699         * (Remove2pcodes): after removing register, check to see if it
1700         should be removed from local register store/restore in/from stack
1701         block,
1702         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1703         DUMMY_READ_VOLATILE,
1704
1705         * device/include/pic16/adc.h: minor prototype modifications and
1706         update,
1707         * device/include/pic16/malloc.h: added GPL notice various
1708         modifications,
1709         * device/include/pic16/stdint.h: NEW, standard header for ints
1710         * device/include/pic16/delay.h: NEW, header for delay functions,
1711         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1712         delay1mtcy,
1713         * device/include/pic16/signal.h: NEW, header providing helper macros
1714         for implementing signal handlers,
1715         * device/include/pic16/stdio.h: added prototypes for functions,
1716         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1717         prototypes for stdin and stdout, added macro PUTCHAR to
1718         automatically implement putchar function prototype,
1719         * device/include/pic16/usart.h: modified and updated USART library,
1720         * device/lib/pic16/libio/adc/,
1721         * device/lib/pic16/libio/i2c: some modifications to improve library
1722         performance,
1723         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1724         family of functions,
1725         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1726         family of functions and other sources,
1727         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1728         of the PIC18Fxx[28] devices,
1729         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1730         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1731         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1732         _do_cinit function, because the previous failed when local variables
1733         where not placed in the same memory bank,
1734         * device/lib/pic16/libsdcc/char/: various modifications to improve
1735         library performance,
1736         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1737         information on the new functions of the c library and more...
1738
1739 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1740
1741         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1742
1743 2005-03-26 Raphael Neider <rneider AT web.de>
1744
1745         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1746           if condition == CARRY)
1747         * (genCmp): adapted to new genSkipc semantics
1748         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1749           on rIfx (genCmp was broken)
1750
1751 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1752
1753         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1754         * src/z80/main.c (_keywords[]),
1755         * src/SDCCglobal.h (struct options),
1756         * src/SDCC.y,
1757         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1758         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1759         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1760         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1761         always available in leading double underscore form. The C99 support is
1762         mostly missing, but it's a start.
1763         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1764         reserved identifier "__data".
1765
1766 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1767
1768         * src/mcs51/peeph.def: fixed bug 1170013
1769
1770 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1771
1772         * device/include/mcs51reg.h: fixed bug 842007
1773
1774 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1775
1776         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1777         last time.
1778
1779 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1780
1781         * src/port.h (struct PORT),
1782         * src/avr/ralloc.c (avr_assignRegisters),
1783         * src/avr/main.c,
1784         * src/ds390/ralloc.c (ds390_assignRegisters),
1785         * src/ds390/main.c,
1786         * src/hc08/ralloc.c (hc08_assignRegisters),
1787         * src/hc08/main.c,
1788         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1789         * src/mcs51/main.c,
1790         * src/pic/ralloc.c (pic14_assignRegisters),
1791         * src/pic/main.c,
1792         * src/pic16/ralloc.c (pic16_assignRegisters),
1793         * src/pic16/main.c,
1794         * src/xa51/ralloc.c (xa51_assignRegisters),
1795         * src/xa51/main.c,
1796         * src/z80/ralloc.c (z80_assignRegisters),
1797         * src/z80/ralloc.h,
1798         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1799         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1800         * src/SDCCcse.h,
1801         * src/SDCCdflow.c (computeDataFlow),
1802         * src/SDCCdflow.h,
1803         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1804         * src/SDCCloop.h,
1805         * src/SDCCcflow.c (*),
1806         * src/SDCCcflow.h,
1807         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1808         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1809         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1810         immedDom() returning wrong block; probably fixes bug #1160833)
1811
1812 2005-03-20 Borut Razem <borut.razem AT siol.net>
1813
1814         * support/scripts/inc2h.pl: WIN32 port
1815
1816 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1817
1818         * device/lib/makefile.in: added abs.c and labs.c
1819
1820 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1821
1822         * device/include/stdint.h: added
1823         * device/lib/abs.c: added
1824         * device/lib/labs.c: added
1825         * device/include/stdlib.h: added abs() and labs() prototypes
1826         * device/lib/libsdcc.lib: added abs and labs
1827         * device/include/float.h,
1828         * device/lib/_fsmul.c,
1829         * device/lib/printf_fast.c,
1830         * device/lib/printf_tiny.c: updated comments
1831
1832 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1833
1834         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1835         bug #1164313
1836
1837 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1838
1839         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1840         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1841
1842 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * device/lib/printf_large.c: removed inline assembly for portability and
1845           readability. Use printf_fast if speed or size are more important.
1846         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1847         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1848
1849 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1850
1851         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1852         prevent compiler warning
1853
1854 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1855
1856         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1857         moved to level 0 and declared as static. Also they are explicit
1858         placed in access bank. This was necessery because some times they
1859         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1860         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1861         optimizations. Currently only compare to unsigned char is implemented,
1862         * src/pic16/gen.c: added fReturnIdx array,
1863         * (struct resolvedIfx) is moved to gen.h and made public,
1864         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1865         * (aopForSym): added an optimization to directly store in stack of
1866         the operand of a SEND iCode,
1867         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1868         but as registers instead (AOP_REG) using the fReturnIdx array,
1869         * (pic16_freeAsmop): remove the freed register from the
1870         _G.sregsAlloc field,
1871         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1872         a compare of 'WREG',
1873         * (pic16_popGetTempRegCond): changed function prototype, now
1874         function takes also a bitVector argument v which holds the current
1875         set of registers that are allocated for stack access by aopForSym,
1876         registers allocated in aopForSym for accessing stack symbols are not
1877         any more part of the functions usedRegs field,
1878         * (genCall): some times aopOp is called for a stack variable to be
1879         send, aopForSym might perform the push, if this is true make sure
1880         that genCall doesn't push the variable twice by testing _G.resDirect,
1881         * (genFunction): changed testing for unspecified interrupt number
1882         from 256 to INTNO_UNSPEC,
1883         * modified selection scheme of frame pointer generation. Previously
1884         if function did use local registers a frame pointer was generated,
1885         now a frame pointer is generated only if function has arguments
1886         (that need PLUSW2 register access), or has stack arguments, or the
1887         compiler is not instructed to omit the frame pointer,
1888         * (genEndFunction): before restoring local registers that were saved
1889         in the function preamble, also restore the registers that *might*
1890         have been allocated for stack access,
1891         * (genRet): removed some old comments,
1892         * (genCmp, the active (RN's) version): added a call to the
1893         pic16_genCmp_special function to perform the compare with a more
1894         robust and optimized way,
1895         * (genInline): a feature has been added in inline code generation,
1896         which allows a wildcard variable substitution when writing inline
1897         assembly. Code is incomplete and experimental therefore undocumented,
1898         * (genCast): changed order of aopOp for result and right to allow
1899         aopForSym to directly load the result if possible,
1900         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1901         perform an optimized compare on some selected special occasions,
1902         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1903         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1904         generate an IVT any more,
1905         * src/pic16/main.c (pic16_optionsTable): added command line option
1906         --optimize-cmp,
1907         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1908         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1909         macros,
1910         * src/pic16/NOTES: Raphael Neider added in list of active developers
1911         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1912         jumptable_end to prevent bug #,
1913         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1914         inCond and outCond fields,
1915         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1916         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1917         turn off register spilling,
1918         * (packRegsForOneUse): synced with other ports' versions although it
1919         is not used currently,
1920         * (pic16_packRegisters): added an optimization while reading
1921         structure bitfields, some registers may be saved (malloc code is
1922         decreased by 80 bytes)
1923
1924 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1925
1926         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1927         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1928         this can be optimized more?
1929
1930 2005-03-10 Raphael Neider <rneider AT web.de>
1931
1932         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1933           genNearPointerGet): (hopefully) fixed access to bitfields via
1934           pointers (p->bitN = x; and x = p->bitN; failed)
1935
1936 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1937
1938         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1939
1940 2005-03-09 Raphael Neider <rneider AT web.de>
1941
1942         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1943
1944 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1945
1946         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1947         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1948           (regTypeNum): set REG_BIT type if necessary
1949         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1950         * support/regression/tests/critical.c: check bug 1144613
1951
1952 2005-03-02 Raphael Neider <rneider AT web.de>
1953
1954         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1955
1956 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1957
1958         * src/avr/ralloc.c (serialRegAssign),
1959         * src/ds390/ralloc.c (serialRegAssign),
1960         * src/hc08/ralloc.c (serialRegAssign),
1961         * src/mcs51/ralloc.c (serialRegAssign),
1962         * src/pic/ralloc.c (serialRegAssign),
1963         * src/pic16/ralloc.c (serialRegAssign),
1964         * src/xa51/ralloc.c (serialRegAssign),
1965         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1966
1967 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1968
1969         * src/SDCCast.c (decorateType): fixed bug 1124787
1970
1971 2005-02-20 Hubert Sack <sack AT digiplan.de>
1972         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1973
1974         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1975         patch #1121755
1976
1977 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1978
1979         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1980         to keep the correct label reference count when adding/removing references
1981         to labels. A peephole file using this is appended to patch #1144962.
1982
1983 2005-02-14 Raphael Neider <rneider AT web.de>
1984
1985         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1986         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1987         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1988           retrievals of result operand's value on assignment
1989
1990 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1991
1992         * device/include/pic16/string.h: modified prototype for memccpy()
1993         to memccpy(void *, void *, char, size_t)
1994         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1995         check whether to omit frame pointer or not,
1996         * (genInline): convert all occurences of "\n" to LF in inline
1997         assembler blocks, this helps formatting the inline text,
1998         * (pic16_loadFSR0): modified prototype,
1999         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2000         removed some 8051 legacy code,
2001         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2002         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2003         before allocating temporary registers in functions,
2004
2005 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2006
2007         * support/regression/tests/bitvars.c: corrected the "fix"
2008
2009 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2010
2011         * support/regression/tests/bitvars.c,
2012         * support/regression/tests/bitwise.c,
2013         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2014
2015 2005-02-10 Raphael Neider <rneider AT web.de>
2016
2017         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2018           different size for Alpha
2019         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2020
2021 2005-02-09 Raphael Neider <rneider AT web.de>
2022
2023         * src/SDCC.lex(doPragma) : save and restore warning options as well
2024           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2025         * have #pragma less_pedantic set the errorlevel to WARNING
2026           (fixes #1117001)
2027         * (cloneOptimize) : fixed wrong malloc's size
2028         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2029           facilitate correct handling of #pragma (save|restore)
2030
2031 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2032
2033         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2034
2035 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2036
2037         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2038
2039 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2040
2041         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2042
2043 2005-02-02 Raphael Neider <rneider AT web.de>
2044
2045         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2046         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2047         * (pic16_storeForReturn): fixed to allow returning function pointers
2048         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2049         * device/include/pic16/{stddef.h,stdbool.h}: added
2050
2051 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2052
2053         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2054
2055 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2056
2057         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2058         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2059          appeared to be required
2060
2061 2005-01-31 Borut Razem <borut.razem AT siol.net>
2062
2063         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2064           include/mcs51 and include/z80 directories to the package
2065
2066 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2067
2068         * src/hc08/gen.c (genFunction): fixed bug #1112752
2069
2070 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2071
2072         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2073
2074 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2075
2076         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2077
2078 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2079
2080         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2081
2082 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2083
2084         * device/include/c8051fxxx.h: removed these 6 files
2085         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2086
2087 2005-01-26 Raphael Neider <rneider AT web.de>
2088
2089         * src/pic16/gen.c (genAssign): fixed assignment from longs
2090           in codespace (were cut to three bytes)
2091         * (genDummyRead): implemented (except for CODESPACE...),
2092           fixed bug #1108575
2093         * src/pic16/glue.c (emitStatistics): beautified
2094         * device/lib/pic16/libm/Makefile: added include path
2095
2096 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2097
2098         * src/z80/gen.c (aopPut): fixed bug #1103902
2099
2100 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2101
2102         * device/lib/expf.c: fixed bug #1095792
2103
2104 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2105
2106         * device/lib/pic16/libm: added Math library sources
2107
2108 2005-01-24 Raphael Neider <rneider AT web.de>
2109
2110         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2111           to enable upcast to pCodeOpReg2 (there is no type tag to
2112           differenciate the two and pic16_popGet2p cast into PCOR2)
2113         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2114           (sizeof(sectNames) changed to sizeof(sectName))
2115           Both patches fix segfaults under MinGW.
2116
2117 2005-01-23 Raphael Neider <rneider AT web.de>
2118
2119         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2120           Safe_[mc]?alloc()'ed variables
2121         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2122           of (byte sized) temporaries (assign them to WREG for now)
2123         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2124           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2125           this might fix SIGSEGVs on MinGW...
2126         * src/SDCCopt.c (killDeadCode): restored original behaviour
2127           (volatile operands might get thrown away though)
2128
2129 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2130
2131         * src/pic16/gen.c: fixed bug #1106975,
2132         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2133         pointer update, INTCON is saved, global interrupts are disabled and
2134         restored after updateing TOS.
2135         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2136         * added function attribute 'shadowregs' to take advantage of shadow
2137         registers,
2138         * added function attribute 'wparam' as an alternative to the wparam
2139         pragma,
2140         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2141         user declares a non-ISR function as 'shadowregs',
2142         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2143
2144 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2145
2146         * .version: bumped version number to 2.4.8
2147         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2148         pic16 port,
2149         * device/lib/pic16/libio/i2c/: I2C module support library,
2150         * device/include/pic16/i2c.h: I2C support library header,
2151         * device/lib/pic16/libc/stdio/: standard IO support sources,
2152         * (printf_small.c): printf_small() source, supports float print,
2153         * (printf_tiny.c): printf_tiny() source, does not support floats,
2154         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2155         enable global optimizations for entire library source, other
2156         Makefiles in the source tree are also modified to reflect this,
2157         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2158         function,
2159         * doc/sdccman.lyx: updated to reflect new changes,
2160         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2161         sym->onStack if-case,
2162         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2163         sbit, idata, _idata, xdata, _xdata,
2164         * added pragma library, to link an external library, (see doc),
2165         * removed command line options, --pomit-config-words, --pomit-ivt,
2166         --pleave-reset-vector,
2167         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2168         when calling assembler to reflect memory model used, also define
2169         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2170         reflect stack model used,
2171         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2172         on stack return NULL,
2173
2174 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2175
2176         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2177           of the operands is volatile. Fixes #1020220
2178
2179 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2180
2181         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2182         * (OptimizeRegUsage): make sure that there is really no other flow where
2183           the first pCode is used
2184
2185 2005-01-22 Raphael Neider <rneider AT web.de>
2186
2187         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2188           to fix #1106967 (pCode->seq are not set up correctly)
2189
2190 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2191
2192         * src/SDCCglue.c (glue): make sure code area is declared before the
2193         static initialization area.
2194
2195 2005-01-21 Raphael Neider <rneider AT web.de>
2196
2197         * device/lib/Makefile.in: fixed test for pic16 install dir
2198         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2199           optimizations
2200         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2201           added --optimize-goto compiler switch and pragma wparam documentation
2202         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2203         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2204           and PRODH closing bug #1071770 (peephole optimizer)
2205
2206 2005-01-19 Raphael Neider <rneider AT web.de>
2207
2208         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2209           cmdLine buffers (used when calling sdcpp...) are large enough
2210           (MAX_PATH=256 truncates arguments leading to system halts when
2211           used in MinGW...)
2212         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2213         * (genUminus): rewritten to for efficiency
2214         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2215           used uninitialized in some cases)
2216         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2217           copy the third byte from the int -- now assumes 0x80 (data memory)
2218         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2219           operands (genAddLit expects the iCode's operands to swapped as
2220           well), fixed leftover bytes (crashed for short left operands)
2221         * (pic16_genMinusDec): performance improvements, removed false
2222           PIC14 emitSKPNCs
2223         * (pic16_genMinus): fixed to cope with differently sized operands
2224         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2225           for --obanksel > 1
2226         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2227         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2228           new banksel optimization
2229         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2230           analysis for temporary registers (segfaults...)
2231         * src/pic16/peeph.def: added rule
2232
2233 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2234
2235         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2236         which converts a float number to its ASCII representation
2237         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2238         functions to convert the fractional and integer part of a float to ASCII,
2239         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2240         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2241         ram
2242         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2243         _STATMEM macros,
2244         * device/include/pic16/adc.h: added GPL info,
2245         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2246         a pCodeOp as tested operand,
2247         * (genNearPointerGet): optimized bit testing, does not use
2248         intermediate register for bit value, test directly instead with
2249         BTFSS, BTFSC, works only for single bits,
2250         * (genpic16Code): dump the name of the iCode in the asm,
2251         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2252         renamed to pic16_decodeOp,
2253         * (serialRegAssign): do not allocate a temporary register for iCode
2254         sequences that test a single bit for 1/0
2255
2256 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2257
2258         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2259         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2260         access stack and frame pointers. They are initially assigned to
2261         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2262         accessing SFRs. Updated all occurences of modification of stack or
2263         frame pointer in gen.c and pcode.c,
2264         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2265         assigning of a literal value to pointers,
2266         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2267         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2268         selected
2269
2270 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2271
2272         * doc/sdccman.lyx: update documentation about stack pragma, added
2273         some info for stack memory models
2274
2275 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2276
2277         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2278
2279 2005-01-08 Raphael Neider <rneider AT web.de>
2280
2281         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2282           udata sections to fix bug #1097823
2283
2284 2005-01-05 Raphael Neider <rneider AT web.de>
2285
2286         * src/pic16/gen.c (genGenericShift): added handling of differently
2287           sized left operand and result
2288
2289 2005-01-04 Raphael Neider <rneider AT web.de>
2290
2291         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2292         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2293           to hold the condition bit)
2294         * added new version of genCmp (old code available via #define)
2295         * added new version of genShiftLeft/genShiftRight in a generic
2296           way, now supports shifting by negative values
2297         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2298           shiftCount (expected by genGenericShift)
2299         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2300         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2301           dump
2302         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2303           is an invalid literal too...)
2304
2305 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2306
2307         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2308         from Raphael Neider,
2309         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2310         for 8-bit literals. This fixes some literal operands which are sign
2311         extended to 16-bits ints when instruction needs only 8-bits.
2312
2313 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2314
2315         * device/lib/logf.c: added mcs51 assembly version
2316         * device/lib/expf.c: added mcs51 assembly version
2317         * device/lib/_logexpf.c: new shared asm code for expf and logf
2318         * device/include/math.h: add defines for assembly math library
2319         * device/lib/Makefile.in: build new _logexpf.c
2320         * device/lib/libfloat.lib: use new _logexpf.c
2321
2322 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2323
2324         * src/pic/device.c
2325         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2326           device types which have less than 0x7f registers.
2327
2328 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2329
2330         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2331
2332 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2333
2334         * device/lib/printf_fast.c: only build on supported arch.
2335         * device/lib/printf_tiny.c: only build on supported arch.
2336         * device/lib/printf_fast_f.c: only build if asm float lib
2337         * device/lib/_fsget1arg.c: only build if asm float lib
2338         * device/lib/_fsget2args.c: only build if asm float lib
2339         * device/lib/_fsnormalize.c: only build if asm float lib
2340         * device/lib/_fsreturnval.c: only build if asm float lib
2341         * device/lib/_fsrshift.c: only build if asm float lib
2342         * device/lib/_fsswapargs.c: only build if asm float lib
2343         * device/include/stdio.h: don't provide print_fast,
2344           print_fast_f, print_tiny prototypes if --xstack used
2345
2346 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2347
2348         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2349         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2350           to the SOURCES
2351
2352 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2353
2354         * device/lib/printf_fast_f.c: same as printf_fast, but
2355           with floating point enabled
2356         * device/lib/printf_fast.c: minor tweaks
2357         * device/include/stdio.h: add printf_fast_f
2358
2359 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2360
2361         * src/SDCCmain.c: make --float-reent default for mcs51
2362         * device/lib/_fsadd.c: added mcs51 assembly version
2363         * device/lib/_fssub.c: added mcs51 assembly version
2364         * device/lib/_fsmul.c: added mcs51 assembly version
2365         * device/lib/_fsdiv.c: added mcs51 assembly version
2366         * device/lib/_fseq.c: added mcs51 assembly version
2367         * device/lib/_fsneq.c: added mcs51 assembly version
2368         * device/lib/_fsgt.c: added mcs51 assembly version
2369         * device/lib/_fslt.c: added mcs51 assembly version
2370         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2371         * device/lib/Makefile.in: add _fscmp to build
2372         * device/lib/libfloat.lib: add _fscmp to build
2373
2374 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2375
2376         * device/lib/_fs2slong.c: added mcs51 assembly version
2377         * device/lib/_fs2sint.c: added mcs51 assembly version
2378         * device/lib/_fs2schar.c: added mcs51 assembly version
2379         * device/lib/_fs2ulong.c: added mcs51 assembly version
2380         * device/lib/_fs2uint.c: added mcs51 assembly version
2381         * device/lib/_fs2uchar.c: added mcs51 assembly version
2382         * device/lib/_slong2fs.c: added mcs51 assembly version
2383         * device/lib/_sint2fs.c: added mcs51 assembly version
2384         * device/lib/_schar2fs.c: added mcs51 assembly version
2385         * device/lib/_ulong2fs.c: added mcs51 assembly version
2386         * device/lib/_uint2fs.c: added mcs51 assembly version
2387         * device/lib/_uchar2fs.c: added mcs51 assembly version
2388         * device/include/float.h: added #define to select asm vs c
2389
2390 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2391
2392         * device/lib/printf_fast.c: improvements to float output
2393         * device/include/float.h: add defines for assembly float library
2394         * device/lib/_fsget1arg.c: receive 1 float arg
2395         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2396         * device/lib/_fsnormalize.c: normalize a float
2397         * device/lib/_fsreturnval.c: return float, various helper routines
2398         * device/lib/_fsrshift.c: right shift a float's mantissa
2399         * device/lib/_fsswapargs.c: swap 2 floats
2400         * device/lib/Makefile.in: build these 6 new files for mcs51
2401         * device/lib/libfloat.lib: add these 6 files to the library
2402
2403 2004-12-26 Borut Razem <borut.razem AT siol.net>
2404
2405         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2406           built by gcc 3.4.2
2407
2408 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2409
2410         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2411           and fully reentrant and register bank neutral.
2412         * device/lib/printf_fast.c: added float (not enabled by default),
2413           added compact/slower integer (also not enabled by default),
2414           improved size/speed of fast integer code, other minor changes
2415         * device/include/stdio.h, device/lib/Makefile.in,
2416           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2417
2418 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2419
2420         * src/pic16/pcode.c: declaring variables other than at the start of a
2421           block is not supported in C by VC6.
2422
2423 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2424
2425         * applied a previous patch from Raphael Neider that wasn't included
2426         in the previous commits, which fixes infinite loops within jumptable
2427         improvements,
2428         * made some fixes that previous patches introduced
2429
2430 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2431
2432         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2433         that fixes an issue with AOP_PCODE asmop's offset,
2434         * (pic16_popCopyReg): update instance field too,
2435         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2436         function of pic port,
2437         * (genCmp, genAnd, genAssign),
2438         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2439
2440 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2441
2442         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2443         variables initial values to idata section,
2444         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2445         variables in some functions. This utilizes parmBytes field of iCode
2446         structure to hold the offset of the variable in stack. (might be
2447         able to use the stack field too?)
2448         * applied patch from Raphael Neider # ### , # ###
2449         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2450         variable initial values in idata section,
2451         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2452         for static variables with initial value
2453         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2454         applied fix in while loop from Raphael Neider.
2455
2456 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2457
2458         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2459         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2460         * src/ds390/ralloc.c (serialRegAssign): spill bits
2461         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2462         * support/Util/SDCCerr.c,
2463         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2464         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2465         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2466
2467 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2468
2469         * device/include/sdcc-lib.h: inserted LGPL, added includes
2470           asm/ds390/features.h and asm/mcs51/features.h
2471         * device/include/asm/default/features.h,
2472         * device/include/asm/gbz80/features.h,
2473         * device/include/asm/z80/features.h: added empty _AUTOMEM
2474           and _STATMEM
2475         * device/include/asm/ds390/features.h,
2476         * device/include/asm/mcs51/features.h: added files with defines for
2477           _AUTOMEM and _STATMEM indicating automatic and static storage class
2478         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2479         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2480         * src/SDCCicode.c (geniCodeCast),
2481         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2482         * src/SDCCloop.c (loopInduction): removed unused variable lr
2483         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2484           to convertToFcall to include char modulo (RFE 1065037), added check
2485           if left operand is unsigned and use abs of literal value
2486         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2487           as it doesn't work after conversion from peephole.def to peephole.rul
2488         * src/mcs51/gen.c (toBoolean): added check for size,
2489           (genModOneByte): optimized code for signed char modulo a literal
2490           power of 2 (thanks to Hubert Sack),
2491           (genRRC): removed unnecessary "clr c",
2492           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2493         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2494           jump optimization,
2495           swapped rules 256.c and 256.d,
2496           extended 256.d by using new multiple checks (thanks Erik),
2497           added rules 256.e and 256.f,
2498           updated rule 261.a and 261.b to new generated code
2499         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2500
2501 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2502
2503         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2504           induction related bugs, including first part of bug #1074377
2505
2506 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2507
2508         * applied patch from bug-report #1076292,
2509         * applied patches for genAnd and Goto-optimizations for Raphael
2510         Neider,
2511         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2512         dump a less iCode information,
2513         * src/pic16/device.h (pic16_options_t): added field debgen,
2514         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2515         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2516         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2517         puclic,
2518         * (various functions): added macros FENTRY and FENTRY2 to functions,
2519         to emit function prologue,
2520         * (various functions): fixed indentation,
2521         * (genNearPointerGet): fixed loading of FSR0,
2522         * (genPackBits): applied patch from Raphael Neider to fix updating
2523         of FSR0 and touching only the modified bits,
2524         * src/pic16/genarith.c (various functions): added macros FENTRY to
2525         emit function prologue in comments,
2526         * src/pic16/pcode.h: added functions debugf2, debugf3,
2527         * src/pic16/ralloc.c: partial fix for packForPush caused
2528         segmentation fault,
2529
2530 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2531
2532         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2533           <stsp AT users.sourceforge.net> with reversed byte order
2534         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2535
2536 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2537
2538         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2539           bug #1074377
2540         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2541         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2542
2543 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2544
2545         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2546
2547 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2548
2549         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2550           conditions,
2551           (setFromConditionArgs): friendly operand parser for peephole rules,
2552           (operandBaseName, operandsNotRelated): new peephole condition
2553           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2554           architecture specific register naming into account, handles n-way
2555           comparisons, and supports quoted literals
2556         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2557
2558 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2559
2560         * src/mcs51/peeph.def: fixed bug #1076940
2561
2562 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2563
2564         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2565
2566 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2567
2568         Adding support for replacing ljmps with sjmps in jumptables
2569         generated for switch statements. For now you need to set the
2570         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2571         Now 4 algorithms for mcs51 jumptable generation are used:
2572         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2573         addresses loaded pc-relative for up to 112 cases and stack-pushing
2574         target addresses loaded with offset from dptr for up to 256 cases.
2575
2576         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2577         * src/mcs51/main.c: adapted constants for switch table generation
2578         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2579
2580 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2581
2582         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2583         * support/regression/tests/bug1057979.c: added test for bug 1073386
2584
2585 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2586
2587         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2588         compilers
2589
2590 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2591
2592         * src/pic16/device.h,
2593         * src/pic16/genarith.c,
2594         * src/pic16/glue.c,
2595         * src/pic16/main.c,
2596         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2597
2598 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2599
2600         Large cummulative patch for pic16 port.
2601         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2602         to call when a stack overflow occurs,
2603         * (malloc.h): added CVS Id tag,
2604         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2605         variable,
2606         * added libc directory. The current version of LibC contains string
2607         functions, ctype functions and macros and some functions of the
2608         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2609         be extensively tested in the future. Standard disclaimer here.
2610         Library is not automatically build yet. But one can build it by
2611         invoking 'make' inside the libc directory.
2612         * added ADC library under libio. Preliminary version yet.
2613
2614         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2615         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2616         aopForRemat() now and not by pic16_aopOp(),
2617         * (pic16_popGetTempReg): removed warning messgae when allocating
2618         temporary registers, its a buggy feature and will be removed,
2619         * (pic16_popGet): set register instance field in AOP_CRY,
2620         * (pic16_outBitC): fixed for results in size greater than 1,
2621         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2622         * (pic16_storeForReturn): optimized return of 0,
2623         * (genCmp): experimental code for new genCmp which uses PIC18's
2624         special compare&skip instructions. Initial tests fail some times
2625         with variables grater than 1 byte in size, so new code is disabled,
2626         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2627         a single bit,
2628         * (genCast): began a fix to optimize the casting of a bit to another
2629         bit, now assigning a bitfield to another bitfield will fail, sorry,
2630         * src/pic16/main.c: disabled the use of lr-support feature,
2631         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2632         * added some function prototypes, added function _debugf prototype,
2633         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2634         bits with offset (case PO_GPR_BIT),
2635         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2636         command line,
2637         * (isBankInstruction): modified to return 0 for no banking instruction,
2638         and 1 for banking instruction,
2639         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2640         caused stop processing pCodes after a inline assembly block,
2641         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2642         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2643         registers when it shouldn't,
2644         * src/pic16/ralloc.c (allocReg): add preliminary support for
2645         supporting a limited set of temporary registers,
2646
2647 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2648
2649         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2650           genDataPointerSet): ensure assignments always copy in MSB to LSB
2651           order,
2652           (loadRegFromAop): recognize CLRH optimization,
2653           (genFunction): optimize RECEIVE iCodes in reentrant functions
2654
2655 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2656
2657         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2658           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2659           selected.
2660         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2661         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2662           contiguous with data
2663
2664 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2665
2666         * device/lib/_gptrget.c (_gptrget),
2667         * device/lib/_gptrgetc.c (_gptrgetc),
2668         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2669           instead of sjmp to ret
2670         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2671           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2672
2673 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2674
2675         * .version: bumped version to 2.4.7
2676         * device/lib/_gptrget.c (_gptrget): is now _naked
2677         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2678         * device/lib/_gptrput.c (_gptrput): is now _naked
2679         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2680           (createFunction): fixed xstack
2681         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2682         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2683           or bit either,
2684           (geniCodeCritical): store original interrupt state in an iTemp bit
2685           var unless stack-auto
2686         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2687         * src/SDCCmain.c (setIncludePath): added include/target to search path
2688         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2689         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2690           prototype,
2691           (processFuncArgs): put bit vars in bit area
2692         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2693           unsaveRBank): fixed xstack,
2694           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2695           (genFunction, genEndFunction): fixed xstack,
2696           (genAssign): optimization don't walk backwards through mem
2697         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2698         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2699         * support/regression/Makefile: also make library (for stack-auto) when
2700           making "all" and added "test-mcs51-xstack-auto"
2701         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2702         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2703         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2704         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2705         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2706           make-library by MAKE_LIBRARY
2707         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2708           regression tests for xstack
2709         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2710         * support/regression/tests/critical.c: test for critical on mcs51
2711
2712 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2713
2714         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2715           built version of sdcc instead of installed version
2716
2717 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2718
2719         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2720         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2721           vprintf.c now
2722         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2723         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2724           WARNING: remove device/lib/build/z80/printf.o by hand when
2725           updating from previous build!
2726         * device/lib/z80/printf.c: updated comment
2727         * support/regression/tests/bug1057979.c: test all ports now
2728         * support/regression/tests/bug1065458.c: file added
2729
2730 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2731
2732         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2733           *_start and *_end symbols for static functions
2734
2735 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2736
2737         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2738           and search crt0.o in all library paths,
2739           (setIncludePath): proper handling of --nostdinc,
2740           (setLibPath): proper handling of --nostdlib
2741         * support/regression/Makefile,
2742         * support/regression/ports/ds390/spec.mk,
2743         * support/regression/ports/gbz80/spec.mk,
2744         * support/regression/ports/hc08/spec.mk,
2745         * support/regression/ports/mcs51/spec.mk,
2746         * support/regression/ports/mcs51-large/spec.mk,
2747         * support/regression/ports/mcs51-stack-auto/spec.mk,
2748         * support/regression/ports/z80/spec.mk: use include and lib files from
2749           built version of sdcc instead of installed version
2750         * doc/sdccman.lyx: fixed typo in --nostdinc
2751
2752 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2753
2754         * src/pic/pcode.c,
2755         * src/pic/device.c,
2756         * src/pic/ralloc.c,
2757         * src/pic/gen.c : added support to generate code for struct bit fields.
2758
2759 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2760
2761         * as/xa51/xa_version.h,
2762         * device/include/errno.h,
2763         * device/include/regc515c.h,
2764         * device/lib/_itoa.c,
2765         * device/lib/_ltoa.c,
2766         * device/lib/ser_ir_cts_rts.c,
2767         * sim/ucsim/xa.src/glob.cc,
2768         * sim/ucsim/xa.src/inst_gen.cc,
2769         * sim/ucsim/xa.src/xa_bit.cc,
2770         * sim/ucsim/xa.src/xa_sfr.cc,
2771         * sim/ucsim/z80.src/inst_dd.cc,
2772         * sim/ucsim/z80.src/inst_fdcb.cc,
2773         * support/scripts/keil2sdcc.pl,
2774         * src/pic16/pic16.dsp,
2775         * src/pic16/pic16a.dsp: corrected cvs line endings
2776         * device/lib/printf_large.c: fixed bug 1057979
2777         * src/pic16/gen.c: fixed non-C standard code
2778         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2779         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2780         * support/regression/ports/mcs51/support.c: reload T1 asap
2781         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2782           pdata use and clear idata startup behaviour
2783         * support/regression/tests/bug1057979.c: added
2784
2785 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2786
2787         * device/examples/ds390/ow390/ad26.h,
2788         * device/examples/ds390/ow390/cnt1d.h,
2789         * device/examples/ds390/ow390/crcutil.c,
2790         * device/examples/ds390/ow390/ownet.h,
2791         * device/examples/ds390/ow390/owsesu.c,
2792         * device/examples/ds390/ow390/swt12.h,
2793         * device/examples/ds390/ow390/swtoper.c,
2794         * device/examples/ds390/ow390/temp10.h,
2795         * device/examples/ds390/ow390/thermodl.c,
2796         * device/examples/ds390/tinitalk/tinitalk.dsp,
2797         * device/examples/ds390/tinitalk/tinitalk.dsw,
2798         * device/examples/mcs51/clock/hw.h,
2799         * device/examples/mcs51/simple2/go.bat,
2800         * device/examples/serialcomm/windows/serial.h,
2801         * device/examples/xa51/dummy.c,
2802         * device/examples/xa51/hello.c,
2803         * device/include/80c51xa.h,
2804         * device/include/at89x051.h: corrected cvs line endings
2805
2806 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2807
2808         * src/pic16/main.c (options): added command line --gstack, to trace
2809         stack over/under flows,
2810         * added pragma 'wparam' to allow passing first byte of function
2811         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2812         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2813         call to __gstack_test function and sets up the symbol as extern,
2814         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2815         * popaop): added call to pic16_testStackOverflow,
2816         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2817         wparamList list,
2818         * (genCall, genPcall): now all parameters are passed via stack
2819         except in functions that are pass to wparam pragma in which WREG is
2820         used too,
2821         * (genPcall): REENTRANT flag is checked to see if variable prototype
2822         contains reentrant keyword, don't call a non-reentrant function, via
2823         a reentrant function pointer or vice versa, functions are never
2824         passed via WREG,
2825         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2826         D.Winkler,
2827         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2828         SIGSEGV when accessing a NULL register stucture,
2829         * (pic16_printGPointerType): modified to handle UPPER modifier for
2830         function initializers, changed prototype of function to simpler one,
2831         * (pic16_printIvalFuncPtr): check to see if function is already
2832         added in externs list,
2833         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2834         optimized a move from W to SFR with a move to the same register
2835         later after a CALL,
2836         * device/lib/pic16/debug: NEW directory, contains debug features
2837         which are enabled when linking with libdebug.lib, currently command
2838         line option --gstack enables stack pointer tracing for over/under
2839         flow, corresponding sources are in debug/gstack
2840
2841 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2842
2843         * doc/sdccman.lyx: updated SDCC version,
2844         * (PIC16 port): update list of command line options,
2845         * src/pic16/device.h (structure pic16_options_t): added field gstack
2846         to enable stack overflow tracing on push/pops,
2847         * src/pic16/device.c (statistics structure): added statistics
2848         structure,
2849         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2850         pic16_dump_int_registers): increase statistics counters for each
2851         * variable which is encountered
2852         * (pic16_dump_usection): emit each .udata variable to its own udata
2853         section,
2854         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2855         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2856         parameters via stack, otherwise use old scheme,
2857         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2858         assembler output file,
2859         * src/pic16/main.c: added command line options --gstack to enable
2860         push/pop tracing for stack overflow,
2861         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2862         instructions): added size of each instruction,
2863         * (pic16_countInstruction): estimate size of instructions in
2864         the_pFile list, inline assembly blocks are not counted,
2865         * (pic16_FixRegisterBanking): trace previous register usage, when
2866         banksel optimizations is greater than 0, don't emit a redudant
2867         banksel directive,
2868
2869 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2870
2871         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2872         * src/pic16/ralloc.c : applied same fix for pic16.
2873         * src/pic/gen.c : tidied it up a little.
2874
2875 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2876
2877         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2878         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2879
2880 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2881
2882         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2883
2884 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2885
2886         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2887         non-reentrant function __modsint in the interrupt function (thus
2888         corrupting math operations during serial I/O)
2889         * device/lib/ser_ir.c: as above, changed buffersize
2890         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2891         256.c,d for zeroing
2892         * doc/Makefile: added option -t for rsync
2893
2894 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2895
2896         * src/SDCCast.h (struct ast),
2897         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2898
2899 2004-10-20 Borut Razem <borut.razem AT siol.net>
2900
2901         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2902         package
2903
2904 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2905
2906         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2907         makefile targets,
2908         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2909         support functions to replace long sequences of MOVFF's from access
2910         bank registers to stack and vice versa,
2911         * src/pic16/device.h: added new field opt_flags, where optimization
2912         flags can be set to enable certain features,
2913         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2914         * pBlock, (genFunction, genEndFunction): surroung loop for
2915         saving/loading used registers in stack with PC_INFO pCodes,
2916         INF_LREGS. Code in between can then be optimized by pCode optimizer
2917         to support function calls,
2918         * (genDataPointerSet): fixed bug which loaded float fields in
2919         structures with corrupt data,
2920         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2921         in a standard way debug info on stderr. Feature used for developing
2922         and debugging only,
2923         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2924         obsolete chunks of code,
2925         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2926         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2927         * pic16/src/pcode.c (pic16_newpCodeInfo,
2928         * (pic16_newpCodeOpLocalRegs),
2929         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2930         feature,
2931         * (pic16_pCodeConstString): printing of the initial value of a
2932         symbol as a comment is inhibited since parsing was already done by
2933         copyStr and output is corrupt,
2934         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2935
2936 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2937
2938         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2939
2940 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2941
2942         * as/mcs51/lkarea.c: removed old K&R style,
2943           (lnksect): changed check on boundary error,
2944           (lnksect2): changed check on boundary error,
2945           (lnksect2): extend XSTK to end of page if size = 1
2946         * as/mcs51/lkmain.c: removed old K&R style,
2947           (Areas51): create l_IRAM symbol
2948         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2949         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2950           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2951         * device/lib/_mullong.c: added version to be compiled with xstack
2952         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2953         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2954         * device/lib/mcs51/crtxstack.asm: fixed comment
2955         * src/SDCCglue.c: maxInterrupts defaults to 0,
2956           (emitMaps): added pdata,
2957           (createInterruptVect): (re)moved default,
2958           (glue): added pdata,
2959           (glue): moved __start__xstack to XSTK with default size 1
2960         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2961           and options.float_rent when options.stackAuto is set,
2962           (linkEdit): only write XDATA_NAME if provided on command line
2963         * src/SDCCmem.h,
2964         * src/SDCCmem.c: added pdata
2965         * src/port.h: added pdata_name to PORT
2966         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2967           (saveRegisters, unsaveRegisters): removed usage of B,
2968           (genMinus): fixed accumulator clash,
2969           (genJumpTab): added comment, this needs another look
2970         * src/mcs51/gen.c: added check for "B in use" paranoia,
2971           added pushB() and popB()
2972         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2973           chance
2974         * src/avr/main.c,
2975         * src/ds390/main.c,
2976         * src/hc08/main.c,
2977         * src/mcs51/main.c,
2978         * src/pic/main.c,
2979         * src/pic16/main.c,
2980         * src/xa51/main.c,
2981         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2982           added PSEG (PAG,XDATA) or NULL to port specifier
2983         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2984         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2985           (_mcs51_genInitStartup): removed __start__xstack equ,
2986           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2987         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2988         * src/z80/gen.c (_rleAppend): fixed warnings
2989         * support/regression/tests/zeropad.c: added pdata test
2990         * .version: bumped to 2.4.6
2991
2992 2004-10-17 Borut Razem <borut.razem AT siol.net>
2993
2994         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2995         as a part of nightly build
2996
2997 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2998
2999         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3000         WREG holds the first byte function parameters,
3001         * (aopForSym): take special case for symbols which are in FARSPACE
3002         but in CODESPACE too,
3003         * (assignResultValue): modified to take into account _G.useWreg,
3004         * (genCall): don't use wreg for parameter passing when function is
3005         declared as reentrant, too, added optimization INCF to stack
3006         pointer when stack parameter count is 1,
3007         * (genFunction, genEndFunction): refurnished and fixed to not using
3008         wreg for passing parameters when function has varargs or is
3009         reentrant, fixed bug with symbol name compare for generating
3010         functions in absolute address,
3011         * (pic16_storeForReturn): refurnished,
3012         * (genCmp): began writing a new version of the function, not ready
3013         yet, therefore it is disabled,
3014         * (genAssign): do not read code memory when assigning a function to
3015         a pointer function,
3016         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3017         array of characters, not pointer,
3018         * (pic16initialComments): in debug mode emit an .ident directive for
3019         the assembler,
3020         * (_process_pragma): emit a new warning type (internal to pic16)
3021         when setting stack to default length, emit a similar warning when
3022         placing a function at absolute address and address is not word aligned
3023         * (_pic16_parseOptions): added 'return TRUE' statement,
3024         * (_pic16_linkEdit): if compiling a source, then add the source's
3025         file object, first in the list of objects to link,
3026
3027 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3028
3029         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3030         * src/pic/main.c : removed VC warning.
3031         * src/pic/gen.c : changed comment.
3032
3033 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3034
3035         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3036         reference to a deprecated symbol _GPTRREG was causing failure to
3037         link. Thanks G. M. Gallant for the info.
3038
3039 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3040
3041         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3042         comments for Bugs item #954788.
3043
3044 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3045
3046         * src/pic16/device.c (pic16_dump_gsection,
3047         * pic16_groupRegistersInSection): handle symbols declared to be in
3048         access bank differently,
3049         * src/pic16/gen.c (struct _G): added field resDirect,
3050         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3051         send values read from stack directly to result and don't allocate
3052         temporary values,
3053         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3054         same registers,
3055         * (pic16_sameRegsOfs): NEW,
3056         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3057         free because they were not allocated from temporary pool,
3058         * pic16_popRegFromString): workaround to fix a problem with
3059         allocating variables twice or never,
3060         * (genGenPointerGet): using PRODL instead of FSR0H,
3061         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3062         instead of FSR0H,
3063         * (genAssign): take advantage of the _G.resDirect flag,
3064         * (genCast): around line 11844, use mov2f instead of directly
3065         MOVFF'ing between operands to account for literal values,
3066         * src/pic16/genutils.c: some new debug functions for gpsim have been
3067         added,
3068         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3069         float with integer part only,
3070         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3071         place variables in access bank
3072         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3073         updated sources to reflect recent changes in gen.c
3074
3075 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3076
3077         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3078         sources that searched for headers in installation path, now the
3079         device/include/pic16 is used,
3080         * src/pic16/glue.c (pic16glue),
3081         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3082         .line directives if not in debug mode, this suppresses assembler's
3083         warnings for ignored directives
3084
3085 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3086
3087         * src/port.h: made reset_regparms prototype void parameter explicit.
3088         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3089         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3090         * doc/sdccman.lyx: documented warning disabling and how to use
3091           printf_large to make it print floats.
3092         * device/include/stdbool.h: NEW
3093         * device/lib/_atof.c,
3094         * device/lib/_divuint.c,
3095         * device/lib/_divulong.c,
3096         * device/lib/expf.c,
3097         * device/lib/printf_large.c,
3098         * device/lib/sincosf.c,
3099         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3100         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3101           a completely reentrant lib.
3102
3103 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3104
3105         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3106         * device/include/pic16/stdio.h: fixed bug with colon
3107
3108 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3109
3110         * device/include/pic16/stdio.h,
3111         * device/include/pic16/stdlib.h,
3112         * device/include/pic16/math.h: NEW
3113         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3114         declared as _naked to reduce overhead
3115         * device/lib/Makefile.in (target port-specific-objects-pic16):
3116         changed * to *.* so to ignore the CVS directory,
3117         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3118         stacked variables back in stack,
3119         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3120         corruption
3121
3122 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3123
3124         * .version: bumped version number to 2.4.5
3125         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3126         * support/Util/SDCCerr.c (messages structure): added entry for
3127         W_POSSBUG2
3128
3129         Large cumulative patch for pic16 port and libraries.
3130         * device/include/pic16/sdcc-lib.h,
3131         * device/include/pic16/stdarg.h,
3132         * device/include/asm/pic16/features.h,
3133         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3134         * device/include/pic16/float.h: changes reentrant keyword with
3135         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3136         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3137         updated target build-libraries to include objects from gptr,
3138         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3139         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3140         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3141         all function headings,
3142         * src/SDCCmain.c: added global parameter userIncDirsSet,
3143         * (parseCmdLine): when option -I is encountered add directory to
3144         userIncDirsSet too,
3145         * src/version.awk: added space between control and long,
3146         * src/pic16/NOTES: added some notes for the port,
3147         * src/pic16/gen.c: added prototype for mov2fp function,
3148         * (fReturnpic16[]): properly named return value registers,
3149         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3150         * (aopForSym): added code to handle symbols with onStack flag set,
3151         symbols onStack are allocated PTRSIZE bytes,
3152         * (aopFreeAsmop): handles special case where asmops are stack objects,
3153         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3154         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3155         added argument lock to trace flaws in allocating temporary registers
3156         when developing port,
3157         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3158         * (pic16_popRegFromString): reenabled allocating a direct register
3159         from string,
3160         * (assignResultValue): various beautifications,
3161         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3162         referenced function argument,
3163         * (genIpush): reenabled to allow stacked arguments, handles only
3164         ic->parmPush iCodes,
3165         * (genCall, genPcall): major changes to allow for variable argument
3166         functions, fixed a bug with falsely restoring stack pointer after
3167         returning from call,
3168         * (genFunction): pending code for critical function,
3169         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3170         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3171         * (genNearPointerGet): fixed bug with indirect reading, was always
3172         reading from INDF0
3173         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3174         pointers,
3175         * (genAddrOf): rewrote code to take address of a stacked function parameter
3176         * (genCast): fixed casting to generic pointer type,
3177         * src/pic16/gen.h: added AOP_STA,
3178         * (struct asmop): added field stk,
3179         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3180         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3181         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3182         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3183         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3184         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3185         generic pointers,
3186         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3187         and library paths,
3188         * (pic16_port structure): generic pointer size is set to 3,
3189         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3190         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3191         compiler warning,
3192         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3193         operand is an iTemp,
3194
3195 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3196
3197         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3198         * debugger/mcs51/simi.c: addapt new syntax of s51
3199
3200 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3201
3202         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3203         * src/pic16/pcode.c: commented out some calls to free() in order to
3204         fix bug #989576,
3205
3206 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/SDCCicode.h,
3209         * src/SDCCicode.c (isiCodeInFunctionCall),
3210         * src/avr/ralloc.c (selectSpil),
3211         * src/pic/ralloc.c (selectSpil),
3212         * src/pic16/ralloc.c (selectSpil),
3213         * src/ds390/ralloc.c (selectSpil),
3214         * src/hc08/ralloc.c (selectSpil),
3215         * src/xa51/ralloc.c (selectSpil),
3216         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3217         stack in the middle of a function call sequence (fixes bug #1020268)
3218         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3219         costs associated with the minimum switch case.
3220
3221 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3222
3223         * src/SDCC.lex: fixed bug #1030549
3224
3225 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3226
3227         * src/SDCCcse.h (struct cseDef),
3228         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3229         over a function call if the CSE is derived from a symbol whose
3230         address has been taken (fixes bug #1029883)
3231         * support/regression/tests/bug-1029883: a new regression test for
3232         this bug
3233
3234 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3235
3236         * src/hc08/gen.c (emitinline): fixed bug #1029778
3237         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3238         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3239         and starts toward RFE #905167)
3240
3241 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3242
3243         * src/pic16/gen.c (mov2f): New function to move an operand to
3244         another without considering if it is a literal or a register,
3245         * (pic16_sameRegs): don't check if they are both AOP_REG,
3246         * (AccRsh): removed andmask=0 lines,
3247         * (genLeftShift): duplicated to be improved in future versions,
3248         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3249         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3250         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3251         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3252         * (insertBankSwitch): fixed inserting banksel directives algorithm
3253         for instructions that follow a skip instruction, this fixes a report
3254         for broken subtraction code generation,
3255         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3256         iCode is a left op, just in case result and right share the same
3257         registers
3258
3259 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3260
3261         * src/hc08/main.c,
3262         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3263         preservation of HX
3264         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3265         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3266         on 2004-09-12; it was buggy
3267
3268 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3269
3270         * src/SDCCsymt.h: removed RESULT_CHECK
3271         * src/SDCCast.c,
3272         * src/SDCCglue.c,
3273         * src/SDCCval.c,
3274         * src/pic/glue.c,
3275         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3276
3277 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3278
3279         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3280         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3281         configuration values no more rejected by compiler, they are assigned
3282         to configuration registers with a warning message instead,
3283         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3284         the for-loop so last conf register is emitted too,
3285         * (_pic16_initPaths): link library libsdcc.lib by default,
3286         * (_hasNativeMulFor): modified test for multiplication according to
3287         Raphael Neider's remarks. Integer multiplication is also done with
3288         support functions,
3289         * device/include/pic16/pic18fregs.h: corrected type error in while
3290         testing and including 18f6720 header file
3291
3292 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3293
3294         * src/pic16/device.h (pic16_options): removed field use_crt,
3295         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3296         until an optimization to handle single bits is added,
3297         * (pic16_loadFSR0): moved before genUnpackBits,
3298         * (genAnd): some white lines removed,
3299         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3300         leave_reset flags in pic16_options when using crt modules,
3301
3302 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3303
3304         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3305           for bugs 898889 & 979599. Also used some safer print instructions.
3306
3307 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3308
3309         * src/pic16/device.h (pic16_options_t): added field use_crt,
3310         crt_name, no_crt,
3311         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3312         catch a probable future bug,
3313         * src/pic16/gen.c: aopIdx function commented out,
3314         * (genAssign): commented out old code which used aopIdx,
3315         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3316         code, added if conditionals to take into account the --use-crt
3317         command line options,
3318         * src/pic16/main.c (pic16_optionsTable): added new command line
3319         options, --use-crt= and --no-crt,
3320         * (_pic16_linkEdit): now the proper crt object is added in the
3321         linker command line except than when --no-crt is specified,
3322         * src/pic16/pcode.c,
3323         * src/pic16/pcode.h: added some structures and functions for a new
3324         optimization scheme to compansate for instruction overhead between
3325         same iCodes, this scheme is currently under development and is not
3326         working in any way,
3327         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3328         to && operator,
3329         * device/lib/pic16/startup/crt0i.c,
3330         * device/lib/pic16/startup/crt0iz.c: added global char variable
3331         __uflags to force the generation of an idata section
3332
3333 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3334
3335         * doc/Makefile,
3336         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3337         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3338
3339 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3340
3341         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3342         Frieder) and clarified the default code optimization mode
3343
3344 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3345
3346         * src/SDCC.lex (doPragma, process_pragma),
3347         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3348         "opt_code_size", and "opt_code_balanced"
3349         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3350         regrouped options by category, added support for category headers
3351         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3352         and "--opt-code-size"
3353         * doc/sdccman.lyx: documented these new options and pragmas
3354         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3355         preference into account
3356
3357 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3358
3359         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3360           geniCodePreDec): Fixed bug 904237 by generating a warning
3361         * src/SDCCerr.h,
3362         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3363
3364 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3365
3366         * src/pic/device.c : When no max ram set validate full memory range.
3367         * src/pic/pcode.c,
3368         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3369
3370 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3371
3372         * device/lib/_gptrget.c,
3373         * device/lib/_gptrput.c: updated comment
3374         * device/lib/calloc.c,
3375         * device/lib/free.c,
3376         * device/lib/malloc.c,
3377         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3378         * src/SDCCcse.c (cseBBlock),
3379         * src/SDCCicode.c (printOperand, geniCodeArray),
3380         * src/SDCCicode.h (struct operand): fixed bug 868103
3381         * support/regression/tests/bug-868103.c: added
3382         * src/SDCCast.c (searchLitOp),
3383         * src/SDCCcse.h (struct cseDef),
3384         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3385         * src/SDCCicode.h (struct operand),
3386         * src/SDCCsymt.h (struct sym_link),
3387         * src/avr/gen.c (hasInc),
3388         * src/ds390/gen.c (hasInc),
3389         * src/hc08/gen.c (genPlusIncr, hasInc),
3390         * src/mcs51/gen.c (hasInc),
3391         * src/pic16/glue.c (pic16_printIvalChar),
3392         * src/pic16/ralloc.c (regWithIdx),
3393         * src/xa51/gen.c (hasInc) : removed warnings
3394         * src/SDCCast.c (createBlock): added comment ???
3395         * src/hc08/ralloc.c: updated comments
3396
3397 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3398
3399         * doc/sdccman.lyx: updated section on switch statements, added
3400         section about semaphore locking
3401         * doc/Makefile: added option -info for latex2html
3402         * device/lib/_gptrget.c,
3403         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3404
3405 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3406
3407         * src/pic/device.h,
3408         * src/pic/device.c,
3409         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3410          maxram is less than 0x100.
3411
3412 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3413
3414         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3415
3416 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3417
3418         * src/port.h,
3419         * src/mcs51/main.c,
3420         * src/ds390/main.c,
3421         * src/z80/main.c,
3422         * src/hc08/main.c,
3423         * src/pic/main.c,
3424         * src/pic16/main.c,
3425         * src/avr/main.c,
3426         * src/xa51/main.c
3427         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3428         a jump table is the best form for a switch statement, including
3429         automatic insertion of missing cases to make the case range
3430         continuous. Developed in collaboration with Frieder Ferlemann.
3431
3432 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3433
3434         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3435         accumulator result if it needs sign extension
3436
3437 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3438
3439         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3440
3441 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3442
3443         * device/lib/gbz80/printf.c,
3444         * device/lib/z80/printf.c: removed define for NULL
3445
3446 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3447
3448         * as/xa51/xa_link.c,
3449         * device/examples/ds390/ow390/ad26.c,
3450         * device/examples/ds390/ow390/cnt1d.c,
3451         * device/examples/ds390/ow390/counter.c,
3452         * device/examples/ds390/ow390/ds2480.h,
3453         * device/examples/ds390/ow390/ds2480ut.c,
3454         * device/examples/ds390/ow390/findtype.c,
3455         * device/examples/ds390/ow390/gethumd.c,
3456         * device/examples/ds390/ow390/owllu.c,
3457         * device/examples/ds390/ow390/ownetu.c,
3458         * device/examples/ds390/ow390/swt12.c,
3459         * device/examples/ds390/ow390/swtloop.c,
3460         * device/examples/ds390/ow390/temp.c,
3461         * device/examples/ds390/ow390/temp10.c,
3462         * device/examples/ds390/ow390/thermo21.c,
3463         * device/examples/ds390/ow390/tinilnk.c,
3464         * device/examples/ds390/ow390/tstfind.c,
3465         * device/examples/serialcomm/windows/serial.cpp,
3466         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3467         * device/include/reg51.h: fixed line endings for cvs
3468
3469 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3470
3471         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3472         packRegsForAccUse, packRegisters): new accumulator register
3473         packing algorithm
3474         * support/regression/ports/hc08/support.c (_putchar): suppress
3475         warning of unused variable
3476         * src/SDCCicode.c: added SWAP entry to codeTable
3477
3478 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3479
3480         * device/lib/sprintf.c: forgot to add this file before previous commit
3481
3482 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3483
3484         * src/pic16/gen.c (genPackBits): added operand right in function
3485         parameters, load result directly if p_type is POINTER (that is
3486         called by genNearPointerSet)
3487         * (genUnPackBits): added operand left in function parameters,
3488         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3489         FSR0 if accessing bitfields,
3490
3491 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3492
3493         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3494           _print_format; updated printf, sprintf, vsprintf
3495         * device/include/asm/default/features.h: corrected comment/define
3496         * device/lib/Makefile.in: added sprintf.c
3497         * device/lib/libsdcc.lib: added sprintf module
3498         * device/lib/printf_large.c,
3499         * device/lib/vprintf.c,
3500         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3501           into these 3 files
3502         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3503         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3504         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3505           hc08 test
3506         * support/regression/tests/zeropad.c: define idata as data for hc08
3507
3508 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3509
3510         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3511         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3512         labels are referenced at least once (even if a reference is not found)
3513         * src/hc08/gen.c (emitcode): set isComment flag for comments
3514         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3515         loads), rules 6a..6b (optimize jumps to return)
3516
3517 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3518
3519         * device/lib/acosf.c (acosf),
3520         * device/lib/asinf.c (asinf),
3521         * device/lib/atanf.c (atanf),
3522         * device/lib/ceilf.c (ceilf),
3523         * device/lib/cosf.c (cosf),
3524         * device/lib/coshf.c (coshf),
3525         * device/lib/cotf.c (cotf),
3526         * device/lib/fabsf.c (fabsf),
3527         * device/lib/floorf.c (floorf),
3528         * device/lib/log10f.c (log10f),
3529         * device/lib/logf.c (logf),
3530         * device/lib/sinf.c (sinf),
3531         * device/lib/sinhf.c (sinhf),
3532         * device/lib/sqrtf.c (sqrtf),
3533         * device/lib/tanf.c (tanf),
3534         * device/lib/tanhf.c (tanhf),
3535         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3536         replaced all instances of "reentrant" in the library functions
3537         defined in math.h with this macro.
3538         * support/regression/tests/float_trans.c: reenabled test for hc08
3539
3540 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3541
3542         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3543         erroneously deleted
3544
3545 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3546
3547         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3548         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3549         multi-byte volatile operands are used
3550         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3551         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3552         initialization to area GSINIT0 so that it would always precede
3553         any static initializers in GSINIT
3554         * support/regression/tests/zeropad.c: fixed idata define for hc08
3555         * support/regression/tests/bug-927659.c,
3556         * support/regression/tests/float_trans.c: disabled tests for hc08
3557         pending missing library routines
3558         * .version: increased version number to 2.4.4 - hc08 port now passes
3559         regression tests
3560
3561
3562 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3563
3564         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3565         * Makefile.common.in,
3566         * as/Makefile,
3567         * as/hc08/Makefile.in,
3568         * as/mcs51/Makefile.in,
3569         * as/z80/Makefile.in,
3570         * debugger/mcs51/Makefile.in,
3571         * device/include/Makefile.in,
3572         * device/lib/Makefile.in,
3573         * doc/Makefile,
3574         * link/Makefile,
3575         * link/z80/Makefile.in,
3576         * packihx/Makefile.in,
3577         * sim/ucsim/main_in.mk,
3578         * sim/ucsim/avr.src/Makefile.in,
3579         * sim/ucsim/doc/Makefile.in,
3580         * sim/ucsim/gui.src/serio.src/Makefile.in,
3581         * sim/ucsim/hc08.src/Makefile.in,
3582         * sim/ucsim/s51.src/Makefile.in,
3583         * sim/ucsim/xa.src/Makefile.in,
3584         * sim/ucsim/z80.src/Makefile.in,
3585         * src/Makefile.in,
3586         * support/cpp2/Makefile.in,
3587         * support/librarian/Makefile,
3588         * support/makebin/Makefile: added DESTDIR to the install path proposed
3589         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3590         * doc/sdccman.lyx: added DESTDIR documentation
3591
3592 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3593
3594         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3595         instruction for interrupt handlers, use fast returns when returning
3596         from high priority interrupts
3597
3598 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3599
3600         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3601         code generation
3602         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3603         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3604         bugs, ported much of Bernhard's code from mcs51
3605         * src/mcs51/gen.c (genSend),
3606         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3607         than one when calling a reentrant function
3608         * device/lib/_mullong.c: defined an alternate struct layout for big
3609         endian ports (hc08)
3610
3611 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3612
3613         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3614         test
3615
3616 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3617
3618         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3619         are sane and complete before asking the port its prefered parameter
3620         passing method (fixes bug #1017633)
3621         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3622         and _ret3
3623
3624 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3625
3626         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3627         problem in bitfields >= 8 bits.
3628
3629 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3630
3631         * src/SDCCsymt.c: undid changes that were not meant to be committed
3632
3633 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3634
3635         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3636
3637 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3638
3639         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3640           copied and wrong bit got inverted
3641
3642 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3643
3644         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3645         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3646         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3647         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3648         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3649         assignments to bitfields at known addresses
3650         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3651         reads from bitfields at known addresses
3652         * src/hc08/ralloc.c (packRegisters),
3653         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3654         genhc08Code): optimize pointer get values used as conditionals
3655         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3656         and branch
3657
3658 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3661         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3662         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3663         as conditionals
3664
3665 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3666
3667         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3668
3669 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3670
3671         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3672         related problems
3673
3674 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3675
3676         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3677
3678 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3679
3680         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3681         mcs51 port
3682
3683 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3684
3685         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3686
3687 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3688
3689         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3690         cases use more compact code.
3691
3692 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3693
3694         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3695
3696 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3697
3698         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3699
3700 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3701
3702         * src/SDCCsymt.h,
3703         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3704         parameter of changePointer() from symbol* to sym_link*
3705         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3706         * src/SDCCsymt.c (compareType): void* type is castable to other
3707         pointers, but not necesarily an exact match.
3708         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3709         is no longer blindly treated as an exact match.
3710         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3711
3712 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3713
3714         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3715
3716 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3717
3718         * src/pic/gen.c,
3719         * src/pic/pcode.c,
3720         * src/pic/ralloc.h,
3721         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3722
3723 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3724
3725         * src/pic/device.c,
3726         * src/pic/device.h,
3727         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3728
3729 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3730
3731         * src/mcs51/gen.c (emitcode): fixed bug #992819
3732
3733 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3734
3735         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3736           there's no need to make it worse
3737
3738 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3739
3740         * src/mcs51/ralloc.c (deassignLR),
3741         * src/ds390/ralloc.c (deassignLR),
3742         * src/hc08/ralloc.c (deassignLR),
3743         * src/z80/ralloc.c (deassignLR),
3744         * src/pic/ralloc.c (deassignLR),
3745         * src/pic16/ralloc.c (deassignLR),
3746         * src/avr/ralloc.c (deassignLR),
3747         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3748         rlivePoint): fixed another part of bug #971834
3749
3750 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3751
3752         * src/z80/main.c: enabled "critical" keyword
3753         * src/z80/mappings.i,
3754         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3755         functions (fixes bug #979646)
3756         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3757
3758 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3759
3760         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3761           such as c:\mydir.
3762
3763 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3764
3765         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3766           doesn't disable too much optimizations
3767
3768 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3769
3770         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3771
3772 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3773
3774         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3775
3776 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3777
3778         * src/pic/gen.c tidied up tabs
3779         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3780         * src/pic/main.c tidied up tabs
3781         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3782         * src/pic/pcoderegs.c tidied up tabs
3783         * src/pic/ralloc.c tidied up tabs
3784
3785 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3786
3787         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3788         to S_FIXED for pic16 port and when symbol is not in level 0,
3789         allocate for S_REGISTER storage class and pic16 port, too,
3790         * src/pic16/device.h: prototype for checkSym,
3791         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3792         * (pic16_assignConfigWordValue): test the value and the mask to
3793         validate that the value is suitable for the configuration word,
3794         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3795         collect extern declared symbols, don't emit symbol twice, check
3796         first if symbol is in publics set first,
3797         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3798         * added command line '--fstack' which enables an experimental
3799         feature for stack access, too buggy to be used yet...
3800         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3801         * (pic16_allocDirReg): when register has storage class S_REGISTER
3802         allocate in pic16_dynAccessRegs,
3803         * device/include/pic16/pic18f????.h: modified configuration word
3804         naming convention, words started as CONFIG0H but should be CONFIG1H
3805
3806 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3807
3808         * device/include/mcs51reg.h: fixed bug 970993
3809
3810 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3811
3812         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3813         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3814         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3815         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3816         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3817         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3818           error/warning numbers,
3819           added function setWarningDisabled()
3820         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3821         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3822           _memcmp.c _memmove.c calloc.c realloc.c free.c
3823         * support/regression/tests/malloc.c: added tests for new functionality
3824         * support/regression/tests/zeropad.c: added tests for truncated initializers
3825           and initialized char arrays starting with '\x0'
3826         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3827
3828 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3829
3830         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3831
3832 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3833
3834         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3835         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3836         peephole 177.e. Thanks to anonymous
3837
3838 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3839
3840         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3841         function isn't used in the source but referenced as a
3842         variable initializer then declare it as extern in .asm file
3843
3844 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * .version: increased version number to 2.4.3
3847
3848         Adding version extension according to ChangeLog CVS revision
3849         * src/Makefile.in (target all): added dependency 'version.h'
3850         * (rule version.h): added rule to create version.h from ChangeLog,
3851         * (rule dep): added dependency version.h,
3852         * src/version.awk: AWK script to create version.h
3853         * src/SDCCdwarf2.c (dwWriteModule),
3854         * src/SDCCglue.c (initialComments),
3855         * src/SDCCmain.c (printVersionInfo): modified to write after
3856         version string the version extension number,
3857         * src/SDCCutil.c: included "version.h"
3858         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3859         number,
3860         * src/SDCCutil.h: added prototype for getBuildNumber
3861
3862         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3863         includeDirsSet, too,
3864         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3865         const char [] is found in function prototype...
3866
3867         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3868         moving to WREG with source is already in WREG,
3869         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3870         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3871         * (aopForSym): stack'ed symbols are partially supported, added
3872         if-clause to support symbols in FARSPACE,
3873         * (sameRegs): added test for AOP_ACC to see if registers are same,
3874         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3875         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3876         * (pic16_popRegFromString): will not allocate a new register if it
3877         doesn't find one by name, bug may have introduced...
3878         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3879         * (genIpush): revived to use pic16 port's stack,
3880         * (genAddrOf): added incomplete case for stack'ed operand,
3881         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3882         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3883         can handle multibyte operands,
3884         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3885         * (pic16initialComments): added message for MPLAB compatibility
3886         mode enabled,
3887         * src/pic16/main.h: prototype for pic16_mplab_comp,
3888         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3889         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3890         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3891         because of increased complexity of procedure,
3892         * (_process_pragma): stack pragma changed to format 'stack pos len',
3893         emit symbol '_stack_end' to conform with gplink,
3894         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3895         to search for register,
3896         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3897         PO_GPR_REGISTER,
3898         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3899         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3900         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3901         case for PO_GPR_REGISTER,
3902         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3903         dies, the new era is ahead !...
3904         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3905         pic16_dynInternalRegs,
3906         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3907         * (pic16_allocDirReg): minor optimizations and bug fixes,
3908         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3909
3910         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3911         load stack and frame pointer with address of 'stack_end' symbol
3912
3913 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3914
3915         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3916         without source code but only variable initializers
3917
3918 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3919
3920         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3921         external are not declared as extern to reduce overhead while linking
3922
3923 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3924
3925         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3926
3927 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3928
3929         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3930           Yee Keat for the patch
3931         * src/SDCCast.c (decorateType): fixed bug #979599
3932         * src/ds390/gen.h: removed local fReturnSizeDS390
3933         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3934         * src/ds390/gen.c (genAnd, genOr, genXor),
3935         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3936
3937 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3938
3939         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3940         add relFilesSet to $3, manipulate $2 to handle linking of object
3941         files without source files in command line,
3942         * device/include/pic16 (all headers): added ID location macros,
3943         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3944         entries for ID location bytes,
3945         * (pic16_assignIdByteValue): NEW,
3946         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3947         added field dumpcalltree to pic16_options_t,
3948         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3949         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3950         emitting rFalseIfx label after check_carry label,
3951         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3952         pic16_emitDIRegs), NEW
3953         * (pic16glue): dump .calltree file when option --calltree found,
3954         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3955         * (_pic16_genAssemblerPreamble): emit ID locations after
3956         configuration registers,
3957         * (pic16_linkCmd): modifications of the link command,
3958         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3959         * (pic16_pCodeInitRegisters): don't init stack registers,
3960         * (pic16_findPrevInstruction): fixed bug,
3961         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3962         bug with immediate registers,
3963         * (buildCallTree): traces stack push and pop,
3964         * (pct2): dump also stack usage for each function,
3965         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3966         * (pic16_allocDirReg): various modifications,
3967         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3968         fixed to 1,
3969
3970 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3971
3972         * src/pic16/pcode.c: removed buggy double colon
3973
3974 2004-07-01 Borut Razem <borut.razem AT siol.net>
3975
3976         * support/scripts/sdcc.nsi: added include/pic16 to setup
3977
3978 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3979
3980         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3981         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3982         target 'clean',
3983         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3984         specific command line arguments. Also added sample lkr script
3985         for placing a variable at a specific memory bank.
3986         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3987         at a specific memory bank,
3988         * (pic16_dump_isection): fixed bug which caused string literals to
3989         be omitted when dumping idata section,
3990         * (pic16_groupRegistersInSection): added code to handle registers
3991         in specific memory banks,
3992         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3993         public, all references are renamed too,
3994         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3995         AOP_DPTR2,
3996         * (pic16_storeForReturn): added case to handle when dest is WREG,
3997         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3998         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3999         pic16_rel_udata, check to see if that register is marked as being
4000         a member of a specific memory bank,
4001         * (pic16_printIvalCharPtr): added code to add string literals either
4002         to code or the idata sections,
4003         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4004         also accept the 'udata' pragma,
4005         * src/pic16/main.h: new structure types sectName and sectSym
4006         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4007         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4008         * (pic16_findPrevInstruction): fixed, it returned nothing,
4009         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4010         instruction combinations,
4011         * (pic16_FixRegisterBanking): heavily reorganised,
4012         * (pic16_AnalyzeBanking): if generating banksel directives is
4013         disabled, then don't call FixRegisterBanking at all,
4014         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4015         completely removed,
4016         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4017
4018 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4019
4020         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4021         Phuah Yee Keat <yk.phuah AT nestac.com>
4022
4023 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4024
4025         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4026         correctly the IVT even if it is relocated to some other location
4027
4028 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4029
4030         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4031         * device/include/pic16/pic18f2220.h: NEW,
4032         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4033         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4034         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4035         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4036         nodefaultlibs, ivt_loc is the location of the interrupt vector
4037         table, and nodefaultlibs signs that default libraries should not be
4038         linked in link stage,
4039         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4040         according to --ivt-loc argument,
4041         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4042         when pragma stack is found,
4043
4044 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4045
4046         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4047         256 (range check), 257 (do while), 258.a-f (bit banging
4048         f.e. on 3-wire SPI bus)
4049
4050 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4051
4052         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4053         variables used exclusively within a loop
4054
4055 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4056
4057         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4058
4059 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/SDCClrange.c (computeClash): fixed bug #971834
4062
4063 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4064
4065         * src/mcs51/gen.c (genCmp): fixed bug #975903
4066         * src/hc08/gen.c (operandsEqu),
4067         * src/ds390/gen.c (operandsEqu),
4068         * src/z80/gen.c (operandsEqu),
4069         * src/pic/gen.c (operandsEqu),
4070         * src/pic16/gen.c (operandsEqu),
4071         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4072         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4073
4074 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4075
4076         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4077
4078 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4079
4080         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4081         default case in switch statement,
4082         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4083         to eliminate problem with initialisation of pointers, but problem
4084         still exists,
4085         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4086         * (emitStaticSegment): removed various lines emitting debug info,
4087         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4088         added processor registers for utilizing EEPROM,
4089         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4090         configurable and set 8
4091
4092 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4093
4094         * .version: increased version number to 2.4.2,
4095
4096         Cumulative patch for pic16 port
4097         * src/pic16/device.c: changed scheme to dump initial values for
4098         variables in idata segment, all print_idata* functions were removed,
4099         now the pic16_printIval* will be called,
4100         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4101         * _pic16_printPointerType, pic16_printPointerType,
4102         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4103         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4104         NEW, similar to the respective functions in SDCCglue.c,
4105         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4106         way, emitting hex bytes,
4107         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4108
4109 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4110
4111         * src/avr/ralloc.c (serialRegAssign),
4112         * src/xa51/ralloc.c (serialRegAssign),
4113         * src/pic/ralloc.c (serialRegAssign),
4114         * src/pic16/ralloc.c (serialRegAssign),
4115         * src/hc08/ralloc.c (serialRegAssign),
4116         * src/z80/ralloc.c (serialRegAssign),
4117         * src/ds390/ralloc.c (serialRegAssign),
4118         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4119
4120 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4121
4122         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4123         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4124
4125 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4126
4127         Cumulative patch for pic16 port:
4128         * src/pic16/device.h (typedef PIC16_device) modified fields for
4129         defining microcontrollers,
4130         * src/pic16/device.c: added new info for all devices in Pics16 array,
4131         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4132         to be optimised out by the pCode optimiser,
4133         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4134         specially, bug reported by G.M. Gallant,
4135         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4136         as force'd so that cannot be optimised out by pCode optimiser,
4137         * src/pic16/pcode.c,
4138         * src/pic16/pcodepeeph.c,
4139         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4140         they are disabled by default, but can be enabled explicit with
4141         command argument --denable-peeps, for testing,
4142         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4143         --pomit-ivt in COMPILE_FLAGS
4144
4145 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4146
4147         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4148           compilation on MSVC
4149
4150 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4151
4152         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4153
4154 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4155
4156         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4157         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4158
4159 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4160
4161         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4162         would only assign 0x300001 register.
4163
4164 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4165
4166         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4167         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4168
4169 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4170
4171         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4172         for ds80c400
4173         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4174         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4175         added peephole 254 (left shift), 255 (jump table)
4176
4177 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4178
4179         * device/lib/Makefile.in: removed comment line with model-pic16,
4180         * (target port-specific-objects-pic16): the libraries and objects
4181         are copied to the build directory form the device/lib/pic16/bin
4182         directory
4183
4184         Cumulative patch concerning pic16 port:
4185         * library directory has been re-organized,
4186         * added support for PIC18F1220,
4187         * added headers and library sources for chips 18f1220,18f6520,
4188         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4189
4190         * configuration registers setting has changed, now each supported
4191         device has a complete description of the registers it uses,
4192         * all initialisations are moved to idata sections, these section
4193         can be absolute or relocatable,
4194         * fixed initialisation of codespace variables,
4195         * fixed warning about PCLATU and gpsim,
4196         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4197         * (genAssign): use table reads when assigning from variables in codespace,
4198         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4199         char/int variables placed in codespace,
4200         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4201         registers set in .asm file, no need for --pomit-config-words anymore,
4202         * (pic16glue): some 8051 legacy segments are commented out
4203         (to be removed completely),
4204         * added support for alternative assembler and linker with --asm=
4205         and --link= command line arguments,
4206         * peepholes are disabled automatically in the port, no need to
4207         specify on command line,
4208         * port supports natively char/int/long multiplication, but converts
4209         all divisions to support functions,
4210         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4211         to the file set in variable $2,
4212         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4213         strings in ASCII format and not in hex,
4214         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4215         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4216         allocate proper register if iCodes aren't temporary,
4217
4218 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4219
4220         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4221
4222 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4223
4224         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4225         is commented out
4226
4227 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4228
4229         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4230         computed address is reused
4231         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4232         multi-byte bitfields
4233
4234 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4235
4236         * src/z80/gen.c: (genArrayInit): must check for pointers too
4237
4238 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4239
4240         * support/regression/tests/zeropad.c: never meant to commit the
4241           nestedstruct test: removed, added check for GCC version
4242
4243 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4244
4245         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4246         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4247         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4248           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4249           bugs 928906 and 954082 half-empty initializers
4250         * src/SDCCsymt.h,
4251         * src/SDCCsymt.c (getAllocSize): added for above fix
4252         * src/z80/gen.c (genArrayInit): fixed bug 741044
4253         * support/regression/tests/zeropad.c: added tests
4254
4255 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4256
4257         * src/pic16/device.c (pic16_dump_section): corrected bug which
4258         caused some symbols of the libraries to be misplaced
4259
4260 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4261
4262         * src/pic16/glue.c,
4263         * src/pic16/ralloc.h,
4264         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4265         to fix conflict with pic port
4266
4267 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4268
4269         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4270         externs configuration variables,
4271         * src/pic16/ralloc.h,
4272         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4273         prototype in header, commented out some debug messages
4274
4275 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4276
4277         * src/pic16/glue.c,
4278         * src/pic16/main.c,
4279         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4280         for gpasm COFF object generation. Thanks to D. Hawkins for
4281         his patch info
4282
4283 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/ds390/main.c,
4286         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4287         Brock for spotting this)
4288         * src/ds390/gen.c (genEndFunction),
4289         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4290         interrupt handler and critical. Disable push/pop optimizations when
4291         peephole optimizations disabled.
4292
4293 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4294
4295         Updated pic16 library sources and headers.
4296         * device/lib/pic16/pic18f*/ ,
4297         * device/include/pic16/*.h: modified to handle structured SFR
4298         definitions
4299
4300 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4301
4302         * src/port.h (PORT structure): added hook initPaths, now each
4303         port can declare its own default search paths,
4304         which can been seen with the --print-search-dirs option,
4305         see pic16 port for example,
4306         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4307         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4308         * (doPrintSearchDirs): NEW, replaces in a central manner the
4309         printing of search dirs which was split in set*Paths functions,
4310         * (main): added call to port->initPaths and doPrintSearchDirs,
4311         * src/avr/main.c,
4312         * src/ds390/main.c,
4313         * src/hc08/main.c,
4314         * src/izt/i186.c,
4315         * src/izt/tlcs900h.c,
4316         * src/mcs51/main.c,
4317         * src/pic/main.c,
4318         * src/pic16/main.c: modified port structures to reflect addition of
4319         initPaths hook,
4320
4321         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4322         * (pic16_dump_section): for registers in same address reserve memory once,
4323         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4324         to no_banksel,
4325         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4326         result is greater in size than right or left,
4327         * (pic16_genUMult8X8_8): there are some cases where the result can
4328         be 16 bits size, so handle these,
4329         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4330         * (pic16_outBitC): modified to emit pcodes,
4331         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4332         or not,
4333         * (genDivOneByte): implemented algorithm to divide 8-bits,
4334         * (genCmp): uncommented goto, but issues still exist,
4335         * (genAnd): fixed a bug with variables >8bits,
4336         * (genPackBits): optimization added that uses BCF/BSF to change a
4337         single bit,
4338         * (genAssign): fixed bug when assigning floating point literals,
4339         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4340         __sdcc_gsinit_startup label,
4341         * src/pic16/main.c (_pic16_init): removed search directory
4342         initialisations,
4343         * (_pic16_initPaths): NEW, used to initialise search directories,
4344         * (_hasNativeMulFor): support functions for all except char/int
4345         multiplication, and char division,
4346         * (PIC16_port struct): modified entry for native mul support,
4347         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4348         no_banksel option,
4349         * (buildCallTree): call to register_usage is ifdef'ed out,
4350
4351 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4352
4353         * device/include/string.h: applied Stas Sergeev's patch to make this
4354         header file compatible with the preprocessor -Wundef option
4355         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4356         failure (fixes bug #941458)
4357
4358 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4359
4360         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4361         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4362         that the variable, not the function, should be static
4363         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4364         to be consistent with non-literal case
4365
4366 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4367
4368         * src/SDCCast.c (isConformingBody): fixed bug #949967
4369         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4370         convilong): fixed bug #952086
4371
4372 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4373
4374         * src/SDCCmem.c (allocVariables): fixed bug #955321
4375
4376 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4377
4378         * src/hc08/main.c (_hc08_genAssemblerEnd),
4379         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4380         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4381         completely eliminated the use of a temporary file
4382         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4383         when more than one file linked
4384         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4385
4386 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4387
4388         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4389         which fixes bug #543481
4390         * support/regression/tests/bug-751703.c: fixed comments left from a
4391         cut and paste error
4392         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4393         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4394         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4395         scopes
4396         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4397         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4398         are now changed to underscores in moduleName
4399
4400 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4401
4402         * as/mcs51/lkmem.c: better fix for bug #954173
4403
4404 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4405         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4406
4407         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4408         * device/include/c8051f000.h,
4409         * device/include/c8051f120.h,
4410         * device/include/c8051f300.h,
4411         * device/include/c8051f310.h,
4412         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4413         PWM16) and detab'ed
4414
4415 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4416
4417         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4418         and mailing lists, doc'ed --no-peep-comments, removed reference
4419         to knoppix (newest version has no LyX/LaTeX), other minor changes
4420         * src/SDCCglue.c (glue): save 2 bytes stack space with
4421         option --main-return. The ljmp could probably be avoided too
4422
4423 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4424
4425         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4426
4427 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4428
4429         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4430         * src/SDCCopt.c (isLocalWithoutDef),
4431         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4432         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4433         (credit to Maarten Brock for patch #949363, on which this is based)
4434         * support/regression/tests/bug-751703.c: some test cases of extern used
4435         within inner scopes.
4436
4437 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4438
4439         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4440         SPEC_STRUCT
4441         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4442         struct definitions
4443         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4444         dwWriteLabel): fix to create valid debugger symbols even when
4445         the module name has non-alphanumeric symbols in it
4446         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4447         when a variable's allocation has been optimized away
4448
4449
4450 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4451
4452         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4453         * src/hc08/main.c,
4454         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4455         * src/mcs51/main.c,
4456         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4457         * src/ds390/main.c,
4458         * src/z80/gen.c (z80_emitDebuggerSymbol),
4459         * src/z80/main.c,
4460         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4461         * src/pic/main.c,
4462         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4463         * src/pic16/main.c,
4464         * src/avr/gen.c (avr_emitDebuggerSymbol),
4465         * src/avr/main.c,
4466         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4467         * src/xa51/main.c,
4468         * src/SDCCdebug.c (emitDebuggerSymbol),
4469         * src/SDCCdebug.h,
4470         * src/port.h: added a debugger struct to the port struct. Added a
4471         callback for defining debugger symbols
4472
4473         * src/SDCCast.c (createLabel),
4474         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4475         with isitmp = 1
4476         * src/SDCCicode.h,
4477         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4478         iCode back to the ast for the function
4479
4480         * src/hc08/ralloc.c (hc08_assignRegisters),
4481         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4482         unneeded fields from the regs struct.
4483         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4484         pushReg() & pullReg() functions instead of emitcode()
4485
4486         * src/hc08/gen.c (genLabel, genhc08Code),
4487         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4488
4489         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4490         debugger hooks
4491
4492         * src/hc08/gen.c (genEndFunction, genhc08Code),
4493         * src/hc08/gen.h,
4494         * src/mcs51/gen.c (genEndFunction, gen51Code),
4495         * src/mcs51/gen.h,
4496         * src/ds390/gen.c (genEndFunction, gen390Code),
4497         * src/ds390/gen.h,
4498         * src/z80/gen.c (genEndFunction, genZ80Code),
4499         * src/z80/gen.h,
4500         * src/z80/z80.h,
4501         * src/pic/gen.c (genEndFunction, genpic14Code),
4502         * src/pic/gen.h,
4503         * src/pic16/gen.c (genEndFunction, genpic16Code),
4504         * src/pic16/gen.h,
4505         * src/avr/gen.c (genEndFunction, genAVRCode),
4506         * src/avr/gen.h,
4507         * src/xa51/gen.c (genEndFunction, genXA51Code),
4508         * src/xa51/gen.h,
4509         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4510         specific code to cdbFile.c and out of the backend code generators
4511
4512         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4513         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4514         starting address is now 0
4515
4516         * as/hc08/asm.h,
4517         * as/hc08/m08pst.c,
4518         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4519         assembler directive for DWARF support
4520         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4521
4522         * src/src.dsp,
4523         * src/Makefile.in,
4524         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4525
4526 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4527
4528         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4529         and inappropriate peephole optimization in jump tables
4530
4531 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4532
4533         * as/hc08/m08pst.c,
4534         * src/SDCCglue.c: sdccopt works for the hc08 port now
4535
4536 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4537
4538         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4539
4540 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4541
4542         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4543
4544 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4545
4546         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4547         rules
4548         * src/SDCCmain.c,
4549         * src/SDCCglobl.h,
4550         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4551         comments from the peephole optimizer replacement rules
4552         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4553         symbols
4554         * src/SDCCcse.c (updateSpillLocation),
4555         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4556         equivalents
4557         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4558         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4559         objects far pointers
4560
4561 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4562
4563         * src/SDCCsymt.h: a missing part of my last change
4564         * src/pic/ralloc.c (regTypeNum),
4565         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4566
4567 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4568
4569         * src/SDCCicode.h,
4570         * src/SDCCicode.c (aggrToPtrDclType),
4571         * src/SDCCptropt.h,
4572         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4573         ptrPseudoSymConvert),
4574         * src/pic/ralloc.c (regTypeNum),
4575         * src/pic16/ralloc.c (regTypeNum),
4576         * src/hc08/ralloc.c (regTypeNum),
4577         * src/ds390/ralloc.c (regTypeNum),
4578         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4579         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4580
4581 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4582
4583         * link/z80/lkmain.c (afile),
4584         * as/hc08/lkmain.c (afile),
4585         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4586         prevent a pointer problem when a filename has no directory and
4587         no extension specified.
4588
4589 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4590
4591         * link/z80/lkmain.c (afile): allow periods in directory names
4592         * link/z80/lkmain.c (afile),
4593         * as/mcs51/lkmain.c (afile),
4594         * as/hc08/lkmain.c (afile): allow linker script file to have an
4595         extension other than ".lnk"
4596         * link/z80/lklex.c (getfid),
4597         * link/z80/lkmain.c (parse),
4598         * as/mcs51/lklex.c (getfid),
4599         * as/mcs51/lkmain.c (parse),
4600         * as/hc08/lklex.c (getfid),
4601         * as/hc08/lkmain.c (parse): Support comments in the linker script
4602         file on lines by themselves and after filenames
4603
4604 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4605
4606         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4607
4608 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4609
4610         * src/z80/peeph-z80.def: removed some peephole rules that don't
4611         work with multibyte arithmetic (fixed bug #937126)
4612         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4613         to registers and not global variables
4614         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4615         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4616         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4617         checking for assignments not internally generated (fixed bug #931895)
4618         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4619         structure member (fixed bug #930072)
4620
4621 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4622
4623         * src/SDCCmain.c (linkEdit),
4624         * src/hc08/main.c (_hc08_parseOptions),
4625         * as/hc08/Makefile.in,
4626         * as/hc08/aslink.h,
4627         * as/hc08/asm.h,
4628         * as/hc08/m08pst.c,
4629         * as/hc08/lkrloc.c (relr, rele),
4630         * as/hc08/lkarea.c (lnkarea)
4631         * as/hc08/lkmain.c (afile, parse),
4632         * as/hc08/lkelf.c: support for ELF output
4633         * as/hc08/lks19.c (s19),
4634         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4635
4636 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4637
4638         * as/mcs51/lkihx.c: Fixed bug #899105.
4639
4640 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4641
4642         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4643         .dsp files from Unix to DOS.
4644
4645 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4648         function pointers; we have been compliant for several months now.
4649         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4650         change that was accidently commented out
4651         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4652         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4653         bug #922319
4654
4655 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/hc08/gen.c: output of all of the internal debugging information
4658         is now controlled by the D() macro; it is disabled by default
4659
4660 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4663         harder to keep the same registers during a CAST iCode
4664         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4665         long via int can be done in a single cast, if the signedness is
4666         correct.
4667         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4668         putchar() in tinibios.c in ds390's library
4669
4670 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4671
4672         * src/SDCCast.c (decorateType): fixed bug #898889,
4673         cast result of a literal complement too
4674         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4675         fixed check for bitfields
4676
4677 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4678
4679         * src/SDCCicode.c (geniCodeLogic): made it static,
4680         (geniCodeLogicAndOr): added in order to fix bug #905492,
4681         (ast2iCode): fixed bug #905492
4682         * support/regression/tests/bug-905492.c: added
4683         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4684         (processParms): fixed bug #927659: don't copy parms, this will clear
4685         decorated flag
4686         * support/regression/tests/bug-927659.c: added
4687
4688 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4689
4690         * src/SDCCast.c (addCast): don't cast float to char
4691         * device/lib/libsdcc.lib: added _memmove
4692
4693 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4694
4695         * device/lib/large/Makefile: fixed parallel execution by
4696         replacing `make` by `$(MAKE)`
4697
4698 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4701         offsets (fixes bug #923936)
4702
4703 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * device/lib/small/Makefile: fixed parallel execution by
4706         replacing `make` by `$(MAKE)`
4707
4708 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4709
4710         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4711
4712 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4713
4714         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4715         * src/regression/Makefile: Regression test was not running.
4716
4717 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4718
4719         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4720         complement if possible
4721         * src/SDCCval.c (valComplement),
4722         * src/SDCCicode.c (operandOperation): fixed complement of literal
4723         * support/regression/tests/onebyte.c (testComplement): added
4724
4725 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4726
4727         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4728         return an optimized tree; actually replace actParm with the new tree
4729         * src/SDCCast.h: added some parantheses to remove side effects
4730         * support/regression/tests/bug-920866.c
4731
4732 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4733         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4734         Bit operands were not being handled properly in the pic14 port.
4735         (now src/regression/add.c passes again).
4736
4737 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4738
4739         * src/SDCC.y (labeled_statement): case and default no longer require
4740         a following statement (RFE #893037)
4741
4742 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4743
4744         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4745         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4746         disabled (fixes bug #916294)
4747         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4748         "mov a,acc"; patch provided by Lenny Story
4749         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4750
4751 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4752
4753         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4754         functions
4755         * src/ds390/gen.c (genFunction, genEndFunction),
4756         * src/ds390/ralloc.c (ds390_assignRegisters),
4757         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4758         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4759         pushed if there are parameters passed on the stack. Also, a cleaner
4760         way to decide if r0/r1 should be pushed/popped. (Together they fix
4761         bug #918693)
4762
4763 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4764
4765         * doc/sdccman.lyx,
4766         * device/lib/mcs51/crtpagesfr.asm,
4767         * device/lib/mcs51/crtxinit.asm,
4768         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4769         to avoid confusion with Si Lab's SFRPAGE register.
4770
4771 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4772
4773         * src/SDCCglue.c (emitMaps): allow public sfr variables
4774         * src/SDCCglue.c (initialComments): include compiler build date
4775         with compiler version and put the timestamp of the generated
4776         assembly file on a serperate line to be less confusing.
4777         * src/port.h: added genInitStartup hook
4778         * src/avr/main.c,
4779         * src/ds390/main.c,
4780         * src/hc08/main.c,
4781         * src/pic/main.c,
4782         * src/pic16/main.c,
4783         * src/xa51/main.c,
4784         * src/z80/main.c: genInitStartup initialize as NULL (default to
4785         historical behaviour)
4786         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4787         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4788         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4789         library instead of hard coding it into the compiler.
4790         * support/regression/ports/mcs51-stack-auto/spec.mk,
4791         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4792         * device/lib/mcs51/Makefile,
4793         * device/lib/small/Makefile,
4794         * device/lib/large/Makefile,
4795         * device/lib/mcs51/crtpagesfr.asm,
4796         * device/lib/mcs51/crtstart.asm,
4797         * device/lib/mcs51/crtxclear.asm,
4798         * device/lib/mcs51/crtxinit.asm,
4799         * device/lib/mcs51/crtclear.asm,
4800         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4801         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4802         and into user configurable files.
4803         * device/lib/clean.mk: clean mcs51 directory too
4804         * support/regression/tests/longlit.c: added static to T1 declaration
4805         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4806         accesses in the initialization code
4807
4808 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4809
4810         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4811         OSCTRIMVAL as noted in bug #916008
4812
4813 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4814
4815         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4816         in loops with multiple exits (reported as incorrect registers
4817         used by Martin Helmling in Sdcc-user list)
4818
4819 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4820
4821         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4822         made ds390 register extensions look less like error messages
4823
4824 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4825
4826         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4827         reported by Adam Wozniak in Sdcc-user list
4828
4829 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4830
4831         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4832         arithmetic optimizations, added debug output
4833
4834 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4835
4836         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4837         * sdcc.spec: updated and split sdcc into 3 rpms
4838         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4839         needed for literals of LEFT_OP and '+'
4840         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4841         introduced RESULT_TYPE_NOPROM
4842         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4843         left shift
4844         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4845         limited promotion to int only for '*'
4846         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4847
4848 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4849
4850         * src/pic16/gen.c (genSkip),
4851         (genc16bit2lit), (gencjneshort): commented out
4852         (is_LitOp): new helper function, checks operand type
4853         (genCmpEq): rewritten
4854
4855 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4856
4857         * support/regression/tests/bug-908454.c: added
4858
4859 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4860
4861         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4862         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4863         (geniCodeCast): cosmetic, don't preserve bit storage class
4864         (geniCodeLeftShift): added promotion
4865         (geniCodeLogic): fixed regression
4866         * src/SDCCsymt.c (computeTypeOr): accept bits too
4867         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4868
4869 2004-03-07  Borut Razem <borut.razem AT siol.net>
4870
4871         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4872
4873 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4874
4875         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4876         version of pic16_genPackRegisters which does not check if ic is a
4877         CAST operator,
4878         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4879         function cause string1.c regression test fails
4880
4881 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4882
4883         * sim/ucsim/configure.in,
4884         * sim/ucsim/configure,
4885         * sim/ucsim/doc/Makefile.in: use docdir
4886         * src/SDCC.y: fixed sbit atrributes
4887         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4888         * src/SDCCast.c (decorateType): |^& need special promotion handling
4889         * src/SDCCast.h,
4890         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4891         * src/SDCCsymt.h (computeType),
4892         * src/SDCCicode.c: computeType() needs op
4893         * src/SDCCsymt.c (checkTypeSanity),
4894         * doc/sddman.lyx: "plain" bitfields are unsigned
4895         * src/SDCCsymt.c (computeTypeOr): added
4896         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4897         |^& ops
4898         * src/SDCCval.c (val*): computeType() needs op
4899         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4900         * support/regression/tests/onebyte.c: added tests for |^&
4901
4902 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4903
4904         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4905         for writing icode into asm output.
4906
4907 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4908
4909         * src/pic16/device.c: added some debug lines enabled
4910         with macro DEBUG_CHECK,
4911         * src/pic16/genarith.c: more debug in genPlus,
4912         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4913         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4914         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4915         * (aopForSym): onStack symbols are re-placed in data memspace,
4916         and onStack flag is cleared,
4917         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4918         copy temporary pcodeop,
4919         * (genPcall): added warning for not updating PCLATU,
4920         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4921         always true for pic16 port,
4922         * (genMultOneWord): NEW, supports integer multiplication,
4923         * (genMult): modified to call genMultOneWord,
4924         * (ifxForOp): added warning when return NULL,
4925         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4926         flag is set before call to operandFromSymbol for implicit
4927         added structures,
4928         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4929         options.intlong_rent are set by default,
4930         * (_hasNativeMulFor): modified to allow port generation of integer
4931         multiplication,
4932         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4933         set regtype to REG_SFR for all registers, restricting seting the
4934         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4935
4936 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4937
4938         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4939         more than 500 times in the regression tests
4940
4941 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4942
4943         * support/Util/SDCCerr.h,
4944         * support/Util/SDCCerr.c,
4945         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4946         enumerator_list),
4947         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4948         for symbol conflicts.
4949         * support/valdiags/tests/enum.c,
4950         * support/valdiags/tests/tentdecl.c,
4951         * support/valdiags/tests/struct.c: expect possible error messages
4952         referring to original symbol definitions.
4953         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4954         * src/SDCCsymt.h,
4955         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4956
4957 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4958
4959         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4960
4961 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4962
4963         * src/pic16/ralloc.c (newReg): fixed bug #908929
4964
4965 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4966
4967         * src/ds390/gen.c: added missing #include "main.h"
4968
4969 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4970
4971         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4972         checking if symbol is already in set,
4973         * src/pic16/device.h: prototype for checkAddSym,
4974         * src/pic16/gen.c: (_G): added entry interruptvector,
4975         * (assignResultValue): removed some commented out lines,
4976         * (genFunction): check for ISR via sym->type, absolute section for
4977         interrupt code is created via a new pBlock, the goto instruction is
4978         placed now correctly at the interrupt vector position, changed all
4979         references from ivec to _G.interruptvector,
4980         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4981         is the interrupt is a high priority one, same for return from ISR,
4982         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4983         externs to calls of checkAddSym,
4984         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4985         pic16_pcode_verbose flag is set,
4986         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4987         * src/pic16/pcoderegs.c: message about how many registers are saved
4988         will only be emitted if pic16_pcode_verbose flag is set,
4989
4990 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4991
4992         * src/ds390/ralloc.h,
4993         * src/ds390/ralloc.c (ds390_regWithIdx),
4994         * src/ds390/gen.c (emitcode),
4995         * src/ds390/main.h,
4996         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4997         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4998         ds390operandCompare, getRegsRead, getRegsWritten,
4999         initializeAsmLineNode): customized instruction size calculation for
5000         ds390, started basis for some register optimizations
5001         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5002         corresponding assembly output
5003         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5004         missing push/pop of r0/r1. Optimized push/pops
5005
5006 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5007
5008         * src/mcs51/main.c (instructionSize): fixed ACALL size
5009         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5010
5011 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5012
5013         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5014         the sorting of rlist with NULL elements
5015         * (print_idataType, print_idata): NEW to create idata sections
5016         * src/pic16/device.h: idataSymSet new variable
5017         * src/pic16/gen.c (genFunction): fixed some bugs in string
5018         comparing, improved the absolute section creation for ISRs,
5019         added FSR0L/FSR0H in registers that are saved in an ISR,
5020         * (genInline): fixed the processing of inline snippets,
5021         now they undergo no process by the peephole optimizer
5022         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5023         are placed in idataSymSet,
5024         * (pic16emitStaticSeg): extern symbols are added in externs,
5025         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5026         switching when aboslute variables are placed in access bank memory
5027         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5028         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5029         commented out with #if,
5030         * (pic16_packRegisters): reintroduce the check for CAST because some
5031         symbols are not correctly handled,
5032         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5033         pCodeInstruction instead of pCode,
5034         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5035         pCodeAsmDir definition,
5036         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5037         directive, then the argument directive is emitted without the leading
5038         tab, hack for inline labels which must be in the first column,
5039         * (compareLabel,pic16_findNextInstruction),
5040         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5041         * (insertBankSwitch): modified for the new pCodeAsmDir,
5042
5043 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5044         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5045
5046         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5047         instance,
5048         * (pushSide): commented out with #if,
5049         * (assignResultValue): fixed some typos in saving
5050         registers,
5051         * (genPcall): FIXED and sync'ed with genCall,
5052         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5053         * (genNearPointerGet): fixed to handle some more cases,
5054         implementation scheme via table reads,
5055         * (genConstPointerGet): modified to access code memory correct,
5056         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5057         and improved to handle some cases
5058         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5059         instead of "RETLW" for init data
5060         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5061         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5062         variables are placed in access bank memory (<0x80 and >=0xf80),
5063         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5064         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5065         TBLWT_POSTDEC,TBLWT_PREINC
5066         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5067         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5068         directives
5069         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5070         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5071         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5072         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5073
5074 2004-02-29  Borut Razem <borut.razem AT siol.net>
5075
5076         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5077         support/Util/findme.h, support/Util/system.h: enhance binary relative
5078         search for lib and include by using findProgramPath()
5079
5080 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5081
5082         * src/SDCCpeeph.h,
5083         * src/SDCCpeeph.c (pcDistance),
5084         * src/port.h,
5085         * src/mcs51/ralloc.h,
5086         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5087         * src/mcs51/main.h,
5088         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5089         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5090         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5091         size calculation port specific, started basis for some register
5092         optimizations
5093         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5094         missing push/pop of r0/r1. Optimized push/pops
5095         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5096         * device/lib/_modsint.c (_modsint),
5097         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5098         and stack version so regression tests pass
5099
5100 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5101
5102         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5103         * src/SDCCast.c (decorateType): catch another small optimization
5104         with '?' operator
5105         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5106         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5107         modified to finally use computeType() all over SDCC,
5108         see Feature Request #877103
5109         * src/SDCCval.h: cosmetic
5110         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5111         valCompare(); regression tested in muldiv.c
5112         * support/regression/tests/muldiv.c (testMod): mod sign follows
5113         dividend only
5114
5115 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5116
5117         * src/SDCCast.c (decorateType): fixed bug #902362
5118         * doc/INSTALL.txt: fixed install instructions for win32
5119
5120 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5121
5122         * device/include/Makefile.in (install): fixed by replacing spaces
5123         by tabs
5124         * doc/README.txt,
5125         * doc/INSTALL.txt: updated for release
5126         * doc/sdccman.lyx: added warning for --xstack being buggy
5127
5128 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5129
5130         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5131         to eliminate build warnings.
5132         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5133
5134 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5135            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5136
5137         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5138         removed -penable-stack, added comment for stack pragma, added
5139         warning for not initializing the stack/frame registers, removed
5140         comment at interrupts section
5141
5142         Stack is made permanent, there is no ability to disable stack usage.
5143         * src/pic16/device.h,
5144         * src/pic16/device.c: removed all references to USE_STACK macro,
5145         * src/pic16/device.c (pic16_dump_section): when no elements in
5146         rlist, free rlist before return,
5147         * (pic16_dump_int_registers): NEW, internal registers are a new set
5148         of general purpose registers reused by each function,
5149         * (checkAddReg): returns 1 if registers is added to set,
5150         * (pic16_groupRegistersInSection): when a registers is of type
5151         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5152         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5153         SRCASECMP macro is moved here from device.c
5154         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5155         PO_PCLATU, PO_PRODL, PO_PRODH,
5156         * (pic16_pCodeOpType, genMinus,
5157         changed compares to "a" register, with AOP_ACC,
5158         * (pic16_genPlus): fixed some bugs and indented properly,
5159         * (pic16_addSign): changed size to size+offset in the MOVWF
5160         instruction,
5161         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5162         multiply 8-bit operand by literal, result is 8-bit,
5163         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5164         multiply 2 8-bit operand, result is 8-bit,
5165         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5166         genUMult8X*_16,
5167         * src/pic16/gen.c: changed accUse to contain WREG only,
5168         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5169         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5170         true, do not use immediate addressing any more unless sym is a
5171         pointer in codespace,
5172         * (aopForRemat): do not use immediate addressing when symbol not in
5173         codespace and when symbol's address is requested,
5174         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5175         accUse size (= 1),
5176         * (aopGet): added case for AOP_ACC and don't return "accumulator
5177         bug" but WREG instead,
5178         * (popGetTempReg): pushes contents of temporary register in stack,
5179         * (popReleaseTempReg): pops contents of temporary register from
5180         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5181         * (pic16_popGet): separated case AOP_ACC to return register WREG
5182         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5183         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5184         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5185         the use of immediate pointers to certain cases only.
5186
5187         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5188         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5189         * (assignResultValue, genCall, genRet): modified to use the new
5190         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5191         genPcall is still broken,
5192         * (genFunction): added code to create 'A' type pBlocks when
5193         interrupt functions are generated, code not extensively tested yet,
5194         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5195         * (genEndFunction): modified so ISRs pop stored registers from stack,
5196         * (genMultOneByte): cleanup,
5197         * (AccRsh): added flag andmask, to and result with appropriate mask,
5198         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5199         * (genDataPointerGet): fixed and reenabled its use,
5200         * (genNearDataPointerGet): bugs fixed,
5201         * (genDataPointerSet): bugs fixed,
5202         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5203         pic16_DumpSymbol, pic16_DumpOp,
5204         * src/pic16/genutils.h: function prototypes for the above functions,
5205         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5206         pointers,
5207         * (pic16emitRegularMap): many many many improvements, but needs a
5208         major cleanup,
5209         * src/pic16/main.c: enable_stack in pic16_options is removed,
5210         * (_pic16_parseOptions): removed command line options -penable-stack,
5211         * (_process_pragma): emit stack symbol only when stack pragma is
5212         processed,
5213         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5214         redirected to FSR0L/FSR0H pair,
5215         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5216         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5217         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5218         for immediates,
5219         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5220         * (dumpPicOptype): NEW,
5221         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5222         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5223         with movff instruction,
5224         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5225         added pic16_int_regs, some packRegsFor* functions are commented out,
5226         because produce errors,
5227         * src/pic16/NOTES: minor modifications
5228
5229 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5230
5231         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5232         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5233         --pack-iram.
5234         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5235         * as/mcs51/lkaomf51.c: fixed bug #895763
5236
5237 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5238
5239         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5240
5241 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * doc/sdccman.lyx: added details about the HC08 storage classes and
5244         interrupts, fixed the register usage info for z80 & gbz80
5245
5246 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5247
5248         * doc/sdccman.lyx: added more pic16 port documentation
5249         * device/include/pic16/: added header pic18fregs.h
5250
5251 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5252
5253         * doc/sdccman.lyx: added Vangelis' contribution
5254
5255 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5256
5257         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5258         extend to the next CALL or PCALL, not just to the next CALL.
5259
5260 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5261
5262         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5263
5264 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5265
5266         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5267         bug #895752 and a better fix for bug #716790
5268
5269 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5272
5273 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5274
5275         * doc/sdccman.lyx: minor changes, minor changed
5276
5277 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5278
5279         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5280         which can't handle SDCC_NEWONEBYTEOPS,
5281         (geniCodeMultiply): removed conversion from mult to shift for pic14
5282         and pic16
5283
5284 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5285
5286         * src/hc08/gen.h,
5287         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5288         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5289         thus fixing bug #895406
5290
5291 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5292
5293         * device/lib/_modsint.c,
5294         * device/lib/_modslong.c: sign follows divisor only
5295         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5296         signs or signedness can be ignored
5297         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5298         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5299         added optimization for IFX,
5300         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5301         arguments;
5302         reenabled optimization for IFX, which was removed on 2004-01-11
5303         * src/SDCCast.h: added return type IFX
5304         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5305         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5306         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5307         SDCC_OLDONEBYTEOPS selects the old behaviour
5308         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5309         changed again and commented promotion rule
5310         * src/SDCCval.c (valDiv): promotion no longer necessary
5311         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5312         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5313         rewritten
5314         * support/regression/tests/onebyte.c: added
5315
5316 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5317
5318         * gen.c (genInline): reverted to old code for assemnling inline
5319         code because of bug reported James Chadd
5320
5321 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5322
5323         * ralloc.h: missing declarations from previous patch,
5324         seems that patch for ralloc.h was never applied, fixed
5325
5326 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5327            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5328
5329         * pcode.c,
5330         * pcode.h,
5331         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5332         indirect addressing. Marked FSR0 as deprecated
5333         * gen.c (pointerCode): commented out, not needed now
5334         (pic16_popGet2p): new MOVFF helper function
5335         (genGenPointerGet),
5336         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5337         (shiftRLong): removed duplicate debugging info
5338
5339 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5340
5341         * src/ds390/gen.c (genNearPointerGet),
5342         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5343         optimization with bits, but not bitfields.
5344         * src/ds390/ralloc.c (packRegisters),
5345         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5346
5347 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5348
5349         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5350
5351 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5352
5353         * src/SDCCsymt.h,
5354         * src/SDCCicode.c (operandFromSymbol),
5355         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5356         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5357         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5358         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5359         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5360         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5361         bug #892038
5362         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5363         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5364         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5365         * src/SDCCsymt.c (newSymbol),
5366         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5367         enumerator_list),
5368         * src/SDCCval.h,
5369         * src/SDCCval.c (newiList): fixed bug #885705
5370
5371 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5372
5373         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5374         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5375
5376 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5377
5378         * device/include/c8051f120.h,
5379         * device/include/c8051f300.h,
5380         * device/include/c8051f310.h: added/updated header files for Silicon
5381         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5382         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5383         in new section Submitting patches
5384
5385 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5386
5387         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5388         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5389         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5390         genGenPointerSet),
5391         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5392         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5393         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5394         genGenPointerSet),
5395         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5396         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5397         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5398         genGenPointerSet),
5399         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5400         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5401         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5402         genGenPointerSet): fixed bug #892400
5403         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5404         to eliminate build warnings.
5405         * src/SDCCast.c (processParms),
5406         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5407         fixed bug 751859
5408         * support/valdiag/valdiag.py: added GCC to the list of defines active
5409         when compiling with gcc
5410
5411 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * support/Util/SDCCerr.h,
5414         * support/Util/SDCCerr.c,
5415         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5416         with an incomplete type (fixed bug #883734)
5417         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5418
5419 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5420
5421         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5422
5423 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/SDCCast.c (decorateType),
5426         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5427         function pointer implementation
5428         * support/regression/tests/funptrs.c: added tests to verify both forms
5429         of function pointers work correctly. Added tests to verify parameters
5430         are passed in the correct order.
5431
5432 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5433
5434         * device.c (regCompare): registers are sorted by ascending
5435         address and increasing size,
5436         * main.c (_pic16_finaliseOptions): removed the declaration
5437         of compiler macro MCU. Now a macro of the format pic18fxxxx
5438         will be defined from the command line
5439
5440 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5441             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5444         PCOP_RLCF was overwritten!
5445         * gen.c (genSkip): commented out calls to pic16_emitcode,
5446         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5447         * (genlshTwo),
5448         * (genRRC): added debugging info,
5449         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5450         overwritten while shifting,
5451         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5452         overwritten while shifting,
5453         * (AccLsh),
5454         * (AccRsh),
5455         * (shiftLLeftOrResult),
5456         * (shiftRLeftOrResult),
5457         * (shiftRLong),
5458         * (shiftLLong): Implemented with pic16_emitpcode
5459         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5460         * (genLeftShift): Fixed bug, operand for shift by variable always
5461         was "and"ed with 0x0f,
5462         * (genLeftShiftLiteral),
5463         * (genrshTwo),
5464         * (genRightShiftLiteral): added debugging info,
5465         * (genrshFour): added comment,
5466         * (genRightShift): determined signedness from operand "left"
5467         instead of "result"
5468
5469 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5470
5471         * src/SDCCicode.c (geniCodeParms),
5472         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5473         function pointers, fixed function pointer bugs #861242 and #861896
5474
5475 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5476
5477         * device/include/c8051f000.h,
5478         * device/include/c8051f120.h,
5479         * device/include/c8051f300.h: added header files for Silicon
5480         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5481
5482 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5483
5484         * src/SDCCast.c (processParams): added new type flow and restructured
5485         (gatherAutoInit): added new type flow
5486         (addCast): cosmetic changes
5487         (getLeftResultType): added new type flow for array indices, patch
5488         provided by Stas, see FR #877103
5489         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5490         array index patch by Stas
5491         * src/SDCCast.h: added prototype getResultTypeFromType()
5492         * src/SDCCval.h,
5493         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5494         * src/pic/glue.c (pic14emitStaticSeg),
5495         * src/pic16/glue.c (pic16emitStaticSeg),
5496         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5497         for initialization of symbols
5498         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5499         * support/Util/SDCCerr.h:
5500         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5501         * .version: bumped version number to 2.3.8
5502         * device/include/Makefile.in (install),
5503         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5504         avoid warnings
5505
5506 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5507
5508         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5509         Slade Rich fixed an optimization bug
5510         * src/pic/pcodepeep.c,
5511         * src/pic/pcoderegs.c
5512         * doc/Makefile (install): added test for directory
5513
5514 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5515
5516         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5517         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5518         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5519         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5520         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5521         * as/mcs51/asexpr.c (term),
5522         * as/hc08/asexpr.c (term): fixed bug #887146
5523
5524 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5525
5526         * src/z80/gen.c (genMult): handle single byte result product
5527         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5528         DUMMY_READ_VOLATILE (fixed bug #886367)
5529
5530 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5531
5532         * support/regression/tests/libmullong.c: fixed logic, on little endian
5533         hosts we ended without a mullong_wrapper()
5534
5535 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5536
5537         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5538         virus/worm forged address usage.
5539
5540 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5541
5542         Fixed promotion, it should be done on AST level:
5543         * src/SDCCast.c (addCast): added promotion to int
5544         (decorateType): updated call to upCast()
5545         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5546         usualUnaryConversions()
5547
5548 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5549
5550         * support/regression/tests/literalop.c (mulWrapper): Added a
5551         wrapper to remove integer overflow warnings.
5552
5553         * support/regression/tests/float_trans.c: Made work on host.
5554
5555         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5556         location of sz80.
5557
5558         * support/regression/generate-cases.py (main): Changed from inline
5559         to a main method.
5560
5561         * doc/Makefile (install): Changed to depth first to get rid of
5562         missing directory install warning.
5563
5564         * as/Makefile (install-doc): Made work on Mac.
5565
5566 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5567
5568         * src/SDCCast.c: added an additional type flow in decorateType() of
5569         opposite direction, see feature request #860006; it's enabled at runtime
5570         by setting the environment variable SDCC_NEWTYPEFLOW
5571         * src/SDCCast.h: changed prototype of decorateType()
5572         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5573         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5574         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5575         see feature request #877103
5576         * src/SDCCval.c: updated call of decorateType()
5577         (valBitwise): fixed bug #882876
5578         (valMinus): added promotion
5579         (valLogicAndOr): result is unsigned
5580         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5581         * src/SDCCsymt.c (computeType),
5582         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5583         must not cause an unsigned operation
5584         * src/pic/glue (pic14emitRegularMap),
5585         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5586
5587 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5588
5589         * src/pic/pcode.c (PCodeID): commented out left over debug code
5590
5591 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5592
5593         * support/valdiag/tests/overflow.c: added shift tests
5594         * src/pic/device.c,
5595         * src/pic/gen.c,
5596         * src/pic/gen.h,
5597         * src/pic/glue.c,
5598         * src/pic/main.c,
5599         * src/pic/pcode.c,
5600         * src/pic/pcode.h,
5601         * src/pic/pcodepeep.c,
5602         * src/pic/pcoderegs.c,
5603         * src/pic/ralloc.c,
5604         * src/pic/ralloc.h: applied patch from Slade Rich;
5605         added support for multiple code pages and multiple RAM banks on the
5606         PIC 14 port. The ASM files now no longer simply assume all the
5607         code / RAM are in the same page / bank. This means the linker can
5608         safely allocate code/RAM of separate ASM files to different pages/banks.
5609         * doc/sdccman.lyx: added Slade's tips
5610         * src/mcs51/peeph.def: fixed bug #880768
5611
5612 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5613
5614         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5615         * src/SDCCast.c (decorateType): fixed bug #880197
5616
5617 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5618
5619         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5620         getopt.h.
5621
5622         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5623         strtof is not part of C89 and isn't included with Mac OS X.
5624
5625 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5626
5627         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5628         shiftL2Left2Result): fixed bug #879326
5629         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5630         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5631         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5632         address fetch for clr instruction
5633         * device/lib/hc08/_mulint.c: created optimized assembly version
5634         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5635
5636 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5637
5638         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5639         proposed in FR #877103
5640
5641 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5642
5643         * src/SDCCval.c (cheapestVal): added missing checks
5644         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5645         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5646
5647 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5648
5649         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5650         equal operands
5651
5652 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5653
5654         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5655         loaded with the linker search paths (-L arguments) and the libraries
5656         to be linked with the current source (-l arguments). Changes
5657         currently will affect only the pic16 port.
5658         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5659         include path the port specific paths and port specific libraries,
5660         * gplink command now contains the $3 argument,
5661         * src/pic16/device.h,
5662         * src/pic16/device.c,: structure PIC_device is made public and
5663         renamed to PIC16_device, the same for variable Pics which is renamed
5664         to Pics16. Updated all references to them.
5665         * src/pic16/glue.c (pic16glue): corrected bug with code
5666         initialization which bypassed the variable initializations block.
5667
5668         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5669         COMPILE_FLAGS and added the --nostdinc option
5670
5671 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5672
5673         * device/include/mc68hc908jb8.h: Register defs for another member
5674         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5675
5676 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5677
5678         Documenting changes from previous commits.
5679         * configure.in (version 1.56),
5680         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5681         when generating output files to configure the pic16 library,
5682         but now I've commented it out, since gputils aren't installed in the
5683         SF compile farm, so library won't compile
5684
5685         * device/lib/Makefile.in (version 1.56): initially I've added in
5686         target 'all' the prerequestive 'model-pic16' so it compiled the
5687         pic16 library, but now I've commented it out for the same reasons
5688         above,
5689         * added targets 'model-pic16' and 'objects-pic16' to compile the
5690         library
5691         * added target 'port-specific-objects-pic16' to handle the
5692         generated libraries and copy them into the build/ directory
5693         * added target 'clean-intermediate-pic16' to clean intermediate
5694         files into pic16 directory
5695         * in target 'installdirs' added line to create directory pic16 in
5696         the installation path
5697
5698         * device/include/Makefile.in (version 1.11): in target 'install'
5699         added lines to copy all header files to installation path,
5700         * in target 'installdirs' added line create directory for pic16
5701         headers in the installation path
5702
5703 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5704
5705         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5706          a function call
5707
5708 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5709
5710         * configure,
5711         * device/lib/configure.in,
5712         * device/lib/configure: fixed for autoconf 2.57
5713
5714 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5715
5716         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5717         option so that it actually works. Made it specific to the z80, since
5718         the gbz80 doesn't have these kinds of I/O ports.
5719
5720 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * device/include/z180.h,
5723         * device/lib/_memcpy.c,
5724         * device/lib/_memmove.c,
5725         * device/lib/_mulint.c,
5726         * device/lib/ser_ir.c,
5727         * device/lib/ser_ir_cts_rts.c,
5728         * device/lib/_strcmp.c,
5729         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5730         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5731         portmode; added deprecation warning for bank= and protmode= forms.
5732         Also, guard against buffer overflow.
5733         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5734
5735 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5736
5737         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5738         changed interrupt vector table generation to only emit declared vectors.
5739         * device/include/Makefile.in: added missing backslash
5740         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5741
5742 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5743
5744         Mainly changes to support compilation of the device libraries
5745         * src/pic16/device.c: stack is allocated via symbol and not
5746         via literal number. The symbol is placed in the corresponding
5747         position of the data ram
5748         * (pic16_dump_section): relocatable and absolute uninitialized
5749         data are now emitted in sorted order to reduce section naming,
5750         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5751         weren't marked as being in the access bank,
5752
5753 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5754
5755         Added portion of GNU PIC Library under the directory
5756         device/include/pic16 and device/lib/pic16. These files
5757         contain the declarations of SFRs for the PIC18Fxx2 devices.
5758         The directory is initialized via configure from toplevel.
5759
5760 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5761
5762         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5763         the spilllocations to be compared correctly
5764
5765 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5766
5767         * src/SDCCast.c (decorateType): fixed bug introduced today
5768
5769 2004-01-12  Borut Razem <borut.razem AT siol.net>
5770
5771         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5772         doc/sdccman.lyx: upper case pragmas are deprecated
5773
5774 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5775
5776         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5777         in simpler and even better code
5778
5779 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5780
5781         * src/SDCCicode.c (operandOperation): fixed bug #874819
5782         * src/SDCCast.c (decorateType): fixed
5783         char foo (unsigned long ul) { return ul > 0; }
5784
5785 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5786
5787         * doc/sdccman.lyx: Moved and added some sections, small changes
5788         all over. Telling LaTeX to be less strict with word spacing
5789         to better keep the right margin. Changed some notes about
5790         maintainance of the ports in section 3.2.1 - is it OK like this?
5791
5792 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5793
5794         SDCC source changes:
5795         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5796         convilong): modified to inform the pic16 port that builtin functions
5797         are external
5798
5799         PIC16 PORT specific changes:
5800         * src/pic16/device.c pic16_dump_equates() added,
5801         processor registers declared internally by the port are emitted in
5802         the translation as equates,
5803         * src/pic16/gen.c: inline code is passed unprocessed to the
5804         translation,
5805         * (pic16_popGetLit2): fnuction modified to take second operand as
5806         pCodeOp pointer and not as literal,
5807         * (popRegFromIdx): prefixed with pic16_,
5808         * (pic16_popCombine2): modified to receive already allocated pCode
5809         operands,
5810         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5811         * (genFunction): initializes local stack frame and pushes on stack
5812         all the registers used by this function,
5813         * (genEndFunction): restores all registers from stack and restores
5814         stack frame,
5815         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5816         improvements,
5817         * (pic16glue): changed the program startup sequence,
5818         * added new dbName code 'A' for functions placed in absolute section
5819         * src/pic16/main.c: added function attribute _naked,
5820         * added pragma 'code' to place a fnuction at an absolute address,
5821         * added command line arguments --debug-ralloc and --pcode-verbose,
5822         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5823         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5824         * (pic16_newpCodeOpLit2): modified to take the second operand as
5825         pCodeOp pointer,
5826         * (pic16_printpBlock): modified to emit each function in a separate
5827         section,
5828         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5829         UPPER for immediate operands,
5830         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5831         instruction,
5832         * src/pic16/peeph.def: all peepholes with movff are commented out,
5833         because there is a problem in the pcode peep optimizer,
5834         * src/pic16/ralloc.c: the register allocator can now reuse local
5835         function symbols for another function. This saves register usage.
5836         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5837
5838         Added file src/pic16/NOTES with information about program writing on
5839         the current port version.
5840
5841 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5842
5843         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5844         and peephole 252 (array access)
5845
5846 2004-01-09  Borut Razem <borut.razem AT siol.net>
5847
5848         * src/SDCCmain.c : fixed #872250: -l command line defined library
5849           files are scanned before standard library files
5850
5851 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5852
5853         * src/SDCCast.c (decorateType): fixed bug #874046
5854
5855 2004-01-09  Borut Razem <borut.razem AT siol.net>
5856
5857         * support/scripts/sdcc.nsi: remove previous installation
5858
5859 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5860
5861         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5862         bytes for last interrupt vector (mcs51)
5863         * sdcc.spec: fixed typo
5864
5865 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5868         gen51Code): more efficient parameter receive for --model-large
5869         ("bug" #845294)
5870
5871 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5872
5873         * src/ds390/main.c,
5874         * src/z80/main.c: added missed needLinkerScript flags (more than
5875         one port structure defined in these file)
5876         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5877         bug #795325
5878
5879 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5880
5881         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5882         * src/port.h: added flag needLinkerScript in port->linker
5883         structure to inform whether to create a .lnk file or not,
5884         * src/avr/main.c,
5885         * src/ds390/main.c,
5886         * src/hc08/main.c,
5887         * src/mcs51/main.c,
5888         * src/pic/main.c,
5889         * src/pic16/main.c,
5890         * src/xa51/main.c,
5891         * src/z80/main.c: changed appropriately to configure
5892         needLinkerScript flag
5893         * src/pic/gen.c,
5894         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5895         * src/pic/glue.c: added variable udata_section_name to
5896         override default uninitialized data segment definition for
5897         devices only with SHAREBANK memory (reported from Erik Epetrich)
5898         * (pic14emitOverlay): modified to emit a commented overlay segment
5899         directive when no overlay data exist
5900         * (picglue): modified to emit uninitialized data segment
5901         according to udata_section_name
5902         * src/pic/main.c (_pic14_parseOptions): added command line
5903         options --udata-section-name=[name] to override default
5904         udata definition name
5905         * modified _linkCmd and _asmCmd to include compiler passed
5906         arguments via -W option
5907         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5908         object file from '.rel' to '.o' in port->linker structure,
5909         changed size of fptr from 2 to 3 in port structure
5910
5911 2004-01-07  Borut Razem <borut.razem AT siol.net>
5912
5913         * support/scripts/sdcc.nsi: update PATH
5914         * support/scripts/sdcc.ico: craeted
5915
5916 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5917
5918         * device/include/Makefile.in: fix install
5919         * doc/Makefile: fix install
5920
5921 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5924         in bug #860505
5925         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5926         how the function variable allocation summary is displayed; also
5927         include information about variables allocated to the overlay
5928         segment
5929
5930 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5931
5932         * as/mcs51/lkmain.c: Help about -Y option
5933         * as/mcs51/lkarea.c: Fixed gcc warnings
5934
5935 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5936
5937         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5938         fixed warning
5939         * support/valdiag/tests/overflow.c: added
5940         * src/SDCCast.c (decorateType),
5941         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5942         LEFT_OP (left shift)
5943
5944 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5945
5946         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5947         (default behaviour).
5948
5949 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         A python script to validate compiler diagnostic messages. It can be
5952         used to verify that sdcc complains about bad c source code and
5953         gives a good location of the error.
5954         * support/valdiag/Makefile,
5955         * support/valdiag/valdiag.py,
5956         * support/valdiag/tests/*
5957
5958 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5961         * src/SDCCsymt.c (newEnumType),
5962         * src/SDCCsymt.h
5963         * support/Util/SDCCerr.c,
5964         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5965         enum related bugs.
5966         * support/regression/tests/enum.c: added test for enum values that
5967         require at least 2 bytes of storage.
5968
5969 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5970
5971         * src/common.h: added ifndef/define/endif macros
5972         around the header file.
5973         Bug reported from Jesus Calvino-Fraga
5974
5975 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5976
5977         * sdcc.spec: updated
5978         * device/include/Makefile.in: don't install CVS directories
5979         * device/lib/Makefile.in: added removal of CVS directories after install
5980         * doc/Makefile: fixed install, added local_icons
5981         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5982         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5983         * src/ds390/gen.c (genRightShift): fixed bug #870788
5984         * src/SDCCast.c (decorateType): fixed bug #870781
5985
5986 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         PIC16 port related changes:
5989         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5990         added variable stackPos,
5991
5992         * gen.c: genCall, assignResultValue: added support for
5993         pushing/retrieving function parameters to/from stack,
5994         genFunction,genEndFunction: setup stack frame for the
5995         generated function,
5996         genAddrOf: will be changed according to bug 863624
5997
5998         * added files genutils.c and genutils.h which contain gen*
5999         debugged and optimised functions extracted from gen.c
6000
6001         * glue.c: added variable 'externs' which holds extern symbols,
6002         pic16emitRegularMap: is modified to properly handle relocatable
6003          symbols under the new scheme,
6004         pic16createInterruptVect: is modified
6005         pic16printPublics: is modified to emit 'global' assembler directives,
6006         added pic16_printExterns to print extern symbols,
6007         pic16glue: initializes stack/frame pointer in the beginning of
6008         the assembly output. Temporary hack, will be corrected later,
6009         because gplink yet does not support stack and SDCC does not
6010         yet support a type of crt0.o object to create the final binary.
6011
6012         * Removed many lines that contain 8051 legacy code.
6013         * The code is finally placed under a 'code' directive.
6014         * Added port specific options.
6015
6016         * _process_pragma: simplified since now we do not need *special*
6017         include file to define SFR registers. But a separate header
6018         will be needed. This will be developed later.
6019         * _pic16_parseOptions: added, parses port specific options:
6020         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6021         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6022         --preplace-udata-with=
6023
6024         * _pic16_setDefaultOptions: modified to initialize section names,
6025         but hack is temporarly out of order since it needs improvement.
6026         * _pic16_genAssemblerPreamble: configuration words are emitted by
6027         their address instead of their name. This part is incomplete and
6028         supports only the 18Fxx2 devices. Other devices will emit an error
6029         during assembly since they do not contain the same set of config
6030         registers
6031         * _pic16_genIVT: is modified,
6032
6033         * pcode.c: added definitions for some hardware registers that are needed
6034         for stack support
6035         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6036         All PCI entries are updated. Now LFSR is supported.
6037         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6038         * added pic16_newpCodeOpLit2 to support instructions with
6039         two literal arguments
6040         * pic16_pCode2str: corrected code that emits assembler instructions
6041         with two literal operands and those that have an access bit modifier
6042         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6043         this fixes a bug which caused some labels to be lost, when an
6044         assembler directive was added, i.e. banksel,
6045         * pic16_FixRegisterBanking: improved logic that causes the insertion
6046         of bank switching,
6047         * InlineFunction: functions that are called once, are not any more
6048         inlined. This can be a port option in the future,
6049
6050         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6051
6052         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6053         hold the corresponding uninitialized symbols,
6054         * pic16_allocProcessorRegister: registers have explicit marked the
6055         accessBank field,
6056         * pic16_allocInternalRegister: registers are explicit marked as
6057         not used,
6058         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6059         processing list, so bit registers were lost,
6060         *
6061
6062         * ralloc.h: added field 'accessBank' and original symbol operand
6063         in register definition,
6064         * removed the field isMapped from register definition,
6065
6066         ** Several functions have been removed from various sources:
6067         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6068         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6069         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6070         pic16_assignRelocatableRegisters
6071
6072         ** others have been introduced:
6073         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6074         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6075
6076 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6077
6078         * support/scripts/inc2h.pl: changed definition of BIT_AT
6079         to emit 'sbit at' instead of 'bit at'. This was a request.
6080
6081         PIC16 port related preliminary changes:
6082         * gen.c: prefixed function popRegFromString with
6083         pic16_ and all references to it corrected
6084         * pcode.c: all pic16_pc_* hardware registers prefixed
6085         with underscore (_),
6086         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6087         * ralloc.c: newReg(): when register is REG_SFR then
6088         set address to rIdx,
6089         pic16_allocProcessorRegister(): marks register wasUsed=0
6090         pic16_writeUsedRegs(): added a call to assign processor
6091         registers via pic16_assignFixedRegisters
6092
6093 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6094
6095         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6096         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6097         variables in unused register banks.  Also the SSEG is placed
6098         wherever there is enough space for it, and IDATA can be anywhere
6099         in internal RAM.  For now compile using -Wl-Y[stack_size].
6100         The mem file is different for this option as well, since it
6101         makes no sense of talking about DSEG lenght.
6102
6103 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6104
6105         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6106         in certain cases, e.g. when ROM assignment, patch provided
6107         from Albert den Haan.
6108
6109 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6110
6111         Many signedness and type propagation fixes:
6112         * src/SDCCicode.c: made geniCodeCast() static
6113         replaced SPEC_ by IS_ (cosmetic)
6114         (operandOperation): fixed div and mod operation
6115         (usualBinaryConversions): added support for promotion of char
6116         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6117         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6118         (geniCodeAdd): an array index will stay unsigned, even if promoted
6119         from char to int
6120         (geniCodeArray): ditto
6121         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6122         * src/SDCCsymt.c (computeType): added more support for char;
6123         promotion of char is selectable by promoteCharToInt, fixed signedness
6124         for all cases
6125         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6126         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6127         * src/SDCCval (val*): replaced signedness calculation by
6128         computeType()
6129         rearranged if-branches (cosmetic)
6130         (valShift): added warning W_SHIFT_CHANGED
6131         (valCompare): fixed problem with different types
6132         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6133         * support/regression/tests/literalop.c: added many cases
6134         * support/regression/tests/ast_constant_folding.c: changed finally to
6135         'unsigned int'
6136         * .version: new year, new version: 2.3.7
6137         * src/SDCCmain.c (main): applied patch #866468
6138         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6139         provided by Scott Bronson
6140         * doc/sdccman.lyx: updated documentation for sdcdb
6141         updated and added chapter tips
6142
6143 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCCsymt.h: missing from yesterday's commits
6146
6147 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6148
6149         * src/SDCC.y (struct_or_union_specifier),
6150         * support/Util/SDCCerr.c,
6151         * support/Util/SDCCerr.h: verify that struct & union tags are used
6152         as declared.
6153
6154 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6155
6156         * src/SDCCglobl.h: missing from yesterday's commits
6157
6158 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6161         sft_attributes, struct_declaration, parameter_declaration,
6162         type_name, start_block, declaration_list),
6163         * src/SDCC.lex (check_type): support redefinition of typedef names
6164
6165 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6166
6167         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6168         aligned xdata arrays. Erik helped me with the if clause.
6169
6170 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6171
6172         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6173         warning
6174
6175 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6176
6177         * src/SDCCast.h,
6178         * src/SDCCast.c (newAst_),
6179         * src/SDCCicode.h,
6180         * src/SDCCicode.c (ast2iCode, newiCode),
6181         * src/SDCCglobl.h,
6182         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6183         expr, statement, expression_statement, selection_statement,
6184         iteration_statement, expr_opt, jump_statement): foundation for tracking
6185         sequence points
6186         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6187         point code too)
6188
6189 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * support/Util/SDCCerr.c,
6192         * src/SDCCast.h,
6193         * src/SDCCast.c (createCase, createDefault, decorateType),
6194         * src/SDCClabel.c (labelUnreach),
6195         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6196         to error messages.
6197         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6198         (with thanks to Stas Sergeev)
6199         * device/include/time.h,
6200         * device/lib/time.c (CheckTime): suppress unreachable code warning
6201
6202 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6203
6204         * src/SDCCast.c (createIvalCharPtr),
6205         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6206         bug #753752)
6207         * support/regression/tests/nullstring.c: tests for these two bugs
6208
6209 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * support/Util/SDCCerr.h,
6212         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6213         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6214         about storage class and 'at' used inside struct or union
6215         * src/SDCCBBlock.c (iCodeFromeBBlock),
6216         * src/SDCCcse.c (ifxOptimize),
6217         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6218         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6219         printIval, emitStaticSeg, emitOverlay),
6220         * src/SDCClabel.c (deleteIfx),
6221         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6222         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6223         gatherAutoInit, processParms),
6224         * support/Util/SDCCerr.h,
6225         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6226         reporting for post-parse errors.
6227
6228 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6231         implicit casts via union; they don't work on big endian systems
6232         (possible fix for bug #861138)
6233
6234 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6235
6236         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6237         * src/mcs51/main.c: fixed the fix for bug #737001
6238
6239 2003-12-15  Borut Razem <borut.razem AT siol.net>
6240
6241         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6242
6243 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6244
6245         * support/makebin/makebin.c: put output in binary mode
6246
6247 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6248
6249         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6250         xdata and data memory on startup. Set the environment variable
6251         SDCC_NOGENRAMCLEAR to disable this.
6252         * src/mcs51/peephole.def,
6253         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6254         (allows non-interrupt and interrupt code to safely compete for a resource
6255         without the non-interrupt code having to disable interrupts)
6256
6257 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * src/SDCCicode.c (geniCodeAdd),
6260         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6261         with valFromType if type might be a pointer and host is big endian).
6262         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6263         types, not just integer types.
6264         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6265         multiply defined with mismatching "at" address.
6266
6267 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6270         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6271         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6272         with embedded nulls (fixed bug #753752)
6273
6274 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6275
6276         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6277         Apparently this did not see much testing (endless loop)
6278
6279 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6282
6283 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6286         gracefully handle NULL memmap pointers
6287
6288 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6291         instead of deleting the iCode when an operand is volatile
6292         * src/z80/gen.c (genDummyRead),
6293         * src/mcs51/gen.c (genDummyRead),
6294         * src/ds390/gen.c (genDummyRead),
6295         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6296         not just IC_RIGHT
6297         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6298         * src/SDCC.y: fixed bug #850420
6299
6300 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         Applied z80 i/o port patch from Peter Townson and fixed some operators
6303         to better handle operands in A register.
6304         * device/include/z180.h
6305         * src/SDCC.y
6306         * src/SDCCglue.c
6307         * src/z80/gen.c
6308         * src/z80/gen.h
6309         * src/z80/main.c
6310         * src/z80/peeph-z80.def
6311         * src/z80/peeph.def
6312         * src/z80/z80.h
6313
6314 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6315
6316         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6317
6318 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6319
6320         * device/lib/hc08/_mullong.c: Removed extra #endif
6321
6322 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6323
6324         * sim/ucsim/hc08.src/inst.cc,
6325         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6326         carries from x to h
6327         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6328         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6329         * device/include/stdarg.h: fixed varargs for hc08
6330         * device/lib/Makefile.in,
6331         * device/lib/hc08/Makefile,
6332         * device/lib/hc08/_mulint.c,
6333         * device/lib/hc08/_mullong.c: fixed some endian problems
6334
6335 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6336
6337         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6338         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6339         * device/lib/_gptrget.c,
6340         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6341
6342 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6345         * src/SDCCast.c (astErrors): fixed bug #846007
6346         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6347
6348 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6349
6350         * src/SDCCast.c (decorateType): disabled a transformation I added in
6351         revision 1.188 (access to fields of a structure at an absolute address);
6352         it breaks with bitfields, extern declarations, and gcse analysis.
6353         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6354         could be assigned through a pointer, so don't complain.
6355         * src/SDCCast.c (astErrors),
6356         * src/SDCCast.h,
6357         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6358
6359 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6360
6361         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6362         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6363         output of __config directives, since gpasm now supports them
6364         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6365         pre-processor macro, i.e. -DMCU=p18f452
6366         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6367         and modified to handle 'cast' icode similarly to '=' icode
6368         * src/pic16/device.h (typedef struct PIC_device): added field
6369         'extMIface' to indicate that chip has external memory interface
6370         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6371         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6372         18F8720
6373
6374 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6375
6376         * src/SDCC.y (pointer): fixed bug #846006
6377         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6378         * src/SDCCast.c (decorateType): fixed bug #846009
6379         * src/ds390/peeph.def,
6380         * src/ds390/gen.c (genAnd, genOr),
6381         * src/mcs51/peeph.def,
6382         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6383
6384 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6387         * src/SDCCdflow.c
6388         * src/SDCCcse.c
6389         * src/SDCCcse.h
6390         * src/SDCCBBlock.h
6391         * src/SDCCBBlock.c
6392
6393 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6394
6395         fixed bug #845089
6396         * src/SDCCbitv.h,
6397         * src/SDCCbitv.c: added function to free a bitvector
6398         * src/SDCClrange.h,
6399         * src/SDCClrange.c: added function to recompute the liveranges
6400         * src/avr/ralloc.c,
6401         * src/ds390/ralloc.c,
6402         * src/hc08/ralloc.c,
6403         * src/mcs51/ralloc.c,
6404         * src/pic/ralloc.c,
6405         * src/pic16/ralloc.c,
6406         * src/xa51/ralloc.c,
6407         * src/z80/ralloc.c: recompute the liveranges after register packing
6408
6409 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6410
6411         * src/SDCCloop.c (newInduction): fixed bug #845630
6412
6413 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6414
6415         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6416         inadvertantly left behind from my 2003-11-12 change
6417
6418 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6419
6420         Updated headers I neglected to commit yesterday.
6421         * src/SDCClrange.h,
6422         * src/SDCCicode.h
6423
6424 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6425
6426         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6427         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6428         * src/SDCCopt.c (eBBlockFromiCode),
6429         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6430         the creation of the key hash table from the sequencing so it can be used
6431         earlier (for some GCSE bug fixes still pending)
6432
6433 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6434
6435         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6436         * support/regression/tests/addsub.c: testing genPlus shortcut
6437
6438 2003-11-15  Borut Razem <borut.razem AT siol.net>
6439
6440         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6441
6442 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6445         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6446         ordering is immaterial.
6447         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6448
6449 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6450
6451         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6452         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6453         (SIGSEV) of bug #840381
6454         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6455         unlink new file before rename if new and old filenames are the same)
6456
6457 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6458
6459         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6460         uninitialized variables) for the mcs51. Set environment variable
6461         SDCC_GENRAMCLEAR to test.
6462         xdata initialization slightly shorter
6463
6464 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6465
6466         * src/SDCCsymt.h,
6467         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6468         #838241 & 780691 (basicly the same bug)
6469         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6470         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6471
6472 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6473
6474         * src/SDCCmain.c (linkEdit): "fix" #834252
6475
6476 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6477
6478         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6479         * src/SDCCast.h,
6480         * src/SDCC.y: fixed bug #819403
6481
6482 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6483
6484         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6485         the reentrant attribute.
6486         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6487         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6488         simulation
6489         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6490         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6491         erroneously reduced to a literal.
6492         * src/hc08/ralloc.c (packRegisters, rematStr),
6493         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6494         some cases
6495
6496 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6497
6498         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6499         * doc/sdccman.lyx: changed from 'article' to 'book'
6500         * doc/Makefile: readded test_suite_spec and cdbfileformat
6501
6502 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6503
6504         * device/include/stdlib.h: include malloc.h to comply with ANSI
6505         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6506
6507 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6508
6509         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6510         * doc/clean.mk: also remove *.out files
6511         * doc/sdccman.lyx: some additions, larger top/bottom margins
6512
6513 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/SDCC.y: fixed bug #837365
6516         * support/regression/tests/bitopcse.c
6517         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6518         a symbol (might be valop instead)
6519         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6520         * device/lib/clean.mk: added hc08 to the cleaning list
6521
6522 2003-11-04  Borut Razem <borut.razem AT siol.net>
6523
6524         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6525           made 2003-11-04
6526         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6527           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6528           malloc is declared in standard stdlib.h
6529
6530 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * device/lib/hc08/Makefile: need to clean .rel not .o files
6533         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6534
6535 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * src/port.h,
6538         * src/hc08/main.c,
6539         * src/mcs51/main.c,
6540         * src/ds390/main.c,
6541         * src/z80/main.c,
6542         * src/avr/main.c,
6543         * src/pic/main.c,
6544         * src/pic16/main.c,
6545         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6546         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6547         tests (which uses the port's oclsExpense function)
6548         * src/SDCC.y,
6549         * src/SDCCast.c,
6550         * src/SDCCicode.c,
6551         * src/hc08/gen.c,
6552         * src/ds390/gen.c,
6553         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6554
6555 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6556
6557         * src/SDCCcse.c (ifxOptimize),
6558         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6559         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6560         deleting the IFX iCode.
6561         * src/hc08/ralloc.c: reduced unneeded slocs
6562         * src/hc08/gen.c: fixed bug in asmopToBoolean
6563
6564 2003-11-04  Borut Razem <borut.razem AT siol.net>
6565
6566         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6567           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6568           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6569           transferred to configure
6570
6571 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6572
6573         Use headers defined in the C[++] standards:
6574         * sim/ucsim/gui.src/serio.src/fileio.cc
6575         * sim/ucsim/gui.src/serio.src/frontend.cc
6576         * sim/ucsim/gui.src/serio.src/main.cc
6577         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6578         * support/Util/NewAlloc.c
6579         * as/hc08/lklibr.c
6580         * as/mcs51/lklibr.c
6581         * as/z80/aslist.c
6582         * as/z80/assym.c
6583
6584 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6585
6586         * Added MSVC projects for hc08 assembler and linker:
6587         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6588         /as/hc08/link_hc08.dsp
6589
6590 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6591
6592         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6593
6594 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6595
6596         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6597
6598 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6599
6600         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6601
6602 2003-10-31  Borut Razem <borut.razem AT siol.net>
6603
6604         * support/cpp2/cpplib.h,
6605           support/cpp2/cpplib.c,
6606           support/cpp2/cpplex.c,
6607           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6608           to switch _asm block preprocessing on / off. Default is
6609           #pragma preproc_asm +
6610
6611 2003-10-31  Borut Razem <borut.razem AT siol.net>
6612
6613         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6614           when outputting comment blocks (when executed with -C option) and
6615           _asm (SDCPP specific) blocks
6616
6617 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6620
6621 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6622
6623         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6624
6625 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6626
6627         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6628         * src/SDCCast.c (decorateType): fixed bug #832664
6629
6630 2003-10-31  Borut Razem <borut.razem AT siol.net>
6631
6632         * support\cpp2\cpplex.c: fixed for SDCPP:
6633           comments(when executed with -C option) and _asm blocks
6634           were included even if they where in skipped #if block.
6635           Applied solution from GCC cpp 3.3.2
6636
6637 2003-10-31  Borut Razem <borut.razem AT siol.net>
6638
6639         * src/SDCC.lex: sdcc now understands both formats:
6640           '# <line_number> <file_name>' and
6641           '#line <line_number> <file_name>'
6642         * support/cpp2/cppmain.c: sdcpp now generates the standard
6643           '# <line_number> <file_name>' instead of former
6644           '#line <line_number> <file_name>'
6645
6646 2003-10-30  Borut Razem <borut.razem AT siol.net>
6647
6648         * support/cpp2/cpphash.h,
6649         * support/cpp2/cpplib.h
6650         * support/cpp2/cpplex.c,
6651         * support/cpp2/cppmain.c,
6652         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6653
6654 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         Fixed a number of problems revealed by bug #827883.
6657         * src/SDCCloop.c (loopInvariants): Spill location of the
6658         result operand should be recomputed if extracted from
6659         a loop. Also, don't extract assignments of an iTemp
6660         from a literal.
6661         * src/SDCCast.c (isConformingBody): loop reversal should
6662         not occur if the control variable is involved with a
6663         relational operator.
6664
6665 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6666
6667         * .version: bumped to 2.3.6 to reflect the big improvements
6668         made by Erik and Klaus. Thanks!
6669
6670 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6671
6672         Replaced the livrange code.
6673         * src/SDCClrange.c: added new LR code
6674         * src/SDCCloop.c,
6675         * src/SDCCBBlock.h: removed remainig parts from old LR code
6676         * src/ds390/ralloc.c,
6677         * src/ds390/gen.c: minor fixes to make it work with new code
6678
6679 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6680
6681         * as/hc08/asm.h,
6682         * as/hc08/lkrloc.c,
6683         * src/hc08/gen.c,
6684         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6685         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6686         (tweaked fix for bug #818696)
6687
6688 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6691
6692 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/SDCCmain.c,
6695         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6696         * src/mcs51/gen.c (gencjneshort),
6697         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6698         more efficient (per Scott Bronson's suggestion)
6699
6700 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         Extended the semantics of the critical keyword to include
6703         individual statements. See RFE #827755 and #799831
6704         * src/SDCC.y
6705         * src/SDCCicode.c
6706         * src/SDCCopt.c
6707         * src/SDCCast.c
6708         * support/Util/SDCCerr.c
6709         * support/Util/SDCCerr.h
6710         * src/mcs51/gen.c
6711         * src/ds390/gen.c
6712         * src/hc08/gen.c
6713
6714 2003-10-19  Borut Razem <borut.razem AT siol.net>
6715
6716         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6717
6718 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6719
6720         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6721         Fixed bug #818696
6722         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6723         and predecrement operand is displayed
6724
6725 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6726
6727         * src/SDCCval.c (valMinus): fixed bug #826041
6728
6729 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6730
6731         Some hc08 related updates that I missed earlier
6732         * sim/ucsim/stypes.h
6733         * support/regression/ports/hc08/spec.mk
6734
6735 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         New target "hc08" for the Motorola 68hc08 family of micros
6738
6739         * configure
6740         * configure.in
6741         * Makefile
6742         * src/hc08/*
6743         * src/SDCCmain.c
6744         * src/port.h
6745         * sim/ucsim/hc08.src/*
6746         * sim/ucsim/configure.in
6747         * src/ucsim/configure
6748         * sim/ucsim/packages_in.mk
6749         * as/hc08/*
6750         * as/Makefile
6751         * device/include/mc68hc908qy.h
6752         * device/lib/hc08/*
6753         * device/lib/Makefile.in
6754         * support/regression/ports/hc08/*
6755         * support/regression/Makefile
6756
6757 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6758
6759         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6760         regression test
6761         * src/ds390/gen.c (genCast): fixed bug #821957
6762
6763 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6764
6765         * device/lib/logf.c: "fixed" overlay bug
6766         * support/regression/ports/host/spec.mk: added m library
6767         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6768         * support/regression/tests/float_trans: added (for Eric)
6769
6770 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6771
6772         * src/mcs51/gen.c (genCpl): fixed bug
6773         http://sf.net/mailarchive/message.php?msg_id=6263915
6774
6775 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6776
6777         * src/SDCCast.c (decorateType): added extended constant folding
6778         * src/SDCCsymt.c (computeType): cleanup
6779         * src/SDCCval.c (valShift): minor optimization
6780         * support/regression/tests/ast_constant_folding.c: added
6781
6782 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6783
6784         * src/SDCCmain.c: removed some unintended changes
6785
6786 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6787
6788         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6789         * src/z80/gen.c: fixed part of bug #817589
6790         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6791
6792 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6793
6794         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6795         * src/SDCCcflow.c
6796         * src/SDCCcse.c
6797         * src/SDCCdflow.c
6798         * src/SDCClabel.c
6799         * src/SDCClrange.c
6800         * src/SDCCmem.c
6801         * src/SDCCopt.c
6802         * src/SDCCpeeph.c
6803         * src/SDCCset.c
6804         * src/avr/ralloc.c
6805         * src/ds390/ralloc.c
6806         * src/izt/ralloc.c
6807         * src/mcs51/ralloc.c
6808         * src/pic/ralloc.c
6809         * src/pic16/ralloc.c
6810         * src/xa51/ralloc.c
6811         * src/z80/ralloc.c
6812         * src/z80/gen.c: removed unused label "release:"
6813
6814 2003-10-06  Borut Razem <borut.razem AT siol.net>
6815
6816         * src/SDCC.lex: removed definition of unused variables
6817           save_optimize and save_options
6818
6819 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6820
6821         * clean.mk: removed '=' in "-maxdepth=1"
6822         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6823         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6824
6825 2003-10-06  Borut Razem <borut.razem AT siol.net>
6826
6827         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6828           my_unput() replaced by unput()
6829
6830 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6831
6832         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6833         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6834         type-punned pointer will break strict-aliasing rules"
6835         Old LR behaviour is again default; Klaus' LR can be choosen by
6836         defining the environment variable LRKLAUS
6837         * src/SDCCBBlock.h
6838         * src/SDCCloop.c
6839         * src/SDCClrange.c
6840         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6841         * clean.mk: fixed removal of files in bin/CVS/
6842         * device/lib/clean.mk: fixed removal of directories small and large
6843         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6844         * src/SDCCicode.c,
6845         * src/SDCCval.c: removed superflous test for pedantic
6846
6847 2003-10-05  Borut Razem <borut.razem AT siol.net>
6848
6849         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6850           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6851           message "unmatched #pragma SAVE and #pragma RESTORE"
6852
6853 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6854
6855         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6856           assembly, critical functions, atomic, nojtbound)
6857
6858 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6859
6860         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6861         * src/SDCCBBlock.h
6862         * src/SDCCloop.c
6863         * src/SDCCloop.h
6864         * src/SDCClrange.c
6865
6866 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6867
6868         * src/z80/gen.h,
6869         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6870         * src/mcs51/gen.h
6871         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6872         * src/ds390/gen.h
6873         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6874         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6875         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6876
6877 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6878
6879         * src/z80/gen.c (genRet): fixed bug #524753
6880         * src/z80/gen.c (genCast): fixed internal error on cast from
6881         pointer to long
6882         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6883         fix for bug #477835 to the z80
6884         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6885         for tracking iCodes in the peephole optimizer for z80
6886
6887 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6890         the other part of bug #814548
6891         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6892
6893 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6894
6895         * src/SDCCcse.c: fixed part of bug #814548
6896
6897 2003-09-28  Borut Razem <borut.razem AT siol.net>
6898
6899         * src/asm.c: rewrite of printILine() to use temporary file instead
6900           a pipe
6901         * src/xa51/main.c: commented out declaration of int rewinds
6902
6903 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6906
6907 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6908
6909         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6910         * src/asm.c (printILine): Fixed bug #811015
6911
6912 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6913
6914         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6915         freeing.
6916
6917 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6918
6919         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6920         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6921         to correctly handle general case of AOP_PAIRPTR
6922         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6923
6924 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6925
6926         * src/mcs51/ralloc.c (fillGaps),
6927         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6928         register positioning bug)
6929
6930 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6931
6932         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6933
6934 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6935
6936         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6937         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6938         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6939         (ralloc doesn't intentionally do this now, but perhaps later)
6940         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6941         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6942         register positioning bugs (Fixed bug #762602 and #795325)
6943         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6944         (Fixed bug #808779)
6945         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6946         lines that --i-code-in-asm generates
6947
6948 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6949
6950         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6951         trying to fclose a FILE* that was already closed.
6952
6953 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6956         of const struct should be treated as if const themselves)
6957
6958 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6959
6960         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6961
6962 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6963
6964         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6965         Unix (/n) and DOS (/r/n) line terminations.
6966
6967 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6968
6969         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6970         bug #613775
6971
6972 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * src/mcs51/gen.c (genFunction, genEndFunction),
6975         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6976         and restore of EA so that stack offsets to parameters are
6977         correct when using both critical and reentrant/stack-auto.
6978         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6979         size (can be triggered in error if sloc is shared between
6980         different sized objects)
6981         * device/include/float.h: fixed macros to explicitly use
6982         unsigned long where needed
6983
6984 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6985
6986         Feature req. 799831: added code to allow nesting of critical functions
6987         * src/mcs51/gen.c (genFunction, genEndFunction)
6988         * src/ds390/gen.c (genFunction, genEndFunction)
6989
6990 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6991
6992         * src/SDCCsymt.c (sclsFromPtr),
6993         * src/SDCCsymt.h,
6994         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6995         support for standard C idiom of memory mapped variables; for
6996         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6997         to xdata int at 0x1234 tempvar = 1.
6998         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6999         provided by Akiya ISHIDA
7000
7001 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7002
7003         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7004         * src/SDCCval.c (constVal): added reduction from int to char
7005         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7006         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7007         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7008         to ignore the sign
7009         * support/regression/tests/shifts.c: fixed
7010
7011 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7012
7013         * src/z80/gen.c (genXor): Fixed bug #805445
7014
7015 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7016
7017         Fixed bug #621531 (const & volatile confusion in the type chain).
7018         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7019         refer to the const or volatile state of the pointer itself.
7020
7021         * src/SDCCast.c
7022         * src/SDCCglue.c
7023         * src/SDCCicode.c
7024         * src/SDCCsymt.c
7025         * src/SDCCval.c
7026         * src/SDCC.y
7027         * src/SDCCsymt.h
7028         * src/pic/gen.c
7029         * src/pic/ralloc.c
7030         * src/pic16/gen.c
7031         * src/pic16/ralloc.c
7032         * support/regression/tests/const.c
7033
7034 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7035
7036         When checking for duplicated modules, use absolute paths
7037         instead of relative paths.  Files changed:
7038
7039         * as/mcs51/lklib.c
7040         * link/z80/lklib.c
7041
7042 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7045
7046 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7047
7048         * device/include/string.h: added size_t typedef, changed
7049         prototypes to use size_t, eliminated separate reentrant and
7050         non-reentrant declarations, added _memmove declaration
7051         * device/lib/_memcpy.c: changed to use size_t instead of int,
7052         changed /4 to >>2 to avoid division library call
7053         * device/lib/_memcmp.c,
7054         * device/lib/_memset.c,
7055         * device/lib/_strncat.c,
7056         * device/lib/_strncpy.c,
7057         * device/lib/_strncmp.c: changed to use size_t instead of int
7058         * device/lib/_memmove.c: new file (fixed bug #772294)
7059         * device/lib/Makefile.in: added _memmove.c
7060         * device/lib/z80/asm_strings.s: fixed bug #772290
7061         * support/regression/tests/bitfields.c: attempt to fix host assertion
7062         failure on amd64-unknown-linux2.2
7063
7064 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7065
7066         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7067         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7068         * as/z80/asmain.c (main): fixed bug #801766
7069
7070 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7071
7072         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7073         compilers
7074
7075 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7076
7077         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7078         reported in bug #800609
7079
7080 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7081
7082         * Top header beautifications in src/pic16 directory:
7083           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7084           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7085           pcoderegs.h, ralloc.c, ralloc.h
7086         * main.c: added top header and GPL license notice
7087         * pcode.c: fixed the if-conditional warning
7088
7089 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7090
7091         * device/lib/_mullong.c: replaced int by short for gcc
7092
7093 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7094
7095         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7096         and JUMPTABLE iCodes properly now (worked by accident before)
7097         * src/mcs51/gen.c (leftRightUseAcc),
7098         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7099         iCode properly now. Use getSize instead of nRegs since a & b
7100         aren't part of the nRegs tally.
7101
7102 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7103
7104         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7105         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7106           before instructions that use the _STATUS register
7107
7108 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7109
7110         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7111         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7112         fetching of the pointer
7113         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7114         copied from genNearPointerSet()
7115         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7116         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7117         If they pop r0/r1 they must be called in the opposite order than aopOp().
7118         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7119         (resp. --stack-auto), prepared for --xstack
7120
7121 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7122
7123         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7124
7125 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7126
7127         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7128         these ports have their own __sdcc_external_start()
7129
7130 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7131
7132         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7133         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7134         type for bits was changed. It resulted in bit variables becoming
7135         global, which is not permitted in PIC 14 assembly output.
7136
7137 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7138
7139         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7140
7141 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7142
7143         Z80 and MCS51 linkers complaint if a public symbol is defined
7144         in more than one library module:
7145
7146         * as/mcs51/lklib.c
7147         * link/z80/lklib.c
7148         * as/mcs51/Makefile.in
7149
7150 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         A few small changes that speed up the peephole optimizer.
7153
7154         * src/SDCCpeeph.c
7155
7156 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         Try to make the peephole optimizer smarter by maintaining
7159         an association between the assembly source code and the
7160         iCodes that originated them. Put this information to use
7161         with a new peephole rule condition "notVolatile" so that
7162         the rules can be aggressive yet still safe.
7163
7164         * src/SDCCpeeph.c
7165         * src/SDCCpeeph.h
7166         * src/mcs51/gen.c
7167         * src/mcs51/peeph.def
7168
7169 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7170
7171         Fixed bug #741761
7172
7173         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7174         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7175         if the left or right operand symbols have the accuse flag set.
7176
7177 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7178
7179         Changed the type of the result of the ! (NOT) operator to char;
7180         previously it returned the same type as the source. This allows
7181         us to eliminate all the genFloatNot functions (all of its target
7182         implementations were very buggy) since !float can use the same
7183         code as !long now.
7184
7185         * src/SDCCicode.c (ast2iCode): ! returns char
7186         * src/mcs51/gen.c (genNot, genNotFloat),
7187         * src/ds390/gen.c (genNot, genNotFloat),
7188         * src/z80/gen.c (genNot, genNotFloat),
7189         * src/pic/gen.c (genNot, genNotFloat),
7190         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7191
7192 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7193
7194         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7195         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7196            during interrupts. Ensure WSAVE is located at a shared bank address.
7197         2. Fixed page selection in some places
7198         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7199            the registers name strings.
7200         4. Fixed "signed / unsigned compare" compiler warnings.
7201         5. The PIC port manages its own allocation of the general purpose
7202            registers, but makes no attempt to reuse them. As a result when
7203            compiling it soon runs out of general purpose registers. Some
7204            additional code was added to the files pcode.c and device.c to walk
7205            through the function call tree and rename the registers so that they
7206            get reused.
7207
7208         * src/pic/device.c
7209         * src/pic/gen.c
7210         * src/pic/glue.c
7211         * src/pic/pcode.c
7212         * src/pic/pcode.h
7213         * src/pic/ralloc.c
7214         * src/pic/ralloc.h
7215         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7216         genPlus() & genMinus() when the result is the same as left or right
7217
7218 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7219
7220         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7221
7222 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7223
7224         Made bitfield a distinct type from bit so that bitfields
7225         convert as per ANSI C and bits retain their traditional
7226         boolean style behaviour. Implemented bitfield support in
7227         the z80 port.
7228
7229         * src/SDCCsymt.h,
7230         * src/SDCCsymt.c,
7231         * src/SDCCast.c,
7232         * src/cdbFile.c,
7233         * src/mcs51/gen.c,
7234         * src/ds390/gen.c: bit v bitfield split
7235         * src/z80/gen.c: New support for bitfields
7236         * support/regression/tests/bitfields.c: reenabled z80,
7237         added more tests
7238
7239 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7240
7241         Rules 246.x, 247.x relate to bitfields, the others speed up
7242         access to xdata mapped I/O devices.
7243
7244         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7245
7246 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7247
7248         Cleaned up genPackBits and genUnpackBits and added two helper
7249         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7250         for literal assignments in genPackBits (thanks to Frieder for
7251         reminding me).
7252
7253         * src/mcs51/gen.c
7254         * src/ds390/gen.c
7255
7256 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7257
7258         Fixed bug #748310 (pointer to function type mishandled when the
7259         function name is omitted). Also fixed a SIGSEGV when a function
7260         attribute (reentrant, etc) is used on a non-function or on a
7261         function but misplaced before the parameter list.
7262
7263         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7264         bug #748310
7265         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7266         * support/Util/SDCCerr.h,
7267         * support/Util/SDCCerr.c: Added func attr misuse error msg
7268
7269 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         Fixed bug #787649 by anonymous
7272         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7273         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7274
7275 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7276
7277         Fixed numerous bitfield problems.
7278
7279         * src/SDCC.y: More bitfield related error checking
7280         * src/SDCCsymt.h,
7281         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7282         * support/Util/SDCCerr.h,
7283         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7284         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7285         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7286         * support/regression/tests/bitfields.c: tests added
7287
7288 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7289
7290         Made the constant following the "interrupt" keyword optional. If
7291         omitted, the function will not automatically be given an entry
7292         in the interrupt vector table (similar to #pragma NOIV, but
7293         less syntacticly kludgy). The interrupt number is also now
7294         range checked. Also fixed a bug in the high order bit example
7295         in the manual.
7296
7297         * src/SDCC.y
7298         * src/SDCCmem.c
7299         * src/SDCCglue.c
7300         * src/SDCCsymt.h
7301         * support/Util/SDCCerr.c
7302         * support/Util/SDCCerr.h
7303         * doc/sdccman.lyx
7304
7305 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7306
7307         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7308         * src/SDCCicode.c (operandOperation): rewritten some ops
7309         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7310         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7311         other type
7312         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7313         be re-activated by defining REDUCE_LITERALS)
7314         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7315         unsigned, but are signed by default
7316         * src/SDCCval.c (constVal): rearranged
7317         * src/SDCCval.c (valMod): preliminary fix
7318         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7319         * support/regression/literalop.c: added, work in progress
7320
7321 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7322
7323         Generate warnings for useless declarations like "char data;"
7324         that don't do what new users expect.
7325
7326         * src/SDCC.y
7327         * support/Util/SDCCerr.h
7328         * support/Util/SDCCerr.c
7329
7330 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         * src/SDCCval.c (valMult): fix overflow detection of negative int
7333
7334 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7335
7336         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7337
7338         Changes to support big endian targets:
7339
7340         * src/ports.h
7341         * src/SDCCglue.c
7342         * src/avr/main.c
7343         * src/ds390/main.c
7344         * src/izt/i186.c
7345         * src/mcs51/main.c
7346         * src/pic/main.c
7347         * src/pic16/main.c
7348         * src/xa51/main.c
7349         * src/z80/main.c
7350
7351 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7354         * device/lib/time.c: fixed warning "integer overflow in expression"
7355
7356 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7357
7358         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7359         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7360         constants are unsigned; added recognition of "u" flag for unsigned
7361         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7362         * src/SDCCval.c (valDiv, valMod): fixed signdness
7363         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7364         signedness of modulo, left and right shift
7365         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7366         * support/Util/SDCCerr.h: added warning W_INT_OVL
7367         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7368         * src/SDCCast.c (ast_print): improved output of constants
7369
7370 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7371
7372         Fixed some warnings when building with MSVC:
7373
7374         * as\mcs51\asdata.c
7375         * as\z80\asdata.c
7376         * as\mcs51\asm.h
7377         * as\z80\asm.h
7378         * link\z80\aslink.h
7379         * link\z80\lkdata.c
7380         * link\z80\lkeval.c
7381         * link\z80\lkgb.c
7382         * link\z80\lkihx.c
7383         * link\z80\lks19.c
7384         * link\z80\lksym.c
7385         * support\cpp2\cpplib.c
7386         * src\ds390\gen.c
7387         * src\mcs51\gen.c
7388
7389 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7390
7391         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7392
7393 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7394
7395         * support\librarian\clean.mk: Do not remove Makefile.
7396         * support\librarian\Makefile: added.
7397
7398 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7399
7400         Added librarian to MSVC build:
7401         * all.dsp
7402         * sdcc.dsw
7403         * support\librarian\librarian.dsp
7404
7405         'configure' not needed for librarian, removed:
7406         * support\librarian\configure
7407         * support\librarian\configure.in
7408         * support\librarian\config_in.h
7409         * support\librarian\Makefile.in
7410
7411         Hopefully these ones built the librarian and the rest of sdcc properly:
7412         * Makefile
7413         * Makefile.common.in
7414
7415         Messed up 'configure', so revert to previous version:
7416         * configure
7417         * configure.in
7418
7419 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7420
7421         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7422         there, while the mantissa of a double is "only" 53 bits wide.
7423
7424 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7425
7426         Adding sdcclib to the build.  MSVC project coming soon.
7427         Files added/changed:
7428
7429         * support\librarian\clean.mk
7430         * support\librarian\configure
7431         * support\librarian\configure.in
7432         * support\librarian\config_in.h
7433         * support\librarian\Makefile.bcc
7434         * support\librarian\Makefile.in
7435         * support\librarian\sdcclib.c
7436         * Makefile.bcc
7437         * Makefile
7438         * Makefile.common.in
7439         * configure
7440         * configure.in
7441
7442 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7443
7444         Linker now complaints if linked modules have conflicting options, for
7445         example, one compiled using --model-large and another one compiled with
7446         --model-small.  The following files were modified:
7447
7448         * as\mcs51\asdata.c
7449         * as\mcs51\aslink.h
7450         * as\mcs51\asm.h
7451         * as\mcs51\asmain.c
7452         * as\mcs51\asout.c
7453         * as\mcs51\i51pst.c
7454         * as\mcs51\lkdata.c
7455         * as\mcs51\lklibr.c
7456         * as\mcs51\lkmain.c
7457         * as\z80\asdata.c
7458         * as\z80\asm.h
7459         * as\z80\asmain.c
7460         * as\z80\asout.c
7461         * as\z80\z80pst.c
7462         * link\z80\aslink.h
7463         * link\z80\lkdata.c
7464         * link\z80\lklibr.c
7465         * link\z80\lkmain.c
7466         * src\SDCCglue.c
7467
7468 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7469
7470         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7471         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7472
7473 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * src/z80/mappings.i: fix _mul[us][int,long] entries
7476
7477 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7478
7479         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7480
7481 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7482
7483         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7484         * support/regression/tests/bitopcse.c: added
7485         fixed warning:
7486         * src/avr/gen.c:
7487         * src/pic/gen.c:
7488         * src/pic16/gen.c:
7489         * src/z80/gen.c:
7490         * src/xa51/gen.c:
7491
7492 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7493
7494         added support for new library format to z80, gbz80 linkers:
7495         *link/z80/aslink.h
7496         *link/z80/lklex.c
7497         *link/z80/lklib.c
7498         *link/z80/lklist.c
7499
7500 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7503         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7504
7505 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7506
7507         added DUMMY_READ_VOLATILE:
7508         * src/SDCC.y:
7509         * src/avr/gen.c:
7510         * src/xa51/gen.c:
7511         * src/z80/gen.c:
7512         * src/pic/gen.c:
7513         * src/pic16/gen.c:
7514         * src/mcs51/gen.c:
7515         * src/ds390/gen.c:
7516         * src/SDCCcse.c (algebraicOpts): many improvements
7517         * src/SDCCcse.h: removed algebraicOpts()
7518         * src/SDCCicode.c (picDummyRead): added
7519
7520 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7521
7522         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7523         "Insufficient space in data memory".
7524
7525 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7526
7527         * src/mcs51/gen.c: fixed bug #771358
7528         * src/z80/gen.c: fixed bug #759087
7529
7530 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7531
7532         * src/pic16/glue.c: minor cleanup by Vangelis
7533
7534 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7535
7536         * device/include/regc515c.h: fixed #758477
7537         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7538         * device/lib/_gptrput.c: saved a few bytes
7539         * my tab spacing is 8, yours too?)
7540         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7541         * device/lib/serial.c: process RX bytes earlier than TX bytes
7542         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7543
7544 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7545
7546         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7547
7548 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7549
7550     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7551
7552 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7553
7554         * device/lib/Makefile.in: bad fix, reverted to 1.43
7555
7556 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7557
7558         * device/lib/Makefile.in: added missing z80 object files
7559
7560 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7563         pic16 progress by Vangelis:
7564         * src/SDCCglobl.h:
7565         * src/SDCCmain.c:
7566         * src/pic/Makefile:
7567         * src/pic:
7568         * pic/Makefile:
7569         * pic16/device.c:
7570         * pic16/device.h:
7571         * pic16/gen.c:
7572         * pic16/gen.h:
7573         * pic16/genarith.c:
7574         * pic16/glue.c:
7575         * pic16/main.c:
7576         * pic16/pcode.c:
7577         * pic16/pcode.h:
7578         * pic16/pcodepeep.c:
7579         * pic16/peeph.def:
7580
7581 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7582
7583     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7584
7585 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7586
7587     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7588     added gbz80 build to MSVC project.
7589     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7590     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7591     from 8051 stuff and setup so it links using a .lnk file.
7592
7593 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7594
7595     * support/librarian/sdcclib.c: sdcc librarian.
7596     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7597     with sdcclib.
7598
7599 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7600
7601     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7602
7603 2003-07-02  Borut Razem <borut.razem AT siol.net>
7604
7605         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7606         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7607         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7608         src/xa51/main.c, src/z80/main.c:
7609         virtualization of glue() function: each port has it's own glue function,
7610         which is accessed by do_glue function pointer in PORT.general structure
7611
7612 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7613
7614         * DS800C400 fun, improved ROM interface and tinibios.
7615
7616 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7617
7618         * More support for DS80C400. Now includes beginning of interface to ROM.
7619
7620 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7621
7622         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7623
7624 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7625
7626         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7627
7628 2003-06-19  Borut Razem <borut.razem AT siol.net>
7629
7630         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7631
7632 2003-06-19  Borut Razem <borut.razem AT siol.net>
7633
7634         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7635         fixed Z80 port - crt0.o: cannot open.
7636
7637 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7638
7639         * support/Util/MySystem.c (merge_command): revert bad fix
7640
7641 2003-06-18  Borut Razem <borut.razem AT siol.net>
7642
7643         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7644
7645 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7646
7647         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7648         option --use-stdout sends errors to stdout instead of stderr.
7649
7650 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7651
7652         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7653
7654 2003-06-15  Borut Razem <borut.razem AT siol.net>
7655
7656         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7657         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7658         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7659         fixed width array of pointers replaced with sets;
7660         multiple include and lib paths ared transferred to preprocessor and linker
7661         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7662         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7663         fixed width array of pointers
7664         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7665         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7666         fixupPath(), getPathDifference()
7667         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7668         fixed width array of pointers
7669
7670 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7671
7672         * src/pic16/ralloc.c: fix warnings
7673         * src/pic16/pcode.c: fix warning
7674
7675 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7676
7677          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7678         know all the details, but essentially this set of changes enable
7679         the pic16 port to generate movff instructions and generate assembler
7680         directives,
7681         * src/SDCCmain.c:
7682         * src/pic16/gen.c:
7683         * src/pic16/glue.c:
7684         * src/pic16/pcode.c:
7685         * src/pic16/device.c:
7686         * src/pic16/main.c:
7687         * src/pic16/pcode.h:
7688         * src/pic16/pcoderegs.c:
7689         * src/pic16/ralloc.c:
7690         * src/pic16/ralloc.h:
7691
7692 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7693
7694         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7695         added option --vc, so sdcc errors and warnings are compatible with
7696         Microsoft Visual Studio.
7697
7698 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7699
7700         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7701           device/lib/libfloat.lib: added atof function.
7702
7703 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7704
7705         * doc/sdccman.lyx: updated to Lyx 1.3
7706         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7707         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7708         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7709
7710 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7711
7712         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7713
7714 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7715
7716         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7717           additions to the "related tools/documentation" section
7718
7719 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7720
7721         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7722
7723 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7726         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7727
7728 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7729
7730         * doc/sdccman.lyx: fix double dash and other minor things
7731         * doc/Makefile: fix double dash
7732
7733 2003-05-28  Karl Bongers(patches from Martin Helmling)
7734         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7735           condition and ignore commands.
7736
7737 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7738
7739         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7740           is in parts still quite out of date, I did changes as far as I felt makes sense
7741           for a non-native english speaker.
7742           Please feel free to add to the manual or to correct my changes.
7743         * doc/Makefile: undid touching the date of intermediate tex files.
7744
7745 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7746
7747         * doc/sdccman.lyx: Manual has an index now
7748
7749 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7750
7751         Finalize muluint/mulsint and mululong/mulslong merging:
7752         * device/lib/_mulint.c
7753         * device/lib/_mullong.c
7754         * device/lib/gbz80/mul.s
7755         * device/lib/gbz80/stubs.s
7756         * device/lib/z80/mul.s
7757         * device/lib/z80/stubs.s
7758         * src/SDCCsymt.c (initCSupport)
7759
7760 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7761
7762         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7763         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7764           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7765           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7766           instead of /Zm500.
7767
7768 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7769
7770         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7771           the regression tests I'm not brave enough to enable 245.b, 245.c
7772         * doc/sdccman.lyx: added latex preamble for hyperref package.
7773           Using pdflatex this will give you a hyperlinked pdf file with
7774           bookmarks. (prepend '%' before /usepackage if this breaks something)
7775
7776 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7777
7778          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7779
7780 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7781
7782         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7783
7784 2003-05-21    <johan AT balder>
7785
7786         * src/SDCCglue.c (printIval): fixed bug #739934
7787
7788 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7789
7790         Applied patch from bug 737905 (renamed yylineo to mylineno):
7791         * src/altlex.c
7792         * src/SDCCast.c
7793         * src/SDCglobl.h
7794         * src/SDCC.lex
7795         * src/SDCCsymt.c
7796         * src/SDCCval.c
7797         * src/pic16/pcode.c: Cleaned warnings
7798         * src/pic16/pcodeflow.c: Cleaned warnings
7799         * src/pic16/pcoderegs.c: Cleaned warnings
7800
7801 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7802
7803         * src/pic16/pcode.c: Cleaned warnings
7804         * src/pic16/pcodepeep.c: Cleaned warnings
7805         * src/pic16/ralloc.c: Cleaned warnings
7806
7807 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7808
7809         * doc/sdccman.lyx: fixed bug 739745
7810         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7811
7812 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7815         it can be defined with CFLAGS when running configure
7816         * src/SDCCmain.c: fixed compiling + linking with object files
7817
7818 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7819
7820         * configure.in: configure for pic16 port,
7821             added --disable-pic16-port
7822         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7823         * src/SDCCmain.c: linkOptions is changed to set *,
7824             added if/endif conditional macros to remove options help
7825             messages from optionsTable when a port is not configured, added
7826             support for the PIc16 port in the ports table, when executing
7827             the compiler with no port specified on command line, a default
7828             port is selected with the new macro DEFAULT_PORT which is
7829             defined in port.h, in setDefaultOptions() linkOptions is removed
7830             from initialization assignment, since now it is a set,
7831             parseCmdLine uses setParseWithComma for linkOptions, in
7832             linkEdit() linkOptions are accessed with new function indexSet()
7833             which returns the i'th item of a set variable. See SDCCset.c, in
7834             linkEdit() when calling buildCmdLine(), added linkOptions as
7835             last argument. Now users can pass arguments to gplink via the
7836             -Wl option, main() uses pic16glue() to glue up pic16 programs
7837         * src/SDCCpeeph.c: various changes to support pic16
7838         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7839             return the i'th item of the set
7840         * src/SDCCset.h: added function prototype for indexSet()
7841         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7842         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7843         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7844             added macro DEFAULT_PORT
7845         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7846         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7847             generated
7848         * src/pic16/glue.c: commented out some error producing lines
7849         * src/pic16/main.c: __config directives are commented out to stop
7850             gpasm complaining and test the linkage with gplink, _linkCmd and
7851             _asmCmd changed to be more gplink and gpasm friendly
7852         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7853             produced an error when parsed, peep rule 12 is added to utilize
7854             movff, but it is commented out since the pCode does not support
7855             yet a command with 2 address arguments
7856
7857 2003-05-18    <johan AT balder>
7858
7859         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7860         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7861 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7862
7863         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7864   Added feature to script commands from file.
7865
7866 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7867
7868         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7869         * src/SDCCutil.c: include ctype.h for win32
7870
7871 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7872
7873         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7874
7875 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7876
7877         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7878   Fixed so you can set breakpoints prior to run, run does not stop
7879   on entry now.  Add tbreak.  Other enhancements and fixes for use
7880   with ddd.
7881
7882 2003-05-12  Borut Razem <borut.razem AT siol.net>
7883
7884         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7885
7886 2003-05-11  Borut Razem <borut.razem AT siol.net>
7887
7888         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7889         the path of bin directory, so that PATH is the only env. variable, which has to be set
7890         in case of standard installation.
7891         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7892         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7893         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7894
7895 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7896
7897         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7898         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7899         temp files are in the port dir; clean the gen/test directory when
7900         generating new test.c
7901         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7902         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7903         * support/regression/tests/zeropad.c: added
7904
7905 2003-05-09    <johan AT balder>
7906
7907         * src/SDCCglue.c: fixed bug #597940
7908
7909 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7910
7911         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7912   cache sfr, optimize next,step, fix off by one sourceline,
7913   support ddd list function.
7914         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7915
7916 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7917
7918         * support/regression/HTMLgen.py: added compare_s2f()
7919         * support/regression/Makefile: redo 1.27
7920         * support/regression/generate-cases.py: redo 1.5
7921
7922 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7923
7924         * support/regression/tests/float.c: workaround 33 bit hex constant
7925         * support/regression/tests/simplefloat.c: fix division for host
7926
7927 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7928
7929         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7930         that tame's the PIC's over-aggressive optimizer.
7931
7932 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7933
7934          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7935          support for MSVC.
7936
7937 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7938
7939         Initial support for DS80C400. "Hello world" runs on TINIm400
7940         (with polled I/O).
7941
7942 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7943
7944          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7945          * Some notes on ddd usage added in debugger/README
7946          Martin Helmling adding more features and fixes for ddd GUI debugger.
7947          Code added for nexti, stepi, up, down, and other adjustments.
7948
7949 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7950
7951         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7952         * src/pic/peeph.def Added two rules to optimize carry manipulation
7953         * src/pic/* removed debug printfs
7954
7955 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7956
7957         * debugger/mcs51/cmd.c: added header newalloc.h
7958
7959 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * as/Makefile: new EXEEXT
7962         * as/z80/Makefile: remove trailing slash of BUILDIR
7963         * as/z80/clean.mk: new EXEEXT
7964         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7965         * support/cpp2/Makefile.in: new EXEEXT
7966         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7967
7968 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7969
7970         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7971         EXEEXT was introduced to fix all related problems with targets
7972         "clean", "install" and "uninstall"; a couple of further flaws
7973         especially with "clean" have been fixed too
7974         * as/mcs51/Makefile.in
7975         * as/mcs51/clean.mk
7976         * as/z80/Makefile
7977         * Makefile
7978         * clean.mk
7979         * debugger/mcs51/Makefile.in
7980         * debugger/mcs51/clean.mk
7981         * link/z80/Makefile
7982         * link/z80/Makefile.in
7983         * link/z80/clean.mk
7984         * link/Makefile
7985         * packihx/Makefile.in
7986         * packihx/clean.mk
7987         * sim/ucsim/Makefile
7988         * sim/ucsim/clean.mk
7989         * sim/ucsim/avr.src/Makefile.in
7990         * sim/ucsim/avr.src/clean.mk
7991         * sim/ucsim/s51.src/Makefile.in
7992         * sim/ucsim/s51.src/clean.mk
7993         * sim/ucsim/xa.src/Makefile.in
7994         * sim/ucsim/xa.src/clean.mk
7995         * sim/ucsim/z80.src/Makefile.in
7996         * sim/ucsim/z80.src/clean.mk
7997         * sim/ucsim/main_in.mk
7998         * sim/ucsim/packages_in.mk
7999         * sim/ucsim/gui.src/Makefile.in
8000         * sim/ucsim/gui.src/serio.src/Makefile.in
8001         * sim/ucsim/gui.src/serio.src/clean.mk
8002         * src/Makefile.in
8003         * src/clean.mk
8004         * support/cpp2/Makefile.in
8005         * support/cpp2/clean.mk
8006         * support/makebin/Makefile
8007         * support/makebin/clean.mk
8008         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8009         * doc/sdccman.lyx: --program-suffix no longer needed
8010
8011 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8012
8013          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8014          Martin Helmling added support for ddd GUI debugger.
8015          Code added to display assembly, set variables, and other commands
8016          to interface to ddd.
8017
8018 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         * as/Makefile: fix target clean
8021         * as/clean.mk: fix target clean
8022         * as/z80/clean.mk: fix target clean
8023
8024 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8025
8026         * Makefile.common.in: added  AT EXEEXT AT
8027         * configure.in: removed all mingw32 stuff
8028         * configure: rebuilt from configure.in
8029         * doc/sdccman.lyx: updated section "installation"
8030         * support/scripts/sdcc_mingw32: adapted to configure
8031         * support/scripts/sdcc_cygwin_mingw32: added
8032
8033 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8034
8035         * src/pic Added object file support for the PIC port
8036         * src/pic Applied patch from Craig Franklin (this started the object file support)
8037         * src/regression Updated the PIC regression tests for object files
8038
8039 2003-04-20  Borut Razem <borut.razem AT siol.net>
8040
8041         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8042           lklex.c: In function `getfid':
8043           lklex.c:203: warning: array subscript has type `char'
8044         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8045           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8046         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8047           stack handling macros
8048
8049 2003-04-19  Borut Razem <borut.razem AT siol.net>
8050
8051         * "handling space characters in file path" task:
8052         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8053         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8054         * support/Util/MySystem.h: make it self-sufficient
8055         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8056           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8057           handling space characters in file path
8058         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8059           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8060         * support/Util/MySystem.c: handling space characters in executable's path
8061
8062 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         * as/z80/Makefile: fix permanent rebuild of z80
8065         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8066         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8067
8068 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8069
8070         * src/SDCCopt.c: add special case optimization to replace modulo by
8071           a power of two with a bitwise AND.
8072
8073 2003-04-18    <johan AT balder>
8074
8075         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8076
8077 2003-04-17    <johan AT balder>
8078
8079         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8080         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8081
8082 2003-04-13  Borut Razem <borut.razem AT siol.net>
8083
8084         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8085         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8086           fixed mingw problem in adl_NORMALIZE_PATH
8087
8088 2003-04-12  Borut Razem <borut.razem AT siol.net>
8089
8090         * fixed "#pragma SAVE/RESTORE can not be nested":
8091         * src/SDCC.lex: reworked pragma handling functions
8092         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8093         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8094
8095 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8096
8097         * src/SDCCutil.c (pathEquivalent): defined but not used
8098         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8099         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8100         * configure: rebuilt from configure.in
8101         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8102         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8103         * device/include/Makefile.in: replace sdcc_datadir
8104         * device/lib/Makefile.in: replace sdcc_datadir
8105         * Makefile.common.in: add LDFLAGS from configure
8106         * packihx/Makefile.in: use LDFLAGS
8107         * src/Makefile.in: use LDFLAGS
8108         * support/cpp2/Makefile.in: add LDFLAGS from configure
8109         * support/makebin/Makefile: use LDFLAGS
8110         * .version: bumped version number to 2.3.5
8111
8112 2003-04-12  Borut Razem <borut.razem AT siol.net>
8113
8114         * completed "different paths" task:
8115         * src/SDCCmacro.c: fixed bug in handling quotes
8116         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8117         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8118
8119 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8120
8121         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8122
8123 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8124
8125         * ds390/gen.c ds390/peeph.def: fix bug 706781
8126
8127 2003-04-11  Borut Razem <borut.razem AT siol.net>
8128
8129         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8130
8131 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8132
8133         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8134         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8135          set - this bit used to not be set...).
8136         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8137           bad code in PIC Port
8138         * src/regression/and2.c added to test bug 609268
8139         * src/regression/Makefile added and2.c to regression test
8140
8141
8142 2003-04-08    <johan AT CP255758-A>
8143
8144         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8145         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8146         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8147
8148 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8151         fix bug #487815
8152         * support/cpp2/Makefile.in: fix bug #487815
8153         * configure: rebuilt from configure.in
8154         * Makefile.common.in: docdir changed, new path suffixes
8155         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8156         * sdcc_vc_in.h: reflect changes from sdccconf.h
8157         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8158         * src/SDCCutil.h: remove BINDIR hack
8159         * doc/sdccman.lyx: update new path hierarchy
8160
8161 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8162
8163         * src/SDCCpeeph.c: added okToRemoveSLOC test
8164
8165 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8166
8167         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8168
8169 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8170
8171         * src/SDCCpeeph.c: added labelIsReturnOnly test
8172         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8173
8174 2003-04-05    <johan AT balder>
8175
8176         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8177         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8178         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8179         * src/SDCCast.c: fixed a warning
8180         * src/SDCCast.h: fixed a warning
8181         * src/SDCCicode.c (operandFromAst): fixed a warning
8182
8183 2003-04-04    <johan AT balder>
8184
8185         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8186         * src/SDCCast.c (decorateType): fixed bug #715076
8187         * src/SDCC.y: fixed bug #702907
8188
8189 2003-04-03    <johan AT balder>
8190
8191         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8192         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8193         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8194         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8195         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8196
8197 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8198
8199         * _decdptr.c: fix return values
8200         * _gptrget.c: fix return values
8201         * _gptrgetc.c: fix return values
8202         * _gptrput.c: fix return values
8203         * _mulint.c: fix return values
8204         * as/z80/Makefile: fix 'make -j' problem
8205
8206 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8207
8208         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8209         * configure.in: big cleanup, updated to autoconf 2.5x
8210         * configure: rebuilt from configure.in
8211         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8212         * sdcc_vc_in.h: reflect changes from sdccconf.h
8213         * doc/Makefile: fixed a flaw in "make install"
8214
8215 2003-04-02    <johan AT balder>
8216
8217         * src/ds390/gen.c (genCmp): no comments
8218         * src/mcs51/gen.c (genCmp): no comments
8219         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8220         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8221
8222 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8223
8224         * support/regression/generate-cases.py: place generated file in given sub directory
8225         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8226         * support/regression/Makefile: improvements for 'make -j';
8227         side effect: it's simpler and faster now
8228
8229 2003-03-31  Borut Razem <borut.razem AT siol.net>
8230
8231         * src/z80/main.c: link-{port} and as-{port} defined without path
8232         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8233
8234 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8237
8238 2003-03-30  Borut Razem <borut.razem AT siol.net>
8239
8240         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8241           changed type of list parameter to set
8242         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8243         * src/port.h: changed type of do_assemble() parameter to set
8244         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8245           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8246           definition of "cppoutfilename" macro with NULL value in preProcess()
8247         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8248         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8249         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8250           replaced with set *binPathSet
8251         * shash_add() deallocates the item, if allready exsists, before adding the new one
8252         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8253
8254 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8255
8256         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8257           a nested for loop bug in the PIC port
8258         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8259           for loops
8260
8261 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8262
8263         * support/Util/dbuf.h: remove C++ stuff to make it portable
8264
8265 2003-03-28  Borut Razem <borut.razem AT siol.net>
8266
8267         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8268           literal strings in stringLiteral()
8269         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8270         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8271           to the project
8272
8273 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8274
8275         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8276
8277 2003-03-26    <johan AT balder>
8278
8279         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8280         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8281         * src/SDCCast.c (decorateType): fixed " -v < 3"
8282
8283 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8284
8285         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8286         Added Lenny Story's debug infrastructure changes:
8287         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8288         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8289         * src/cdbFile.c: added
8290         * src/SDCCdebug.c: added
8291         * src/SDCCdebug.h: added
8292         * src/SDCCast.c (createFunction)
8293         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8294         * src/SDCCmain.c (parseCmdLine, main)
8295         * src/SDCCmem.c (redoStackOffsets)
8296         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8297         * src/SDCCsymt.h
8298         * src/common.h
8299         * src/avr/gen.c (genAVRCode)
8300         * src/ds390/gen.c (gen390Code)
8301         * src/mcs51/gen.c (gen51Code)
8302         * src/pic/gen.c (genpic14Code)
8303         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8304         * src/xa51/gen.c (genXA51Code)
8305         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8306
8307 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8308
8309         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8310         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8311
8312 2003-03-22    <johan AT balder>
8313
8314         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8315
8316 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8317
8318         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8319         * doc/cdbfileformat.lyx: added, written by Lenny Story
8320         * doc/Makefile: added cdbfileformat.lyx
8321         * doc/clean.mk: added cdbfileformat.lyx
8322
8323 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8324
8325         * src/mcs51/peeph.def: fix bug #705773
8326
8327 2003-03-20    <johan AT balder>
8328
8329         An sfr/sbit can have an "at #" AND an initializer
8330         * src/SDCCsymt.c (checkSClass):
8331         * src/SDCCmem.c (allocGlobal):
8332         * src/SDCCmem.c (allocLocal):
8333         * src/SDCCast.c (createBlock):
8334
8335 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8336
8337         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8338
8339 2003-03-16    <johan AT balder>
8340
8341         Undid the hackup of const and volatile, the problem is much bigger
8342         * src/SDCC.y:1.65
8343         * src/SDCCast.c:1.171
8344         * src/SDCCglue.c:1.138
8345         * src/SDCCicode.c:1.146
8346         * src/SDCCsymt.c:1.150
8347         * src/SDCCval.c:1.65
8348
8349 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8350
8351         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8352         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8353
8354 2003-03-13    <johan AT balder>
8355
8356         Hackup const and volatile modifiers in type chains a bit:
8357         * src/SDCC.y:1.63
8358         * src/SDCCast.c:1.169
8359         * src/SDCCglue.c:1.136
8360         * src/SDCCicode.c:1.143
8361         * src/SDCCsymt.c1.146
8362         * src/SDCCsymt.h1.59
8363         * src/SDCCval.c:1.63
8364
8365 2003-03-12    <johan AT balder>
8366
8367         * src/SDCCBBlock.h: more LRH debugging junk
8368         * src/SDCCcflow.h: more LRH debugging junk
8369         * src/SDCCloop.c: more LRH debugging junk
8370         * src/SDCC.y (struct_declaration): fixed bug #697590
8371         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8372         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8373         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8374
8375 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8376         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8377         test function names must now match exactly).
8378         * src/SDCCcse.c: added special case in findCheaperOp to allow
8379         extending a short integer. Makes less awful code for bug 700121 test case.
8380
8381 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8382
8383         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8384         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8385
8386 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8387
8388         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8389         actually called (operandsNotEqual() was called for all
8390         operandsNotEqualX tests).
8391
8392 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8393
8394         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8395         with shorter literals. Fixes bug 700121.
8396
8397 2003-03-11    <johan AT balder>
8398
8399         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8400
8401 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8402
8403         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8404         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8405
8406 2003-03-10  Borut Razem <borut.razem AT siol.net>
8407
8408         * src/SDCCmain.c: pipe preprocessor's output
8409         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8410         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8411         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8412         which closes all pipes in pipeSet set
8413         * src/SDCCset.c: free deleted item in function deleteSetItem()
8414         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8415         moved from z80 to src subproject
8416         * .version: increased version number to 2.3.4
8417
8418 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8421         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8422         * support/regression/ports/xa51/spec.mk: fix typo
8423
8424 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8425
8426         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8427
8428 2003-03-09  Borut Razem <borut.razem AT siol.net>
8429
8430         * src/SDCCmain.c: pipe preprocessor's output
8431         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8432         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8433         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8434         which closes all pipes in pipeSet set
8435         * src/SDCCset.c: free deleted item in function deleteSetItem()
8436         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8437         moved from z80 to src subproject
8438
8439 2003-03-09  Borut Razem <borut.razem AT siol.net>
8440
8441         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8442         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8443         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8444         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8445         * src/SDCCglobl.h: unification of WIN32 native definitions
8446
8447 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8448
8449         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8450
8451 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8452
8453         * src/configure.in:   check for endianess (even while cross-compiling)
8454         * src/configure:      check for endianess (even while cross-compiling)
8455         * src/configure_in.h: check for endianess (even while cross-compiling)
8456         * src/avr/gen.c:        remove old endianess stuff
8457         * src/mcs51/gen.c:      remove old endianess stuff
8458         * src/ds390/gen.c:      remove old endianess stuff
8459         * src/pic/gen.c:        remove old endianess stuff
8460         * src/pic/genarith.c:   remove old endianess stuff
8461         * src/pic/glue.c:       fix endianess check
8462         * src/pic16/gen.c:      remove old endianess stuff
8463         * src/pic16/genarith.c: remove old endianess stuff
8464         * src/pic16/glue.c:     fix endianess check
8465         * src/xa51/gen.c:       remove old endianess stuff
8466         * src/z80/gen.c:        fix endianess check
8467         * src/SDCCglue.c:       fix endianess check
8468         * src/ds390/peeph.def: fix bug 700036
8469
8470 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8471
8472         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8473         * src/configure: find appropriate data-types on host for SDCC's int and long
8474         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8475         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8476         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8477
8478 2003-03-07    <johan AT balder>
8479
8480         Just a big NOOP:
8481                 some minor cleanups before the big shot
8482                 OP_DEFS and OP_USES now use Kevin's protection
8483                 new option --nolabelopt
8484
8485         * src/SDCCBBlock.c:
8486         * src/SDCCast.c,:
8487         * src/SDCCcflow.c:
8488         * src/SDCCcse.c:
8489         * src/SDCCicode.c:
8490         * src/SDCCicode.h:
8491         * src/SDCClabel.c:
8492         * src/SDCCloop.c:
8493         * src/SDCCmain.c:
8494         * src/ds390/ralloc.c:
8495         * src/mcs51/ralloc.c:
8496         * src/pic/ralloc.c:
8497         * src/xa51/ralloc.c:
8498         * src/z80/ralloc.c:
8499
8500 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8501
8502         * src/pic/pcode.c (get_op): fix 64 bit warnings
8503         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8504         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8505         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8506         * support/regression/tests/malloc.c: fix 64 bit warnings
8507
8508 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         * src/mcs51/gen.c (genMinus): fixed bug 696436
8511
8512 2003-03-02  Borut Razem <borut.razem AT siol.net>
8513
8514         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8515
8516 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8517
8518         * configure.in: test for mkstemp
8519         * sdccconf_in.h: add HAVE_MKSTEMP
8520
8521 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8522
8523         * device/include/ctype.h: removed warning while using --stack-auto
8524         * device/include/malloc.h: removed warning while using --stack-auto
8525         * device/include/string.h: removed warning while using --stack-auto
8526
8527 2003-02-23  Borut Razem <borut.razem AT siol.net>
8528
8529         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8530         because NDEBUG is defined (see man assert)
8531         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8532
8533 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8534
8535         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8536         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8537
8538 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8539
8540         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8541         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8542
8543 2003-02-18    <johan AT balder>
8544
8545         * as/mcs51/asmain.c (asmbl): module can start with a digit
8546         * as/z80/asmain.c (asmbl): module can start with a digit
8547
8548 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8549
8550         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8551         * src/asm.c: fix pipe() for Mingw32
8552
8553 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8554
8555         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8556         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8557         make -V work again; --c1mode reads now from stdin
8558         * doc/sdccman.lyx: added --c1mode
8559         * support/Util/SDCCerr.c: new messages for c1 mode
8560         * support/Util/SDCCerr.h: new messages for c1 mode
8561         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8562
8563 2003-02-15    <johan AT balder>
8564
8565         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8566
8567 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8568
8569         * doc/sdccman.lyx: Environment variables, -o and other minor things
8570
8571 2003-02-14    <johan AT balder>
8572
8573         * src/xa51/main.c: before anyone really tries to use it :)
8574
8575         * Install doc's in share/sdcc/doc
8576         * removed some obsolete files
8577         * Do a proper make distclean and uninstall
8578         M Makefile.common.in
8579         R sdccbuild.sh
8580         M as/Makefile
8581         M device/include/Makefile.in
8582         M device/lib/Makefile.in
8583         M doc/sdccman.lyx
8584         M link/Makefile
8585         M sim/ucsim/doc/Makefile.in
8586         M src/clean.mk
8587         R src/avr/peeph.rul
8588         R src/xa51/peeph.rul
8589         M support/cpp2/Makefile.in
8590         M support/makebin/Makefile
8591
8592
8593 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8594
8595         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8596
8597 2003-02-10  Borut Razem <borut.razem AT siol.net>
8598
8599         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8600         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8601         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8602         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8603         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8604         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8605         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8606         src/z80/Makefile.bcc: Borland Makefile cleanup
8607         * as/z80/Makefile.bcc: Added Borland Makefile
8608         * support/cpp2/borland.h: Removed
8609
8610 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8611
8612         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8613         * src/SDCC.lex: new pragma NOIV
8614         * src/SDCCglobl.h: new pragma NOIV
8615         * src/SDCCmem.c: new pragma NOIV
8616
8617 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8618
8619         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8620
8621 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8622
8623         * src/SDCCmain.c: signal handling is switched off by --debug
8624         * doc/Makefile: small fix for install; use clean.mk again
8625         * doc/clean.mk: clean *.pdf and *.html too
8626
8627 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8628
8629         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8630         * device/lib/printfl.c: fix a ds390 bug by making it portable
8631         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8632         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8633         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8634         * debugger/mcs51/cmd.c: converted multi-line string literals
8635         * sim/ucsim/globals.cc: converted multi-line string literals
8636         * src/SDCCmain.c: introduced signal handler to remove temp files
8637         * doc/Makefile: small tweaks, implement clean
8638         * doc: removed generated files
8639
8640 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8641
8642         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8643         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8644         Address Record is not correctly generated for DS390."
8645
8646 2003-02-02  Borut Razem <borut.razem AT siol.net>
8647
8648         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8649         * as/mcs51/asm.h: fixed compilation with Borland C
8650         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8651         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8652         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8653         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8654         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8655         src/z80/Makefile.bcc: delete $(LIB) only if exist
8656         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8657
8658 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8659
8660         * device/include/malloc.h: introduced NULL
8661         * device/include/string.h: introduced NULL
8662         * device/include/stdlib.h: introduced NULL
8663         * device/lib/_memcpy.c: removed NULL
8664         * device/lib/_strcat.c: removed NULL
8665         * device/lib/_strchr.c: removed NULL
8666         * device/lib/_strcmp.c: removed NULL
8667         * device/lib/_strcpy.c: removed NULL
8668         * device/lib/_strcspn.c: removed NULL
8669         * device/lib/_strlen.c: removed NULL
8670         * device/lib/_strncat.c: removed NULL
8671         * device/lib/_strncmp.c: removed NULL
8672         * device/lib/_strncpy.c: removed NULL
8673         * device/lib/_strpbrk.c: removed NULL
8674         * device/lib/_strrchr.c: removed NULL
8675         * device/lib/_strspn.c: removed NULL
8676         * device/lib/_strstr.c: removed NULL
8677         * device/lib/_strtok.c: removed NULL
8678         * device/lib/malloc.c: removed NULL, include own header
8679
8680 2003-02-02    <johan AT balder>
8681
8682         * 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
8683         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8684         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8685         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8686         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8687         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8688
8689 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8690
8691         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8692         area 'DATA'"
8693
8694 2003-02-01    <johan AT balder>
8695
8696         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8697
8698 2003-01-31    <johan AT CP255758-A>
8699
8700         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8701
8702 2003-01-30    <johan AT balder>
8703
8704         * src/SDCCBBlock.c: automatic bug detection
8705         * src/SDCCicode.c: automatic bug detection
8706
8707 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8708
8709         * src/SDCCglobl.h:   now --xram-size 0 works
8710         * src/SDCCmain.c:    now --xram-size 0 works
8711
8712 2003-01-29    <johan AT balder>
8713
8714         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8715
8716 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8717
8718         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8719         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8720         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8721         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8722         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8723         * src/SDCCmain.c:    Added options --xram-size and --code-size
8724
8725 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8726
8727         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8728         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8729
8730 2003-01-27    <johan AT balder>
8731
8732         * src/SDCC.y: fixed bug #613764
8733
8734 2003-01-26    <johan AT balder>
8735
8736         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8737         * src/SDCCsymt.h: fixed bug #673374
8738         * src/SDCCglue.c: fixed bug #661910
8739         * src/SDCCast.c: fixed bug #458099 and 673374
8740
8741 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8744         * as/mcs51/strcmpi.h: added
8745         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8746         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8747         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8748         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8749         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8750         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8751         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8752         * as/mcs51/Makefile.aslink: new module strcmpi
8753         * as/mcs51/Makefile.asx8051: new module strcmpi
8754         * as/mcs51/Makefil.bcc: new module strcmpi
8755         * as/mcs51/Makefile.in: new module strcmpi
8756         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8757
8758 2003-01-26    <johan AT balder>
8759
8760         * src/SDCCglue.c: reverted back to 1.124
8761         * src/SDCCast.c: reverted back to 1.156
8762         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8763
8764 2003-01-25    <johan AT balder>
8765
8766         * src/SDCCglue.c: A better fix for bug #661910
8767         * src/SDCCast.c: A better fix for bug #661910
8768         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8769
8770 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8771
8772         * src/Makefile.in: remove spawn.o
8773         * src/SDCCmain.c: remove spawn.h
8774         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8775         * src/spawn.c: removed
8776         * src/spawn.h: removed
8777         * support/regression/ports/ds390/spec.mk: link with -r
8778
8779 2003-01-24    <johan AT CP255758-A>
8780
8781         * src/ds390/gen.c (aopOp): fixed bug #667458
8782         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8783         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8784         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8785
8786 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8787
8788         * src/mcs51/peeph.def: better assembler identation by Frieder
8789         * src/mcs51/gen.c: better assembler identation by Frieder
8790
8791 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8792
8793         * as/z80/string.h: removed for gcc 3.2
8794         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8795         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8796
8797 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8798
8799         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8800         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8801         * support/regression/Makefile: separate temp files for ports
8802         * support/regression/generate-cases.py: separate temp files for ports
8803         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8804         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8805
8806 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8807
8808         * moved tinitalk to device/examples/ds390
8809
8810 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8811
8812         * as/mcs51/lkmem.c: rflag is for DS390
8813         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8814         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8815                          (linkEdit): move mem- and map-files the same way as ihx-files
8816         * src/z80/main.c (_setDefaultOptions): removed --generic
8817         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8818         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8819         * src/pic/glue.c (picglue): --c1mode works again
8820         * src/pic16/glue.c (pic16glue): --c1mode works again
8821         * src/asm.c (printCLine): fix #660034
8822
8823 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8824
8825         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8826         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8827         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8828         * as/mcs51/lkmem (summary): better fix for sp problem
8829         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8830         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8831         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8832                                               remove --stack-after-data
8833
8834 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8835
8836         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8837         * src/SDCCutil.c (join): ugly bug: missing '\0'
8838         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8839
8840 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8841
8842         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8843         * src/port.h: typo
8844         * src/pic/main.c (_asmCmd): gpasm supports -o
8845         * src/z80/main.c: more general macros
8846         * device/lib/Makefile.in: remove intermediate files
8847
8848 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8849
8850         * .version: Bumped version number to 2.3.3
8851         * src/SDCCBBlock.c: new option -o
8852         * src/SDCCglobl.h: new option -o
8853         * src/SDCCglue.c: new option -o
8854         * src/SDCCmain.c: new option -o
8855         * src/asm.c: new option -o
8856         * src/ds390/main.c: new option -o
8857         * src/pic/glue.c: new option -o
8858         * src/pic/pcode.c: new option -o
8859         * src/pic/ralloc.c: new option -o
8860         * src/pic16/glue.c: new option -o
8861         * src/pic16/pcode.c: new option -o
8862         * src/pic16/ralloc.c: new option -o
8863         * src/z80/main.c: new option -o
8864         * device/lib/Makefile.in: use -o
8865         * support/regression/ports/ds390/spec.mk: use -o
8866         * support/regression/ports/gbz80/spec.mk: use -o
8867         * support/regression/ports/mcs51/spec.mk: use -o
8868         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8869         * support/regression/ports/z80/spec.mk: use -o
8870         * support/regression/ports/ucz80/spec.mk: use -o
8871         * support/regression/ports/xa51/spec.mk: use -o
8872         * support/regression/fwk/lib/timeout.c: fix usage string
8873
8874 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8875         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8876
8877 2003-01-07    <johan AT balder>
8878
8879         * src/SDCCast.c (decorateType): fixed bug #600035
8880
8881 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8882         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8883         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8884         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8885         * src/pic/pcode.c: outcommented unused variable to remove warnings
8886         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8887
8888 2003-01-06    <karl AT turbobit.com>
8889         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8890    regression tests.
8891
8892 2003-01-06    <johan AT balder>
8893
8894         * src/SDCCicode.c: fixed array add
8895
8896 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8897         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8898         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8899
8900 2003-01-04    <johan AT balder>
8901
8902         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8903
8904 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8905         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8906
8907 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8908         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8909         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8910
8911 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8912         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8913
8914 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8915         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8916
8917 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8918         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8919
8920 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8921
8922     * in \sdcc\as\mcs51\ changed these files in order to create an
8923     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8924     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8925     following files to include the previous two files: aslink.dsp,
8926     Makefile.aslink, Makefile.bcc, and Makefile.in.
8927
8928     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8929     .adb instead of .cdb
8930
8931 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8932
8933         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8934         value from option --iram-size.
8935
8936 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8937
8938         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8939         dram[] array.
8940
8941 2002-09-18    <wiml AT hhhh.org>
8942
8943         * SDCClrange.h: exposed setFromRange() and setToRange()
8944         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8945           packRegsForAccUse() (bug 542397)
8946         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8947           multiple times and emitting the fetch operations more than once
8948           added aopGetUsesAcc() function to allow binary operators to
8949           fetch their operands in the correct order; made genMinus() emit
8950           compact code for X = LITERAL - Y
8951
8952 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8953         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8954         sprintf() in line 1267.
8955
8956 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8957         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8958         like ports.
8959
8960 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8961         Changes to aslink (All the changes are marked with 'JCF'):
8962
8963         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8964         summary().
8965
8966         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8967         area BSEG.  Also moves, if possible, the DATA area down into the internal
8968         ram so more space is available.
8969
8970         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8971         sflag.
8972
8973         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8974         not bytes.  Function summary() which creates a memory usage summary
8975         file with extension .mem.  Reports of overlaping stack and small stack
8976         size.  If the space for the stack is less than 16 bytes aslink trows a
8977         warning.
8978
8979         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8980         the 8051.  Option 'y' for memory summary output file.
8981
8982         Changes to sdcc (All the changes are marked with 'JCF'):
8983
8984         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8985
8986         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8987         overlaying area for it (uses RegBankUsed[4]).
8988
8989         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8990         bank zero as used by default.  By default aslink locates the stack
8991         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8992         the creation of the .mem file.  Delegates the allocation of data area
8993         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8994         the begining of the stack area to aslink.
8995
8996         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8997         glue() in SDCCglue.c creates an area for it.
8998
8999 2002-09-03  Borut Razem <borut.razem AT siol.net>
9000         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9001         sdcc/src/pic/glue.c:
9002         introduced atexit() handler for teporay files removal in case of
9003         errors, assertions, ...
9004
9005 2002-08-29  Borut Razem <borut.razem AT siol.net>
9006         * sdcc/support/cpp2/auto-host_vc_in.h:
9007         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9008         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9009         Maybe there is a similar problem with BORLANDC? It should be checked!
9010
9011         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9012         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9013         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9014         was not executed, and the compiler (cl) launched a warning:
9015         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9016
9017 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9018         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9019
9020 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9021         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9022
9023         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9024           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9025           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9026           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9027           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9028           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9029           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9030         - added Release configuration in VS projects
9031         - review of compiler an linker options
9032         - VC .exe files are generated in bin_vc directory, not to interfere
9033           with binaries generated from other projects (cygwin, mingw, bcc ...)
9034
9035         * sdcc/src/yacc.dsp: added
9036
9037         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9038         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9039         and insert the version number definitions from .version
9040
9041         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9042
9043         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9044         added - genarate auto-host.h using auto-host_vc_in.h as template
9045
9046         * sdcc/sdcc_vc.h,
9047         removed from CVS, generated automatically
9048
9049 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9050         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9051
9052 2002-08-11  Borut Razem <borut.razem AT siol.net>
9053         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9054
9055 2002-08-10  Borut Razem <borut.razem AT siol.net>
9056         * src/SDCCmain.c (main):
9057         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9058         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9059         The consequence was that some temporary files were not removed.
9060
9061         * src/SDCCglue.c:
9062         unification of code in functions tempfilename() and tempfile():
9063         function tempnam() is defined in Visual Studio 6.0 and .NET
9064
9065         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9066
9067         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9068           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9069         - removed compiler command line option /WX: Treats all warnings as errors
9070         - update a list of source files, included into the project
9071
9072         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9073           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9074         changed project type to Generic Project so that can be correcly converted to VS.NET project
9075
9076         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9077
9078         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9079
9080         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9081
9082         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9083         added return 0 statements after assert() to make compiler happy
9084
9085         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9086         added newline in the def file to keep MSC compiler satisfied
9087
9088         * sdcc/src/z80/gen.c:
9089         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9090           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9091         - solved MSC error in function aopDump()
9092
9093         * sdcc_vc.h: define PREFIX as "\\sdcc"
9094
9095 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9096         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9097
9098 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9099         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9100         - Rewrote the register banking algorithm.
9101         - Added pCode live-range analysis to registers (for now, only non-used and
9102         singly-used registers optimized away)
9103
9104         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9105
9106         * 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.
9107
9108 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9109         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9110
9111 2002-04-22  Michael Hope  <michaelh AT vroom>
9112
9113         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9114
9115         * configure.in (DD_COPT): Added include support required for gbdk.
9116
9117         * .version: Bumped version number just to increase it.
9118
9119         * src/SDCCmain.c: Added -nostdinc to the default options.
9120
9121 2002-04-15  Michael Hope  <michaelh AT vroom>
9122
9123         * device/lib/z80/printf.c (sprintf): Added.
9124
9125         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9126
9127         * src/z80/peeph.def: Added transpose redundent load rule.
9128
9129         * src/z80/main.c: Added force callee saves for jaune.
9130
9131         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9132
9133         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9134
9135 2002-03-28  Johan Knol  <johan AT balder>
9136
9137         * src/SDCCval.c: fixed bug #532436
9138
9139 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9140         * /src/port.h:
9141         Added "char *Processor" field to the port structure.
9142
9143         * /src/SDCCmain.c:
9144         Added -p option. Allows port dependent processor to be specified.
9145
9146         * all ports:
9147         Initialized the new field char *Processor field to NULL in all ports
9148
9149         * /src/pic/*:
9150         Compiler generated registers for interrupt context saving
9151         were not getting allocated.
9152
9153 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9154
9155         * /src/SDCCast.c:
9156         Fixed left shift. Will promote the left side of a left shift
9157         if a) left shifting more than size of operand or b) when assigned
9158         to something size > size of left side
9159
9160 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9161         * src/pic/*
9162         tons of changes. Register allocation has been
9163         rewritten. Added customization for the various PICs. Flow
9164         analysis is restructured. ...
9165
9166         * src/pic/device.h:
9167         Added
9168
9169         * src/pic/device.c:
9170         Added. device.c is a PIC port hack to accomodate variations
9171         in PIC devices.
9172
9173 2002-03-13  Michael Hope  <michaelh AT vroom>
9174
9175         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9176
9177 2002-03-04  johanknol  <johanknol AT manik>
9178
9179         * /src/SDCCval.c: fixed
9180
9181         const unsigned char arr[][2] = { { 0, 1 } };
9182         t18.c:1: error: Initializer element is not constant
9183
9184 2002-03-04  bela  <bela AT manik>
9185
9186         * /device/include/mcs51reg.h:
9187         ds89c420 register definition update
9188
9189 2002-03-03    <johan AT FRIJA>
9190
9191         * support/Util/SDCCerr.c: did something, but don't no why anymore
9192
9193         * support/regression/tests/bug-524691.c: made it a little less shy
9194
9195         * src/SDCCast.c (decorateType): fixed bug #524697
9196
9197         * src/SDCCast.c: made some lineno improvements
9198
9199         * src/SDCCval.c (getNelements): changed warning to error
9200
9201         * src/SDCCglue.c (printIvalArray): changed warning to error
9202
9203         * src/SDCCicode.c: fixed a warning for mingw
9204
9205         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9206
9207         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9208
9209 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9210
9211         * src/ds390/peeph.def:
9212         Added some more peephole rules
9213
9214         * src/ds390/gen.c: Various fixes & enhancements
9215
9216         * src/SDCClrange.c, src/SDCClrange.h:
9217         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9218
9219         * src/ds390/ralloc.c:
9220         various fixes & enhancements (ds390) specific
9221
9222         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9223         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9224         from rallocs.
9225
9226         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9227
9228 2002-03-02    <johan AT FRIJA>
9229
9230         * src/SDCCast.c (decorateType): fixed bug #524708
9231
9232         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9233
9234         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9235
9236 2002-03-01  Michael Hope  <michaelh AT vroom>
9237
9238         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9239
9240         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9241
9242 2002-03-01    <johan AT FRIJA>
9243
9244         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9245
9246         * src/SDCCast.c (decorateType): fixed bug #524209
9247
9248         * src/SDCCval.c (valNot): fixed bug #524195
9249
9250 2002-02-26    <johan AT balder>
9251
9252         * src/xa51/gen.c: fixed a warning
9253
9254         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9255
9256         * src/SDCCast.c (decorateType): fixed bug #522534
9257
9258 2002-02-23    <johan AT balder>
9259
9260         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9261
9262 2002-02-22    <johan AT balder>
9263
9264         * src/SDCCast.c: fixed bug #514865
9265
9266         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9267
9268 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9269
9270         * sdcc/src/SDCCloop.c:
9271         Previous fix was not good. basic blocks that have "break" or "return" are
9272         not really partof a loop , but live ranges used in these blocks should
9273         be live thru the entire loop, so set partOfLoop but don't add them to
9274         loop region
9275
9276 2002-02-21    <johan AT FRIJA>
9277
9278         * src/SDCCcse.c: fixed bug #514308
9279
9280 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9281
9282         * src/SDCCloop.c:
9283         Fixed BUG #519583. If a conditional block ended in a return/break
9284         statement inside a loop, it was not being considered part of the loop.
9285
9286         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9287
9288 2002-02-10  Karl Bongers <karl AT turbobit.com>
9289
9290         * debugger/*:
9291         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9292         with lots of comments and notes.
9293
9294         * device/examples/test2.c:
9295         Fix bug, "red" variable not being initialized(compiler complained).
9296
9297         * device/examples/Makefile, examples/test3.c:
9298         Add Makefile in device/examples folder, compiles test3.c
9299         for use as a multiple module SDCDB test case.
9300
9301         * sim/ucsim/cmd.src/cmdset.cc:
9302         Took out debug printfs in ucsim "next" command.
9303
9304         * sim/ucsim/xa.src:
9305         Karl and Johan start ucsim XA support.  Most dissassembly working,
9306         about 75% emulation done(plenty of work remaining).
9307
9308         * sim/ucsim/z80.src:
9309         Add Z80 support to ucsim, add test-ucz80 regression test,
9310         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9311         Notice z80 compiler fails on examples/test3.c/crc code.
9312
9313 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9314
9315         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9316         Added support for --parms-in-bank1
9317
9318         * src/ds390/peeph.def:
9319         added a few more peephole optimzations
9320
9321         * src/ds390/main.c:
9322         1) added __builtin_inp & __builtin_outp used to read in data of given length
9323            from a memory mapped port
9324         2) added __builtin_memcmp
9325         3) added __builtin_swapw swap bytes of a short
9326
9327         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9328         1) handle multiple send & receives from register bank1
9329         2) ralloc can now allocate DPTR1 to some liveRanges
9330
9331         * src/SDCCsymt.c, src/SDCCsymt.h:
9332         changes to handle multiple sends & receives
9333
9334         * src/SDCCptropt.h:
9335         added some pointer arithmetic optimization
9336
9337         * src/SDCCptropt.c:
9338         added some pointer arithmetic optimizations but not stable yet so not
9339         called from anywhere (will get this working shortly)
9340
9341         * src/SDCCopt.c: fixed for multiple sends & receives
9342
9343         * src/SDCCmain.c:
9344         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9345         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9346            set preprocessor defines (depending on options)
9347
9348         * src/SDCCicode.c, src/SDCCicode.h:
9349         changes made to handle multiple sends & receives
9350
9351         * src/SDCCglobl.h:
9352         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9353
9354         * src/SDCCcse.c, src/SDCCcse.h:
9355         added function findbackward def (to be used in upcoming optimization)
9356
9357         * src/SDCCcflow.c, src/SDCCcflow.h:
9358         added function returnAtEnd - to determine if a basic block terminates with
9359         a RETURN iCode
9360
9361         * src/SDCCast.c, src/SDCCast.h:
9362         added option parms-in-bank1
9363
9364         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9365         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9366         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9367         adjusted for --parms-in-bank1 option
9368
9369         * device/include/string.h:
9370         donot redefine "reentrant" keyword
9371
9372         * device/include/ds80c390.h: Added some more SFRs
9373
9374 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9375
9376         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9377
9378 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9379
9380         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9381
9382 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9383
9384         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9385
9386 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9387
9388         * Added --xram-movc option
9389
9390 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9391
9392         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9393
9394 2002-01-11  Johan Knol
9395
9396         * Added math lib of Jesus Calvino-Fraga
9397
9398 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9399
9400         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9401         * support/regression/Makefile: new target test-mcs51-stack-auto
9402         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9403
9404 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9405
9406         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9407
9408 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9409
9410         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9411
9412 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9413
9414         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9415
9416         * src/SDCCglue.h: add definition for printIvalChar()
9417
9418 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9419
9420         * src/SDCCast.c: fix #498138 by Johan
9421
9422         * src/SDCCglue.c: fix #498138 by Johan
9423
9424 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9425
9426         * support/regression/Makefile: fix clean
9427
9428         * support/regression/ports/ds390/support.c: fix transmission of last character
9429
9430 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9431
9432         * /sdcc/src/ds390/gen.c:
9433         a) improved computing address of stack variable
9434         b) took out some #if 0 code
9435         c) improved parmBytes adjustment
9436         d) improved genPlusIncr & genMinusIncr
9437         e) genCmp could generate bad code (when left assigned to DPTR)
9438         f) Fixed bug in hasInc
9439
9440         * /sdcc/src/ds390/ralloc.c:
9441         a) packRegsForSupport could mess up live information (Fixed)
9442         b) packRegsDPTRuse could be incorrect for left & right shift
9443
9444         * /sdcc/src/mcs51/ralloc.c:
9445         packRegsForSupport could mess up the live information (Fixed)
9446
9447         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9448
9449         * /sdcc/src/SDCCast.c:
9450         can reverse a loop even if function call is present as long
9451         as the loop control variable is local & is not passed as parameter
9452
9453 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9454
9455         * /sdcc/ChangeLog: *** empty log message ***
9456
9457         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9458         More builtin function additions for TININative
9459
9460         * /sdcc/src/ds390/ralloc.c:
9461         Had broken the regression testsuite
9462
9463         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9464
9465         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9466         Added funcattr hasStackParms will be set for reentrant functions when there
9467         are paramteres on the stack, this helps in minimizing frame pointer generation
9468         typeFromStr can handle function pointers now
9469
9470         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9471         *** empty log message ***
9472
9473 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9474
9475         * /src/ds390/gen.c, /src/ds390/main.c:
9476         More builtin function additions for TININative
9477
9478         * /src/ds390/ralloc.c:
9479         Had broken the regression testsuite
9480
9481         * /src/SDCCast.c: Fixed a bug in dumptree
9482
9483         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9484         Added funcattr hasStackParms will be set for reentrant functions when there
9485         are paramteres on the stack, this helps in minimizing frame pointer generation
9486         typeFromStr can handle function pointers now
9487
9488         * /doc/builtins.txt, /doc/TININative.txt:
9489         *** empty log message ***
9490
9491
9492 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9493
9494         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9495         ALPHA version for -mTININative
9496
9497         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9498         updated to reflect changes in the port structure
9499
9500         * /src/port.h:
9501         added function do_assemble (similar to do_link) if non-null this function
9502         will be called to do assembly (-mTININative) requires a multi command
9503         assembly
9504         added function genAssemblerEnd will be called to generate assembler Epilogue
9505
9506         * /src/SDCCsymt.c:
9507         added _JavaNative to debug info printing
9508
9509         * /src/SDCCmain.c: added option --tini-libid
9510         added port->do_assemble function (-mTININative) has a multi command assemble
9511
9512         * /src/SDCCglue.c: Disabled "constExpr" check
9513         added port->genAssemblerEnd function
9514
9515         * /src/SDCCglobl.h: Added option --tini-libid value
9516
9517         * /src/SDCCast.h:
9518         tookout optimizeCompare from the header (has no external references)
9519
9520         * /src/SDCCast.c: made one more function "static"
9521
9522 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9523
9524         * src/z80/mappings.i: Added z80asm support.
9525
9526         * src/z80/main.c: Added z80asm support on --asm=z80asm
9527
9528         * src/z80/gen.c: Fixed asm portability issues.
9529
9530         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9531
9532         * src/SDCCglue.c (printExterns): Added global/extern split.
9533
9534 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9535
9536         * support/regression/Makefile: added test for mcs51 model large
9537
9538         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9539
9540         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9541
9542 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9543
9544         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9545
9546 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9547
9548         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9549
9550         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9551
9552 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9553
9554         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9555
9556         * support/regression/tests/simplefloat.c: Port to mcs51.
9557
9558 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9559         * support/regression/tests/bug-485362.c: Added.
9560
9561         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9562
9563         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9564
9565         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9566
9567         * src/z80/gen.c (aopDump): Added a dump function.
9568
9569 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9570         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9571
9572         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9573
9574         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9575
9576         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9577
9578         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9579
9580         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9581
9582         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9583
9584         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9585
9586         * support/regression/ports/ds390/support.c: Use tinibios.
9587
9588         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9589
9590 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9591
9592         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9593         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9594
9595         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9596
9597         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9598
9599 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9600
9601         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9602
9603         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9604         (packRegsForIYUse): Created and optimised.
9605
9606 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9607
9608         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9609 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9610
9611         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9612
9613         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9614
9615         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9616
9617 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9618
9619         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9620
9621         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9622
9623 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9624
9625         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9626
9627         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9628
9629         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9630
9631 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9632
9633         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9634         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9635         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9636
9637         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9638
9639         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9640         (genNotFloat): Added.
9641         (genUminusFloat): Added.
9642
9643         * device/lib/z80/Makefile: Added floating pt stubs.
9644
9645         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9646
9647         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9648
9649         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9650
9651 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9652
9653         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9654
9655         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9656
9657         * sdcc/support/regression/Makefile: Add port ds390.
9658
9659         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9660
9661         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9662
9663         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9664
9665         * sdcc/support/regression/ports/ds390/support.c: Added.
9666
9667         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9668
9669         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9670
9671         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9672
9673 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9674
9675         * device/include/malloc.h: Added z80 and gbz80 support.
9676
9677         * device/lib/gbz80/heap.s: Added.
9678
9679         * device/lib/z80/heap.s: Added.
9680
9681         * device/lib/malloc.c: Added z80 and gbz80 support.
9682
9683         * support/regression/tests/malloc.c (testMalloc): Added.
9684
9685         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9686
9687         * support/regression/tests/bug-478094.c: Added.
9688
9689         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9690
9691 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9692
9693         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9694
9695         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9696
9697         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9698
9699         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9700
9701         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9702
9703 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9704
9705         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9706
9707 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9708
9709         * support/regression/tests/bug-477927.c: Added.
9710
9711         * src/z80/peeph.def: Added minor rules.
9712
9713         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9714
9715         * src/z80/peeph.def: Added jump optimisation modification.
9716
9717 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9718
9719         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9720
9721 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9722
9723         * support/regression/tests/funptrs.c: Added.
9724
9725 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9726
9727         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9728
9729 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9730
9731         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9732
9733         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9734
9735         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9736         (movLeft2ResultLong): Created.
9737
9738         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9739         (joinPushes): Added.  Joins two char pushes into a word push.
9740
9741 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9742
9743         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9744
9745         * support/makebin/Makefile (install): Added creation of dest dir.
9746
9747 2001-10-24 Karl Bongers <karl AT turbobit.com>
9748
9749         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9750
9751 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9752
9753         * src/z80/ralloc.c: Turned off faulty pack for one use.
9754
9755         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9756
9757         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9758
9759 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9760
9761         * support/regression/Makefile: Improved clean
9762
9763         * support/regression/ports/gbz80/spec.mk: Added clean
9764
9765         * support/regression/ports/host/spec.mk: Added clean
9766
9767         * support/regression/ports/z80/spec.mk: Added clean
9768
9769         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9770
9771         * support/regression/ports/mcs51/timeout.c: little improvements
9772
9773 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9774
9775         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9776
9777         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9778
9779         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9780
9781 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9782
9783         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9784
9785         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9786
9787 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9788         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9789
9790         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9791
9792         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9793
9794         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9795
9796         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9797
9798         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9799
9800         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9801
9802         * support/regression/tests/longor.c: Added.
9803
9804 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9805
9806         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9807
9808         * as/mcs51/aslink.h: define PATH_MAX
9809
9810         * as/mcs51/asm.h: define PATH_MAX
9811
9812         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9813
9814         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9815
9816         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9817
9818         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9819
9820         * src/SDCCglobl.h: define PATH_MAX
9821
9822         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9823
9824         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9825
9826 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9827
9828         * src/z80/gen.c (gencjneshort): Fixed
9829
9830         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9831
9832 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9833
9834         * support/regression/tests/bug-469671.c: Added.
9835
9836         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9837
9838 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9839
9840         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9841
9842         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9843
9844 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9845
9846         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9847
9848         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9849
9850         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9851
9852         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9853
9854         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9855
9856         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9857
9858         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9859
9860 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9861
9862         * 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.
9863
9864         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9865
9866         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9867
9868 2001-10-07    <johan AT FRIJA>
9869
9870         * device/lib/gets.c (gets): fixed the return value.
9871
9872 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9873         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9874
9875         * 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.
9876
9877         * 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.
9878
9879         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9880
9881         * src/pic/gen.c: Removed Safe_strdup.
9882
9883         * configure.in: Added option to enable libgc support.
9884
9885         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9886         (bitVectUnion): Optimised.
9887         (bitVectIntersect): Optimised.
9888         (bitVectBitsInCommon): Optimised.
9889         (bitVectCplAnd): Optimised.
9890
9891         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9892
9893 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9894
9895         * src/SDCCmain.c: distinguish between assembler debug and plain options
9896
9897         * src/avr/main.c:   remove standard assembler options
9898
9899         * src/ds390/main.c: remove standard assembler options
9900
9901         * src/mcs51/main.c: remove standard assembler options
9902
9903         * src/port.h: removed "PENDING" comment
9904
9905 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9906
9907         * src/device/lib/_mulint.c  : new, with assember functions
9908
9909         * src/device/lib/_mullong.c : new, with assember functions
9910
9911         * src/device/lib/_divuint.c : with assember functions
9912
9913         * src/device/lib/_divsint.c : with assember functions
9914
9915         * src/device/lib/_divulong.c: with assember functions
9916
9917         * src/device/lib/_divslong.c: with assember functions
9918
9919         * src/device/lib/_moduint.c : with assember functions
9920
9921         * src/device/lib/_modsint.c : with assember functions
9922
9923         * src/device/lib/_modulong.c: with assember functions
9924
9925         * src/device/lib/_modslong.c: with assember functions
9926
9927         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9928
9929         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9930
9931         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9932                                       replaced _mululong.c and _mulslong.c by _mullong.c
9933
9934 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9935
9936         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9937
9938 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9939
9940         * src/SDCCglue.c: test, if win32api is available for MINGW
9941
9942 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9945         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9946         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9947         * support/regression/ports/host/spec.mk: removed GENERIC
9948         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9949         * support/regression/ports/z80/spec.mk: removed GENERIC
9950
9951 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9952
9953         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9954
9955         * support/regression/tests/bug-467035.c: Created.
9956
9957 2001-10-01    <johan AT FRIJA>
9958
9959         * src/SDCC.y: fixed bug #466586 part 1
9960
9961 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9962
9963         * SDCCicode.c: z80 has no generic pointers
9964         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9965
9966 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9967
9968         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9969
9970 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9971
9972         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9973
9974         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9975
9976 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9977
9978         * configure.in: Fixed up so that ucsim is only configured once.
9979
9980         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9981
9982         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9983         (getPathDifference): As above.
9984
9985         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9986
9987         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9988
9989 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9990         * .version: Updated to 2.3.1
9991
9992         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9993         Added copyright header.
9994
9995         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9996         (assemble): Added support for macro based assembler commands.
9997         (linkEdit): Added support for macro based linker commands.
9998         (preProcess): Changed the pre-processor to use macros.
9999         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10000         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10001
10002         * device/lib/z80/crt0.s: Added module name for debugging.
10003
10004 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10005
10006         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10007
10008         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10009
10010         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10011
10012         * src/Makefile.in: Added SDCCmacro and SDCCutil
10013
10014 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10015
10016         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10017
10018 2001-09-16    <johan AT FRIJA>
10019
10020         * 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.
10021
10022 2001-09-15    <johan AT FRIJA>
10023
10024         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10025         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10026
10027 2001-09-11    <johan AT FRIJA>
10028
10029         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10030
10031 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10032
10033         * support/regression/tests/bug-460444.c: Added test case.
10034
10035         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10036         (genCast): Added justification for all of the asserts.
10037
10038 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10039
10040         * support/regression/support.c: _xdata replaced by xdata
10041
10042         * support/regression/spec.mk: removed _generic
10043
10044 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10045
10046         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10047
10048         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10049         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10050
10051         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10052
10053         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10054
10055         * support/regression/tests/bug-460010.c: Added test case.
10056
10057         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10058
10059 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10060
10061         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10062
10063         * support/regression/testfwk.c: removed workaround for bug #436344
10064
10065         * support/regression/tests/bp.c: use less memory with mcs51
10066
10067         * support/regression/tests/bug-441448.c: use less memory
10068
10069         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10070
10071         * support/regression/collate-results.py: typo
10072
10073 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10074
10075         * support/regression/tests/fetchoverlap.c: Added new test case.
10076
10077         * support/regression/tests/bp.c: Added new test case.
10078
10079         * support/regression/tests/bug-448984.c: Added new test case.
10080
10081         * support/regression/tests/pow2shifts.c: Added new test case.
10082
10083         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10084         (genlshTwo): Fixed right shift for count > 8.
10085
10086         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10087
10088 2001-09-08    <johan AT FRIJA>
10089
10090         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10091
10092 2001-09-07    <johan AT FRIJA>
10093
10094         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10095
10096         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10097
10098 2001-09-06    <johan AT FRIJA>
10099
10100         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10101         * bernhard noted me at this: "() equals to (void)" (1.38)
10102
10103 2001-09-05    <johan AT FRIJA>
10104
10105         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10106
10107 2001-09-04    <johan AT FRIJA>
10108
10109         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10110
10111
10112 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10113
10114         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10115
10116 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10117
10118         * link/z80/aslink.h: Fixed path for PATH_MAX
10119
10120 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10121
10122         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10123
10124         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10125
10126         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10127
10128         * 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.
10129
10130 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10131
10132         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10133         (genCmp): Fixed up genCmp for the GB with longs.
10134
10135         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10136
10137         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10138
10139         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10140
10141         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10142
10143 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10144
10145         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10146
10147 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10148
10149         * 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.
10150
10151         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10152
10153 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10154
10155         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10156
10157         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10158
10159 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10160
10161   * sim/ucsim/configure:    little improvement of Cygwin-detection
10162   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10163   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10164   * support/regression/tests/bug-221100.c: small changes for mcs51
10165   * support/regression/tests/bug-221168.c: small changes for mcs51
10166   * support/regression/tests/bug-227710.c: small changes for mcs51
10167   * support/regression/tests/staticinit.c: small changes for mcs51
10168   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10169   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10170   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10171
10172 $Revision$