* src/pic/pcode.c (LinkFlow): handle empty flows correctly,
[fw/sdcc] / ChangeLog
1 2005-11-16 Raphael Neider <rneider AT web.de>
2
3         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
4           fixes #1357221
5         * src/pic/gen.c (genIfx): implemented for CARRY bit
6         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
7           to generic pointers, fixes #1357332,
8           (pic16_movLit2f): NEW,
9           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
10
11 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
12
13         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
14
15 2005-11-11 Raphael Neider <rneider AT web.de>
16
17         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
18         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
19           compute pointer's type from operand,
20           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
21           improved single bit reads, fixes bug #1353379
22
23 2005-11-09 Borut Razem <borut.razem AT siol.net>
24
25         * support/scripts/sdcc.nsi: added lib/pic to the package
26
27 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
28
29         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
30
31 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
32
33         * support/regression/tests/bug1348008.c: added
34         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
35         * support/regression/tests/bug1337835.c: updated comment
36
37 2005-11-06 Borut Razem <borut.razem AT siol.net>
38
39         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
40           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
41           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
42           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
43           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
44           dynamic construction of cl_error_class and derivates - 2.nd try
45
46 2005-11-05 Borut Razem <borut.razem AT siol.net>
47
48         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
49           bug, which caused Bus Errors on sparc solaris
50
51 2005-11-04 Borut Razem <borut.razem AT siol.net>
52
53         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
54           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
55           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
56           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
57           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
58           and derivates to resolve the initialization problem on OSX
59
60 2005-11-02 Borut Razem <borut.razem AT siol.net>
61
62         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
63           corrected typo - #include <winsock2.h>
64
65 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
66
67         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
68           (_asxxxx_mapping): added org directive for future enhancements
69
70 2005-11-01 Borut Razem <borut.razem AT siol.net>
71
72         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
73           enabled sockets on WIN32
74         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
75
76 2005-10-31 Borut Razem <borut.razem AT siol.net>
77
78         * support/regression/generate-cases.py: escape backslashes in {testcase}:
79           WIN32 backslash path delimiters should be escaped when used in C strings
80         * support/regression/tests/bitfields.c: exclude failing assertions for
81           __CYGWIN32__ and __MINGW32__ hosts
82
83 2005-10-30 Borut Razem <borut.razem AT siol.net>
84
85         * src/SDCCutil.c: corrected double comparison typo
86
87 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
88
89         * device/lib/medium/Makefile: added for new memory model medium
90         * device/include/asm/mcs51/features.h: updated for medium/pdata
91         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
92           added Multiply & Accumulate sbit's and MAC0_PAGE define
93         * device/include/mcs51/c8051f300.h: added sfr16 definitions
94         * device/include/mcs51/c8051f310.h: added sfr16 definitions
95         * device/lib/_mullong.c: update for medium model
96         * device/lib/incl.mk: added medium model
97         * doc/sdccman.lyx: documented medium model
98         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
99         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
100         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
101         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
102           (allocParms): set SCLS and OCLS to pdata for medium model
103         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
104           for pdata,
105           (powof2): return <0 if not power of 2
106         * src/avr/gen.c (genBitWise): use updated powof2
107         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
108           (shiftR2Left2Result): small optimization in setup, save acc when storing,
109           (shiftLLeftOrResult): use B if necessary
110         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
111         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
112         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
113         * support/regression/Makefile.in: added test-mcs51-medium
114         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
115
116 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
117
118         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
119         specifier unsigned
120         * device/lib/time.c (mktime): fixed bug 1334315
121
122 2005-10-28 Raphael Neider <rneider AT web.de>
123
124         * device/include/pic/p16f_common.inc: added common declarations
125         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
126
127 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
128
129         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
130           (aopPutUsesAcc): added to predict accumulator use,
131           (assignResultValue): save acc if necessary,
132           (genMinusDec): store result if indirectly addressed,
133           (genDivOneByte):  save acc if necessary,
134           (movLeft2Result): bugfix if left already in acc,
135           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
136             attention to accumulator use (esp. pdata),
137           (genReceive): receive pdata correctly
138         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
139         * src/SDCCicode.h: added isOperandInPagedSpace prototype
140
141 2005-10-27 Raphael Neider <rneider AT web.de>
142
143         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
144
145 2005-10-27 Raphael Neider <rneider AT web.de>
146
147         * .version: changed version to 2.5.4
148         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
149         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
150           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
151             arithmetics support routines
152         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
153         * device/lib/Makefile.in: also create installdir for pic
154
155         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
156           pic14 port as well
157         * src/pic/device.c (dump_sfr): rewritten to delegate register
158           placement to the linker (use `extern sym' rather than sym EQU addr),
159           (validAddress): fixed to check last specified address
160         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
161           (popGetLit): truncate literal value to 8 bit,
162           (popGet): moved assert to more appropriate place
163           (popGetExternal): create pCode operand from and mark the according
164             symbol as being `extern'
165           (popGetAddr): added sanity check on immediate's offset, provide
166             GPOINTER tag on demand
167           (aopPut): fixed for immediates,
168           (mov2w_op): move operand's address or contents to WREG (depending on
169             operand type), safer variant of mov2w,
170           (movwf,call_libraryfunc): NEW, handy abbreviations,
171           (get_argument_pcop,get_return_val_pcop,pass_argument,
172           get_returnvalue): interface for accessing function parameters and
173             return values,
174           (assignResultValuei,genRet): use new parameter/return value interface
175           (pic14_getDataSize): back to old version handling generic pointers,
176           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
177             provided implementation and/or fixed old one,
178           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
179             calls, removed legacy 8051 reference code
180           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
181           (loadSignToC): NEW, move the operands sign bit to CARRY,
182           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
183             genRightShiftSigned, accepts negative shift counts,
184           (setup_fsr): load FSR and adjust IRP (indirect memory access),
185           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
186             generic pointers, __data pointers and __code pointers,
187           (genUnpackBits,genPackBits): rewritten to work with generic pointers
188             and signed bitfields, limit bitfields to 8 bit,
189           (genDataPointerGet): fixed number of bytes read,
190           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
191           (genPointerGet,genPointerSet): fixed handling of __code pointers,
192             pointers to constant data are no longer assumed to point to __code
193             space, removed invalid pointer types,
194           (bitpatternFromVal): retrieve the PICs representation of an integer
195             or float literal,
196           (genDataPointerSet): fixed assigning to po_immediate operands,
197           (genGenPointerSet): implemented as library call,
198           (genIfx): fixed incorrect condition,
199           (genAddrOf): limit generic pointers' addresses to 2 bytes,
200             provide GPOINTER tag according to destination's storage class,
201           (genCast): added code to handle casting to generic pointers, added
202             sign-/zero extension of the result
203           (aop_isLitLike,op_isLitLike): fixed handling of immediates
204         * src/pic/gen.h: added macros to access IRP bit in STATUS register
205         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
206           extend the result
207         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
208           address/register resides in the shared banks
209           (emitSymbolToFile): improved to handle global and `pinned' symbols,
210             put all variables into separate sections (have the linker arrange
211             them)
212           (picglue): put init code and interrupt handlers in separate sections
213         * src/pic/main.c: added port specific options table, modified to PORT
214           structure to make GPOINTERs 3 byte, added pic14_options
215           (_pic14_do_link): private linking routine (update paths to libraries,
216             add libsdcc.lib by default)
217         * src/pic/main.h: declare pic14_options
218         * src/pic/pcode.c: fixed instructions i/o relations,
219           (RegCond): reverted to correct version,
220           (newpCodeOpLit): truncate literals to 8 bit,
221           (genericPrint): added debug output,
222           (getRegFromInstruction): fixed for various operand types, simplified
223           (BuildFlow): fixed broken handling of isntructions with labels
224           (LinkFlow): start at last instruction in flow (skip trailing comments),
225             pass the flow on to the next instruction after CALL
226           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
227           (insertPCodeInstruction): fixed inserting after a skip instruction,
228           (DoBankSelect): fixed for labeled instructions
229           (OptimizepBlock): honor --nopeep switch
230           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
231         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
232         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
233           (pCodeOptime2pCodes): allow disabling this optimization via
234             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
235             but is still buggy), started implementation of a dataflow based
236             pCode optimization (CSE + dead code elimination)
237           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
238         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
239           names are independant of the stack location and therefore portable across
240           devices
241
242 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
243
244         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
245           (selectSpil): fixed bug 1337835 by not spilling bit variables
246         * support/regression/tests/bug1337835.c: added test for this bug
247         * src/mcs51/peeph.def: restart after rule 3.c,
248           addded rules 263.x to optimize loading constants
249
250 2005-10-26 Raphael Neider <rneider AT web.de>
251
252         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
253         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
254           (genAssign): emit warning when casting literals to generic pointer
255             type, also applies when taking the address of a fixed variable,
256           (genCast): improved casting to generic pointers
257         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
258           extern variables, added verbose error message
259         * device/include/pic16/{string.h,errno.h}: added #pragma library c
260
261 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
262
263         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
264         carry must be complemented too
265         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
266         could be emitted by genMinus
267         * src/SDCCval.c (constVal): fixed bug 1305065
268
269 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
270
271         * src/SDCCast.c (addCast): added promotion for bit variables
272         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
273         promotion casts + optimisation
274         (optimizeGetWord): fix warning 'i' might be used uninitialized
275         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
276         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
277
278 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
279
280         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
281         all chars are promoted to int; promotion should be handled in SDCCast.c
282
283 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
284
285         * device/lib/_strcmp.c: Fixed bug 1326457
286
287 2005-10-11 Raphael Neider <rneider AT web.de>
288
289         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
290         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
291
292 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
293
294         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
295         * support/regression/tests/sfr16.c: added test for the sfr32 bug
296
297 2005-10-04 Raphael Neider <rneider AT web.de>
298
299         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
300           device/lib/pic16/pics.all: added pic18f1320
301         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
302
303 2005-09-30 Raphael Neider <rneider AT web.de>
304
305         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
306         * src/pic16/devices.inc: NEW, provides device descriptions
307         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
308
309 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
310
311         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
312           GETHBIT
313
314 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
315
316         * doc/sdccman.lyx: updated Highest Order Bit documentation,
317           documented Any Order Bit, Higher Order Byte and Higher Order Word
318         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
319         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
320           (optimizeGetAbit): new, to get any bit, not only the high bit,
321           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
322           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
323           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
324           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
325             RIGHT_OP: also try GETBYTE, GETWORD optimization,
326             GETABIT, GETBYTE, GETWORD: decorate them,
327           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
328           (ast_print): added GETABIT, GETBYTE, GETWORD
329         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
330         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
331           (geniCodeBinary): new generic binary icode,
332           (ast2iCode): added GETABIT, GETBYTE, GETWORD
333         * src/port.h: updated comment for PORT.hasExtBitOp
334         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
335           (genGetByte): new, to get a single byte,
336           (genGetWord): new, to get a word from a long,
337           (gen51Code): added GETABIT, GETBYTE, GETWORD
338         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
339
340 2005-09-23 Raphael Neider <rneider AT web.de>
341
342         * configure.in, configure: have device/lib/pic configured
343         * device/lib/Makefile.in: added model-pic14
344         * device/lib/clean.mk: added pic/ to clean rule
345         * device/lib/pic: added rudimentary pic14 library providing support
346           functions for multiplication/division/generic pointer access
347         * src/SDCCopt.c (convilong): mark support functions as extern
348           for pic14 port as well
349         * src/pic/gen.c (genMult): added assertions,
350           (genpic14Code): emit warning on unhandled iCodes
351         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
352         * src/pic/pcode.c (pCodeOpCopy),
353         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
354           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
355           SFR_REGISTER}), made safe for future extensions
356         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
357           instructions even if preceeded by SKIP instructions (also remove
358           them); removed unused code
359         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
360           prevents leaving parts of the structure uninitialized after copying
361
362 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
363
364         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
365           ago by me
366         * support/regression/tests/addsub.c: added test for the bug
367
368 2005-09-21 Raphael Neider <rneider AT web.de>
369
370         * device/include/pic16/pic18f1220.h,
371           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
372         * device/lib/pic16/Makefile.rules: added missing opening paren
373         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
374           are provided in genutils.c,
375           (genUminusFloat,genUminus,genCmpEq): added asserts on different
376           operand/result sizes,
377           (genCmp): assert on NULL pointers first, then check deref'ed values
378         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
379           result size
380
381 2005-09-18 Raphael Neider <rneider AT web.de>
382
383         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
384           as these are now unused,
385           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
386         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
387           local, avoids uninitialized pointer dereference on r->name
388         * src/pic16/ralloc.c (newReg): fixed indentation
389
390 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * src/SDCCval.c (constVal): fixed bug 730366
393         * support/Util/SDCCerr.c,
394         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
395
396 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
397
398         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
399
400 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
401
402         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
403
404 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
405
406         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
407           (hex2dec): made hex_digit unsigned char, removed ascii dependance
408         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
409           (hex2dec): made hex_digit unsigned char, removed ascii dependance
410         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
411         * packihx/packihx.c (hexDigit): made c unsigned char
412         * as/mcs51/lklibr.c (fndsym),
413         * link/z80/lkgb.c (gb),
414         * link/z80/lklibr.c (fndsym),
415         * link/z80/lkrloc.c (relr),
416         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
417         * src/SDCC.lex (checkCurrFile, process_pragma),
418         * src/SDCCglue.c (spacesToUnderscores),
419         * src/SDCCmain.c (setParseWithComma, processFile),
420         * src/asm.c (tvsprintf, printCLine),
421         * src/avr/gen.c (emitcode, aopPut),
422         * src/ds390/gen.c (emitcode),
423         * src/hc08/gen.c (emitcode, emitinline),
424         * src/mcs51/gen.c (emitcode, genInline),
425         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
426           tokenizeLineNode),
427         * src/pic/ralloc.c (debugLog),
428         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
429           tokenizeLineNode),
430         * src/pic16/ralloc.c (debugLog),
431         * src/z80/main.c (_process_pragma):
432            made all ctype.h function calls safe
433         * src/SDCCopt.c: include math.h for fabs
434         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
435           and used them throughout the code to make ctype.h function calls safe
436         * src/ds390/main.c (asmLineNodeFromLineNode),
437         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
438         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
439            unsigned char*
440         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
441           (newpCodeAsmDir): made ctype.h function calls safe
442         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
443           pic16_emitcode):  made lbp unsigned char*
444         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
445           (pic16_newpCodeAsmDir): made ctype.h function calls safe
446         * src/xa51/gen.c (emitcode),
447         * src/z80/gen.c (_emit2): made lbp unsigned char*
448         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
449            char*
450
451 2005-09-05 Raphael Neider <rneider AT web.de>
452
453         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
454           access bank splitpoint
455
456 2005-09-05 Raphael Neider <rneider AT web.de>
457
458         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
459
460 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
461
462         * .version: changed to version 2.5.3
463         * doc/sdccman.lyx: changed version to 2.5.3,
464           documented --codeseg and --constseg and pragma codeseg and constseg,
465           documented bit parameters (reentrant) and bit returning
466         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
467            currFunc->recvSize, but is this ok for all ports?
468           (ast2iCode): result of ~ on unsigned char must be cast to int for
469            bool to work
470         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
471           function pointers in bit space
472         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
473           (processFuncArgs): call port.reg_parm() with reentrancy info
474         * src/port.h,
475         * src/avr/main.c,
476         * src/ds390/main.c,
477         * src/hc08/main.c,
478         * src/pic/main.c,
479         * src/pic16/main.c,
480         * src/xa51/main.c,
481         * src/z80/main.c: port.reg_parm prototype extended with
482           "bool reentrant" parameter
483         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
484           options.stackAuto for allocating bit register parameters
485         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
486           (genSend): set BitBankUsed if it is,
487           (selectRegBank): factored out of genCall for use in genPcall,
488           (genCall): removed redundant dtype assignmen, use selectRegBank,
489           (genPcall): handle returning in Carry properly, save in F0 if needed,
490           (genReceive): handle bit register parameters
491         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
492           (mcs51_assignRegisters): enable bit registers for all reentrant
493            functions and don't set BitBankUsed unconditionally
494         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
495         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
496         * support/regression/tests/funptrs.c: added tests for BOOL and for return
497
498 2005-08-27 Borut Razem <borut.razem AT siol.net>
499
500         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
501         ppc-osx (Darwin) does not support -u option. It seems that it is
502         supported only on Linux - GNU cp
503
504 2005-08-25 Borut Razem <borut.razem AT siol.net>
505
506         * sim/ucsim/gui.src/serio.src/Makefile.in,
507           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
508           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
509           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
510           install and strip, since the strip at /usr/ccs/bin should be used
511           on solaris
512
513 2005-08-24 Borut Razem <borut.razem AT siol.net>
514
515         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
516
517 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
518
519         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
520         ffffffffu
521
522 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
523
524         * as/mcs51/aslink.h: completed lkrloc.c prototypes
525         * as/mcs51/lkmain.c (link_main): fixed warning
526         * device/include/stdbool.h: ds390 has no advanced bit support yet
527         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
528         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
529         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
530           and updated their macros
531         * src/SDCCval.c (constVal): updated comment for renamed b_long
532
533 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
534
535         * as/mcs51/asdata.c: changed ctype['['] to BINOP
536         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
537           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
538           (oprio): set priority for '['
539         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
540            and adb_24_bit
541         * as/mcs51/asm.h: added defines R_BIT and S_BIT
542         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
543         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
544         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
545           added overlayable BIT_BANK area
546         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
547           (summary2): explain 'T' in legenda
548         * as/mcs51/lkrloc.c: replaced old K&R style,
549           (relr): added R_BIT processing,
550           (errmsg): added "Bit-addressable relocation error",
551           (adb_bit): added for converting from byte- to bit-addressable space,
552           (adb_24_bit): added for converting from byte- to bit-addressable space
553         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
554            used in reentrant functions now even as return value
555         * device/lib/_gptrput.c (_gptrput): removed obsolete code
556         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
557           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
558         * src/SDCCglobl.h: added indicator BitBankUsed
559         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
560            the bit registers b0-b7
561         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
562           (geniCodeCast): fixed bug 1263853,
563           (geniCodeLogicAndOr): put result in bool or char,
564           (geniCodeReceive): added parameter func for accessing the return type,
565           (geniCodeFunctionBody): pass func to geniCodeReceive
566         * src/SDCCmain.c: added indicator BitBankUsed
567         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
568         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
569           (checkSClass): don't put automatic bool/bit on stack,
570           (checkFunction): removed check on function cannot return bit
571         * src/SDCCsymt.h: added newBoolLink prototype
572         * src/mcs51/gen.c (rb1regs): added bit registers,
573           (movc): created for assigning to carry,
574           (pushReg, popReg): created for pushing registers,
575           (sameRegs): check both AOP_REG and AOP_CRY types,
576           (aopOp): handle bit registers,
577           (aopPut): optimization no self-assign,
578           (saveRegisters): push reg->base (bits) only once for bit registers,
579            and use pushReg,
580           (unsaveRegisters): pop reg->base only once and use popReg,
581           (assignResultValue): added parameter func and return in carry for bits,
582           (genIpush): optimization no reload in A if not changed,
583           (genSend): bit parameters in reentrant functions are passed in bit
584            registers by first assigning to bits in B, then save registers and
585            copy B to bits,
586           (genCall): handle returning in Carry properly, save it in F0 if needed,
587           (genPcall): updated assignResultValue call, this is not safe yet for bit
588            returning function !!!
589           (genFunction): don't generate equ's for bit registers and use pushReg,
590           (genEndFunction): take care of bit returning functions and use popReg,
591           (genRet): return bit in Carry,
592           (genIfx): optimize bit registers and other directly addressable bits,
593           (genReceive): updated assignResultValue call
594         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
595           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
596            registers when using stack-auto
597         * src/mcs51/ralloc.c (_G): added allBitregs,
598           (regs8051): added the bit registers,
599           (createStackSpil): use macro IS_BIT,
600           (getRegBit): added to allocate a bit register, else spill,
601           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
602           (updateRegUsage): factored out to ease stepping while debugging,
603           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
604            also allocate bit registers,
605           (fillGaps): handle bit registers,
606           (findAllBitregs): added to create bit vector with all bit registers,
607           (mcs51_allBitregs): returns this bit vector,
608           (mcs51_assignRegisters): when using stack-auto use bit registers for
609            passing parameters and creating local variables
610         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
611
612 2005-08-22 Borut Razem <borut.razem AT siol.net>
613
614         * device/lib/Makefile.in: replaced find option -or with -o
615           to make it run on solaris
616
617 2005-08-22 Raphael Neider <rneider AT web.de>
618
619         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
620           fixes #1265442 (crash on Solaris)
621
622 2005-08-20 Borut Razem <borut.razem AT siol.net>
623
624         * configure, configure.in: added tests for libsocket and libnsl libraries,
625           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
626           from support/regression/Makefile.in
627         * support/regression/Makefile.in: added
628         * device/lib/pic16/Makefile.common.in: force make to use bash shell
629         * sim/ucsim/libtool: regenerated on sparc-solaris
630         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
631           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
632           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
633           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
634           sparc-solaris, which doesn't use GNU ld linker
635         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
636         * as/Makefile: find on sparc-solaris does not support -maxdepth option
637
638 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
639
640         * src/mcs51/peeph.def: updated comments
641
642 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
643
644         * device/lib/_gptrget.c,
645         * device/lib/_gptrput.c: slightly shorter
646         * doc/sdccman.lyx: incremented version
647         * src/mcs51/peeph.def: moved peephole comments to the line of first
648           change to better keep line correlation, reanimated 186.e
649         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
650
651 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
652
653         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
654           David Saxton with quotes around file name.
655
656 2005-08-15 Borut Razem <borut.razem AT siol.net>
657
658         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
659           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
660           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
661           make tests run on x86_64 platform
662
663 2005-08-13 Raphael Neider <rneider AT web.de>
664
665         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
666           as it might be executed DURING a build (parallel make is wonderful)
667
668 2005-08-13 Raphael Neider <rneider AT web.de>
669
670         * device/lib/Makefile.in (port-specific-objects-pic16):
671           revert to cp $(PORT)/bin/*.* $(PORTDIR)
672         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
673           dependency
674         * device/lib/pic16/Makefile.rules: build subdirs before creating
675           the library, removed builddir rule, create $(builddir) early in
676           recurse rule, use empty recurse rule for leaf directories
677         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
678           mkdir errors (race condition), removed duplicate suffix "hex"
679           from clean rules
680         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
681         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
682           prevents mkdir -p from aborting on Alpha
683
684 2005-08-12 Raphael Neider <rneider AT web.de>
685
686         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
687           db-statements in order to allow for arrays of pointers in code
688           sections to be placed without interspersed 0-padding, fixes
689           bug #1256215
690         * (emitStatistics): fixed division by zero for pic18f1220
691         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
692           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
693         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
694         * (pic16_pCodeConstString): keep track of already emitted string
695           literals to prevent "duplicate definitions of symbol _str_NR"
696         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
697           debug message
698         * device/lib/Makefile.in: ignore failing PIC16 library builds
699         * device/lib/pic16/Makefile: do not build if gputils are missing
700         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
701
702 2005-08-10 Raphael Neider <rneider AT web.de>
703
704         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
705           my last commit)
706
707 2005-08-10 Raphael Neider <rneider AT web.de>
708
709         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
710           Rokas' patch to add the new fixed point type "__fixed16x16"
711         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
712           functions for __fixed16x16 arithmetics
713         * device/lib/pic16: reimplemented the build system to support
714           a separate build directory, better handling of libio (create
715           the library in a separate subdir for each architecture) and
716           easier configuration (centralized in Makefile.common)
717
718 2005-08-07 Raphael Neider <rneider AT web.de>
719
720         * src/pic16/gen.c (genrshTwo): fixed sign extension
721         * src/pic16/device.c: added pic18f2320, 4220 and 4320
722         * device/include/pic16/pic18f2220.h: changed some bit definitions,
723           added T0CONbits
724         * device/include/pic16/pic18f4220.h: NEW, header for
725           pic18f4220 and pic18f4320
726         * device/include/pic16/pic18fregs.h: added new devices,
727           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
728         * device/include/pic16/signal.h: resolved name clashes
729           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
730           to also allow testing for interrupt enable bits, added
731           comments on how to use the macros
732         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
733         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
734           register definitions for the devices
735         * device/lib/pic16/pics.all: added new devices
736         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
737           allocated memory
738         * device/lib/pic16/libc/stdlib/memfree: do not count
739           the block header as free memory
740         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
741           simplified and added missing end-of-blocklist-marker
742           (reported by Peter Onion, fixes #1252814)
743         * (_mergeHeapBlock): fixed loop condition
744         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
745           len==0, restructured code
746         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
747           up a bit, reduced bitfield accesses, prevent endless loops
748           in case of heap corruption
749         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
750           "unreferenced arguments/must return a value" warnings
751         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
752           replaced BAUDREG with SPBRG
753         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
754           device/lib/pic16/debug/gstack/gstack.c: replaced
755           _naked, _asm, _endasm with __naked, __asm, __endasm
756
757 2005-08-05 Raphael Neider <rneider AT web.de>
758
759         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
760           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
761
762 2005-08-05 Borut Razem <borut.razem AT siol.net>
763
764         * device/lib/Makefile.in: added missing ';'
765         * configure: removed ^M characters
766
767 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
768
769         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
770           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
771           License
772
773 2005-08-04 Borut Razem <borut.razem AT siol.net>
774
775         * configure.in: pic16 libraries build 2nd try - enable running
776           configure in device/lib/pic16
777         * configure: regenerated from configure.in
778         * device/lib/Makefile.in: create $(PORT)/bin directory
779
780 2005-08-03 Raphael Neider <rneider AT web.de>
781
782         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
783           to get/set values via pointers
784         * (genUnpackBits,genPackBits): changed detection of
785           ptr->bitfield vs. sym.bitfield, fixed access via generic
786           pointers, removed dead (wrong) code for multibyte bitfields
787         * (genNearPointerGet, genGenPointerGet): removed useless code,
788           fixed bitfield detection, fixes #1250594
789         * (genNearPointerSet): removed useless code
790         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
791           and introduced macro pic16_emitpcode that conditionally emits
792           the origin of the following pCode (useful for debugging SDCC)
793         * src/pic16/pcode.c: changed (and disabled) some debug outputs
794         * (createDefmap): fixed handling of LFSR for --optimize-df
795
796 2005-08-02 Borut Razem <borut.razem AT siol.net>
797
798         * device/lib/Makefile.in: pic16 libraries build enabled since
799           gputils-0.13.2 are now localy installed at sourceforge's compile farm
800
801 2005-08-02 Raphael Neider <rneider AT web.de>
802
803         * src/pic16/gen.c (genPackBits): removed deprecated warning
804         * (genGenPointerSet): fixed bitfield detection
805
806 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
807
808         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
809
810 2005-07-31 Raphael Neider <rneider AT web.de>
811
812         * device/lib/pic16/libdev/pic18f458.c,
813           device/include/pic16/pic18f458.h: added missing T0CONbits
814
815 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
816
817         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
818
819 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
820
821         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
822
823 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
824
825         * device/include/mcs51/at89c51ed2.h: added.
826
827 2005-07-23 Raphael Neider <rneider AT web.de>
828
829         * src/pic/gen.h: added emitpcode macro for debugging
830         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
831           and replace by macro adding debug information on demand
832         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
833         * (gencjne): tried to fix; replaced with correct (slower) code
834         * (gen{Unp,P}ackBits): fixed single bit access
835         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
836         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
837           previous instruction
838         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
839           register has to be handled with care (forbidding movement
840           of assignments/uses, removing assignments completely, ...)
841         * (pCodeOptime2pCodes): make use of regIsSpecial
842         * added lots of debugging output (commented out)
843         * src/pic/rallloc.c (deassignLRs): prevent operand registers
844           from being reused as result UNLESS it is known to work
845
846 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
847
848         * support/Util/dbuf.h: include <stddef.h> for size_t
849         * .version: changed to version 2.5.2
850
851 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
852
853         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
854
855 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
856
857         * src/hc08/gen.c (genMinus): fixed bug #1241835,
858           (genModOneByte): removed needless psha/pula
859
860 2005-07-22 Raphael Neider <rneider AT web.de>
861
862         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
863           have PIC14 handled like PIC16, fixes broken pic14 linker calls
864         * src/pic/gen.c (resolveIfx): do not "invent" labels
865         * (genSkipc): changed to positive logic
866         * (genSkipCond): removed as no longer needed
867         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
868           backport from PIC16
869         * (genLeftShift): check operands are in different registers
870         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
871           INCF does not update CARRY...
872         * src/pic/main.c: fixed _linkCmd
873         * src/pic/pcode.c (unlinkpCode): added inactive code
874         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
875           alive (do not assign result and operand overlapping registers)
876
877 2005-07-22 Raphael Neider <rneider AT web.de>
878
879         * src/pic/device.c (dump_sfr): replaced register declaration with
880           call to emitSymbolToFile() to avoid duplicate symbols
881         * (assignRelocatableRegisters): do not declare external symbols
882         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
883           right (take size of type, not etype)
884         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
885         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
886         * (packRegsForAccUse): disabled assignment of WREG as
887           the result reg to prevent occurence of just fixed #1235003,
888           fixes #1242954
889         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
890           symbols (avoids duplicate symbols in .asm file)
891         * (pic14emitRegularMap): use emitSymbolToFile()
892         * src/pic/gen.c (aopOp): fixed spillLocation handling
893         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
894         * (genDataPointerSet): removed unneccessary variables/output
895
896 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
897
898         * as/mcs51/lkarea.c: enlarged codemap for banked memory
899         * device/lib/mcs51/crtbank.asm: added # to 0x0F
900
901 2005-07-21 Raphael Neider <rneider AT web.de>
902
903         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
904           architecture cannot handle them efficiently, fixes bug #1235003
905         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
906           check for empty sets before using them (fixes bug #1232190)
907
908 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
909
910         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
911           (lnksect2): generate warnings for memory overlap
912         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
913           constseg to set the name of these segments so you can instruct the linker
914           to place them in banks
915         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
916         * src/SDCCglobl.h: added MODEL_HUGE to enum,
917           added code_seg and const_seg to options
918         * src/SDCCglue.c (emitMaps): use options.const_seg,
919           (createInterruptVect): put interrupt vectors in segment HOME,
920           (glue): put HOME before static segment and put the main glue in HOME,
921           (glue): use options.code_seg
922         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
923         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
924           these segments so you can instruct the linker to place them in banks
925           (linkEdit): use code_loc for HOME segment which should be the first
926           segment in code memory now
927         * src/SDCCmem.c: fixed more stuff like bug 1238386
928         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
929           (changePointer): don't change function pointers to code pointers for
930           banked functions,
931           (compareType): added exceptional check for banked function pointers
932         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
933         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
934           after static in code memory
935         * src/mcs51/gen.c: added aopLiteralLong prototype,
936           (aopForSym): use getSize for functions,
937           (genCall): generate banked calls over one trampoline __sdcc_banked_call
938           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
939           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
940           the segment,
941           (genPcall): use call for literal function pointers and generate banked
942           calls over the one trampoline so there's only one place for the user to
943           modify according to his/hers hardware,
944           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
945           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
946         * src/mcs51/main.c: added keyword banked,
947           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
948         * support/Util/SDCCerr.c,
949         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
950           needed for passing the bank and address to the trampoline
951         * device/lib/mcs51/crtbank.asm: added for bankswitching
952         * device/lib/mcs51/Makefile: added crtbank
953
954 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
955
956         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
957           for fields at offset 0 of a struct or union as reported
958           on 2005-07-07 in the developer mailing list.
959
960 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
961
962         * src/SDCCmem.c: fixed bug 1238386
963
964 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
965
966         * src/mcs51/peeph.def: added labelrefcounting for peepholes
967           (patch #1144962), added peephole 300, enabled 259.x
968         * doc/sdccman.lyx: removed screenshot and provided link instead
969
970 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
971
972         * doc/sdccman.lyx: added section about debugging with ddd
973         * doc/figures/ddd_example.eps: screenshot of debugging session
974
975 2005-07-04 Raphael Neider <rneider AT web.de>
976
977         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
978           like CODE pointers, fixes #1115683
979         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
980           call, fixes bugs #1232211, #1228110,
981           fixed wrong casts to pCodeFlow from pCodeInstructions
982
983 2005-07-04 Raphael Neider <rneider AT web.de>
984
985         * src/pic/gen.c (popGet): changed assert to allow for
986           bit operands
987         * (popGetAddr): changed signature to provide
988           an additional index, patched all call sites
989         * (genCmpEq): handle literal-like operands correctly
990         * (genAddrOf): added sanity checks on __code/__data pointers
991         * (genAssign): added handling of symbols from __code section
992         * (gencjne): do not generate code for comparisons whose result
993           is neither stored nor used, fixes bug #1171114
994         * (AccLsh, AccRsh): operate on operand instead of WREG
995         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
996           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
997           by known count
998         * rewrote complete shift-by-literal logic, commented unused
999           functions out
1000         * (genConstPointerGet): get multiple bytes (if result size > 1),
1001           fixed handling of non-immediate addresses
1002         * (genPointerGet): handle CODE pointers like CONST pointers
1003         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1004         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1005           operand is to be treated as a literal or not
1006         * (mov2w,genPcall,genCmpEq),
1007           src/pic/genarith.c: use aop_isLitLike() to decide between
1008           literal/register contents
1009         * (addSign): added missing offset
1010         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1011           only emit comment in debug-mode,
1012           use {aop,op}_isLitLike throughout the file
1013         * src/pic/glue.c: fix initializers for pointers (work in progress)
1014         * src/pic/pcode.c (get_op): honor index on _const symbols
1015         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1016         * (dumppBlock): added pCode size estimation
1017         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1018           check for IS_SYMOP before OP_SYMBOL'ing
1019         * fixed indentation, compacted switch-statements
1020         * (allocReg): find free register and allocate it instead of
1021           allocating new registers all the time
1022         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1023           registers as its operands (necessary only for multibyte GETs)
1024
1025 2005-07-01 Raphael Neider <rneider AT web.de>
1026
1027         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1028           debugging .asm-output macros FENTRY + FEXIT
1029         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1030           way... I wonder...
1031         * (emitpComment): NEW, printf to pCode
1032         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1033           offset handling
1034         * (popGetAddr): NEW, variant of popGet to access an immediates
1035           high(er) bytes instead of the n'th byte of memory they reference,
1036           replaced popGet with popGetAddr where neccessary
1037         * (genDataPointerGet): reactivated and fixed implementation
1038         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1039           accesses
1040         * (genDataPointerSet): fixed multibyte assignments
1041         * (genpic14Code): fixed --i-code-in-asm handling
1042         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1043         * (genPlus): fixed index-out-of-bounds error
1044         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1045         * src/pic/ralloc.c: added debugging output macro FENTRY2
1046         * (spillThis): fixed indentation, enbraced for-body for clarity
1047         * (rematStr): commented out as now unused
1048         * (regTypeNum): commented out special spill case (overwrites
1049           arbitrary values)
1050         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1051
1052 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1053
1054         * doc/sdccman.lyx: documented sfr16/sfr32,
1055           added example for using storage class with function pointers
1056         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1057
1058 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1061         * device/lib/_itoa.c,
1062         * device/lib/_ltoa.c: optimized codesize
1063         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1064           but don't know how to suppress the double warning.
1065         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1066         * support/Util/SDCCerr.c,
1067         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1068
1069 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1072           fixed old K&R prototypes
1073         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1074         * device/lib/_gptrget.c,
1075         * device/lib/_gptrgetc.c,
1076         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1077           also new versions for small generic pointers and banked generic pointers
1078         * src/port.h: added const_name
1079         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1080         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1081         * src/SDCCcse.c (findPrevIc): check all associative operators
1082         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1083         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1084         * src/SDCCmem.c: updated comments,
1085           set far-space to 0 for pdata, results in optimized code
1086         * src/SDCCmem.h: added macro CONST_NAME
1087         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1088           moving the info into the highest bits, see also gptrget/gptrput
1089         * src/src.dsp: added sdcc.ico to project files
1090         * src/avr/gen.c (genCast): fixed bug 0x%d
1091         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1092         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1093           relation between ptr_type and DCL_TYPE,
1094           (genCast): fixed bug 0x%d
1095         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1096           (CODE)" for const_name
1097         * src/hc08/gen.c (genCast): fixed bug 0x%d
1098         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1099           (hc08_port): added "CONST (CODE)" for const_name
1100         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1101           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1102           between ptr_type and DCL_TYPE,
1103           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1104           operand* and took AOP() inside function so sfr-ness can be checked,
1105           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1106           new prototype,
1107           (genFunction, genEndFunction): optimized stack setup,
1108           (genMinus): optimized for literals with ending zeroes (in bytes),
1109           (genCast): fixed bug 0x%d
1110         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1111           (mcs51_port): added "CONST (CODE)" for const_name
1112         * src/mcs51/peeph.def: made rule 226 more generic
1113         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1114         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1115         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1116         * src/z80/main.c (z80_port): added NULL for const_name,
1117           (gbz80_port): added NULL for const_name
1118         * support/regression/tests/bug663539.c,
1119         * support/regression/tests/sfr16.c: new tests
1120
1121 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1122
1123         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1124
1125 2005-06-24 Raphael Neider <rneider AT web.de>
1126
1127         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1128           corrected typos...
1129         * device/include/pic16/signal.h: added USBIF
1130           and SIG_USB
1131
1132 2005-06-24 Raphael Neider <rneider AT web.de>
1133
1134         * device/lib/pic16/libdev/pic18f2455.c,
1135           device/include/pic16/pic18f2455.h: NEW
1136         * device/include/pic16/pic18fregs.h,
1137           device/lib/pic16/pics.all,
1138           src/pic16/device.c: added 18f2455
1139         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1140           device/include/pic16/{pic18f[68][567].h,usart.h}:
1141           replaced MULTIPLE_USARTS define with more relaible
1142           compatibility sfrs (for USART access)
1143
1144 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1145
1146         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1147           and the output asm file line is printed on two lines.
1148
1149 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1150
1151         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1152           BGT, BLE, BHI, and BLS instructions
1153         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1154           genCmpEq): removed
1155         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1156           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1157           fixes bug #1216342
1158         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1159
1160 2005-06-15 Raphael Neider <rneider AT web.de>
1161
1162         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1163         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1164         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1165           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1166           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1167
1168 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1169
1170         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1171           Marcel Telka in bug #1215704
1172
1173 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1174
1175         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1176           located in shared memory bank.
1177
1178 2005-05-31 Raphael Neider <rneider AT web.de>
1179
1180         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1181           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1182           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1183
1184 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1185
1186         * device/lib/_strncpy.c: fixed the fix
1187
1188 2005-05-26 Raphael Neider <rneider AT web.de>
1189
1190         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1191           initializers with \0, bug #1208187
1192         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1193           intializers with \0, bug #1208187
1194
1195 2005-05-26 Raphael Neider <rneider AT web.de>
1196
1197         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1198           initializers with \0, bug #1208187
1199         * src/pic16/main.c (_process_pragma): added sanity checks
1200           for stack position and size, emit warnings when appropriate
1201
1202 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1203
1204         * device/lib/_strncpy.c: fixed not filling with \0
1205
1206 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1207
1208         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1209           createFunction),
1210         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1211           compound_statement),
1212         * src/SDCCsymt.h,
1213         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1214
1215 2005-05-24 Raphael Neider <rneider AT web.de>
1216
1217         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1218
1219 2005-05-24 Raphael Neider <rneider AT web.de>
1220
1221         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1222           TRISE definitions, closes bug #1162453
1223
1224 2005-05-22 Raphael Neider <rneider AT web.de>
1225
1226         * src/pic16/main.c (_process_pragma): check for missing
1227           arguments to pragmas code and udata
1228         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1229           consistency fixes to match other headers (thanks to Jim Paris)
1230         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1231
1232 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1235
1236 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1237
1238         * support/regression/tests/bug1198642.c: new test
1239         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1240         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1241         * support/scripts/resource.h,
1242         * support/scripts/resource.rc,
1243         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1244         * support/scripts/sdcc.ico: added 32x32 icon
1245
1246 2005-05-18 Raphael Neider <rneider AT web.de>
1247
1248         * device/lib/pic16/libdev/pic18f*.c,
1249         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1250           keywords to "__sfr" and "__at (X)"
1251         * device/include/pic16/pic18fregs.h: added pic18f4520
1252         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1253           #1203088 (MPLAB compatibility)
1254
1255 2005-05-17 Raphael Neider <rneider AT web.de>
1256
1257         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1258         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1259         * device/lib/pic16/pics.all: added new devices
1260         * src/pic16/device.c: added support for pic18f4520
1261
1262 2005-05-16 Raphael Neider <rneider AT web.de>
1263         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1264         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1265         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1266           convenience function for bit access
1267
1268 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1269
1270         * device/lib/printf_large.c: fixed bug 1193299
1271         * support/regression/tests/bug1057979.c: added test %3.3s
1272
1273 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1274
1275         * device/include/mcs51/8051.h,
1276         * device/include/mcs51/8052.h: made parseable with lint
1277         * device/include/mcs51/lint.h: added include file for (sp)lint
1278         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1279         * doc/cdbfileformat.lyx,
1280         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1281
1282 2005-05-14 Raphael Neider <rneider AT web.de>
1283
1284         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1285         * device/lib/pic16/libc/stdlib/itoa.c (new)
1286         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1287         * device/lib/pic16/libio/Makefile: exclude subdir according to
1288           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1289         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1290         * src/pic16/gen.c (genFunction): prevent annoying warning
1291         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1292           nameclashes on BeOS
1293         * support/cpp2/cppmain.c (cpp_output_string): new
1294         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1295           fixes bug 1116802
1296
1297 2005-05-13 Borut Razem <borut.razem AT siol.net>
1298
1299         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1300
1301 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1302
1303         * .version: changed to version 2.5.1; back to bleeding edge development
1304
1305 2005-05-11 Borut Razem <borut.razem AT siol.net>
1306
1307         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1308           generate PDF version 1.3 documents
1309
1310 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1311
1312         * .version: changed to version 2.5.0
1313
1314 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1315
1316         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1317
1318 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1319
1320         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1321         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1322         well as many smaller updates.
1323         * .version: changed to version 2.5.0-pre1
1324
1325 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1326
1327         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1328
1329 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1330
1331         * support/regression/tests/bug1185672.c: added
1332         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1333           bug 1185672
1334         * src/mcs51/gen.c (genCall): added comments, made it look safer
1335         * src/mcs51/gen.c (genEndFunction): simplified
1336
1337 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1338
1339         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1340
1341 2005-04-14 Borut Razem <borut.razem AT siol.net>
1342
1343         * fixed bug 1045046 - SIGSEGV with really simple code?:
1344           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1345           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1346
1347 2005-04-14 Borut Razem <borut.razem AT siol.net>
1348
1349         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1350           src/pic16/device.h: temporarily disabled experimental #inline pragma
1351           for 2.5.0 release
1352
1353 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1354
1355         * device/include/z80/stdio.h,
1356         * device/include/z80/string.h: removed these highly incomplete files so
1357           SDCC can use the default ones in device/include/
1358
1359 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1360
1361         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1362         gcc warning.
1363         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1364         fix sdcpp warnings.
1365
1366 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1367
1368         * device/include/malloc.h: removed redundant __reentrant prototypes
1369         * device/lib/_mullong.c: added working xstack variant in asm (C version
1370           doesn't pass regression tests)
1371         * device/lib/bpx.c: used __data and made bpx char for mcs51
1372         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1373           (createFunction): fixed bug with xstackPtr
1374         * src/SDCCcse.c: corrected comments
1375         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1376           (killDeadCode, eBBlockFromiCode): removed unused code
1377         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1378           corrected comments
1379         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1380           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1381           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1382           (genModOneByte): fixed warning in MSVC
1383         * src/mcs51/main.c (): added comments
1384         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1385
1386 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1387
1388         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1389
1390 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1391
1392         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1393
1394 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1395
1396         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1397         characters arrays of larger size than the declared one.
1398
1399 2005-04-10 Borut Razem <borut.razem AT siol.net>
1400
1401         * src/pic/gen.c (genInline),
1402           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1403           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1404           (findNextInstruction), (findPrevInstruction),
1405           (findInstructionUsingLabel),
1406           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1407         * src/pic/pcode.c (findLabel): added missing '\n'
1408         * src/src.dsp: added SDCCdwarf2.c to the project
1409
1410 2005-04-09 Borut Razem <borut.razem AT siol.net>
1411
1412         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1413
1414 2005-04-08 Raphael Neider <rneider AT web.de>
1415
1416         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1417           into the chain after a given one) and mergeDefmapSymbols (combine
1418           defmap entries for each symbol per pcode)
1419         * (createDefmap): have defmap entries merged in the end
1420         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1421           a symbol before replacing one access type's symbol, merge symbols in
1422           the end (replacement symbol might already have an entry)
1423         * (assignValnums): keep reference to written WREG intact
1424
1425 2005-04-08 Raphael Neider <rneider AT web.de>
1426
1427         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1428           Alpha)
1429
1430 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1431
1432         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1433         bytes
1434
1435 2005-04-07 Raphael Neider <rneider AT web.de>
1436
1437         * device/include/pic16/usart.h: added compatibility defines for
1438           devices with more than one USART
1439         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1440
1441 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1442
1443         * device/lib/Makefile.in: updated for port specific include
1444
1445 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1446
1447         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1448
1449 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1450
1451         * device/include/8051.h,
1452         * device/include/8052.h,
1453         * device/include/at89S8252.h,
1454         * device/include/at89c55.h,
1455         * device/include/at89x051.h,
1456         * device/include/at89x51.h,
1457         * device/include/at89x52.h,
1458         * device/include/mcs51reg.h,
1459         * device/include/reg51.h,
1460         * device/include/reg764.h,
1461         * device/include/regc515c.h,
1462         * device/include/sab80515.h: (re)moved these 12 files
1463         * device/include/mcs51/8051.h,
1464         * device/include/mcs51/8052.h,
1465         * device/include/mcs51/at89S8252.h,
1466         * device/include/mcs51/at89c55.h,
1467         * device/include/mcs51/at89x051.h,
1468         * device/include/mcs51/at89x51.h,
1469         * device/include/mcs51/at89x52.h,
1470         * device/include/mcs51/mcs51reg.h,
1471         * device/include/mcs51/reg51.h,
1472         * device/include/mcs51/reg764.h,
1473         * device/include/mcs51/regc515c.h,
1474         * device/include/mcs51/sab80515.h: and added them here
1475
1476 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1477
1478         * device/include/stdarg.h: changed SDCC specific keywords to double
1479           underlined form.
1480         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1481           mcs51 and ds390.
1482         * device/include/hc08/mc68hc908gp32.h,
1483         * device/include/hc08/mc68hc908jb8.h,
1484         * device/include/hc08/mc68hc908jkjl.h,
1485         * device/include/hc08/mc68hc908qy.h: fixed comments
1486         * device/include/mcs51/README: updated
1487         * device/include/mcs51/c8051f120.h: added PINRSF
1488         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1489         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1490           amidst code. Also inline is not supported.
1491
1492 2005-04-06 Raphael Neider <rneider AT web.de>
1493
1494         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1495         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1496           callers stack/frame pointers
1497
1498 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1499
1500         * device/include/pic16/usart.h: added, missing in previous commit,
1501         * device/include/pic16/adc.h: fixed typo,
1502         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1503         commit,
1504         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1505         <p18fxxx.inc>
1506         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1507         uninitialized because a bug appears with gplink
1508         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1509         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1510         complains for unrecognised option
1511
1512 2005-04-05 Raphael Neider <rneider AT web.de>
1513
1514         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1515           structs as well (using memcpy)
1516         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1517           on ISRs (GOTO has no label)
1518         * src/pic16/device.h: added OF_OPTIMIZE_DF
1519         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1520           new data flow analysis/optimization
1521         * src/pic16/pcode.c: added (prototypes for and implementation of)
1522           dataflow analysis functions, fixed pCodeInstructions' inCond and
1523           outCond values, made RCALL a branch instruction
1524         * (pic16_unlinkpCode): keep C line if possible
1525         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1526           C line moved if possible
1527         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1528         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1529           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1530         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1531           new flow)
1532         * (pic16_getJumptabpCode): NEW, needed in...
1533         * (LinkFlow): fixed handling of jumptables, calls and conditional
1534           branches
1535         * (pic16_InsertCommentAfter): NEW
1536         * (pic16_pCodeReplace): made verbose and flow preserving
1537         * (AnalyzeFlow): added call to data flow analysis
1538         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1539         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1540         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1541
1542 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1543
1544         * src/SDCCast.c (decorateType): fixed bug #1105626
1545
1546 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1547
1548         * device/include/asm/pic16/features.h,
1549         * pic18f*.h headers,
1550         * device/include/pic16/adc.h,
1551         * device/include/pic16/delay.h,
1552         * device/include/pic16/i2c.h,
1553         * device/include/pic16/malloc.h,
1554         * device/include/pic16/stdio.h,
1555         * device/include/pic16/stdlib.h,
1556         * device/include/pic16/string.h,
1557         * device/lib/pic16/libc/stdio/printf_tiny.c,
1558         * device/lib/pic16/libc/stdio/printf_small.c,
1559         * device/lib/pic16/libc/stdio/strmgpsim.c,
1560         * device/lib/pic16/libc/stdio/strmmssp.c,
1561         * device/lib/pic16/libc/stdio/strmusart.c,
1562         * device/lib/pic16/libc/stdio/vfprintf.c,
1563         * device/lib/pic16/libc/stdlib/ltoa.c,
1564         * device/lib/pic16/libc/stdlib/putchar.c,
1565         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1566         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1567         * device/lib/pic16/libc/stdlib/memchrram.c,
1568         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1569         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1570         * device/lib/pic16/libio/adc/adcbusy.c,
1571         * device/lib/pic16/libio/adc/adcread.c,
1572         * device/lib/pic16/libio/adc/adcsetch.c,
1573         * device/lib/pic16/libio/usart/ubaud.c,
1574         * device/lib/pic16/libio/usart/ubusy.c,
1575         * device/lib/pic16/libio/usart/udrdy.c,
1576         * device/lib/pic16/libio/usart/uopen.c,
1577         * device/lib/pic16/libio/usart/uputc.c,
1578         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1579         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1580         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1581         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1582         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1583         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1584         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1585         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1586         specific keywords to double underlined form,
1587         * device/lib/pic16/libc/Makefile.rules,
1588         * device/lib/pic16/libsdcc/Makefile.rules,
1589         * device/lib/pic16/libm/Makefile,
1590         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1591         to compile with C standard set in Makefile.common
1592         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1593         rand.c and crc.c in compilation process,
1594         * device/lib/pic16/libsdcc/int/divuint.c,
1595         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1596         `c' from signed to unsigned,
1597         * device/lib/pic16/startup/crt0.c,
1598         * device/lib/pic16/startup/crt0i.c,
1599         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1600         keywords to double underlined form, bug fixes in _do_cinit function
1601         which prevented the correct initialization of the .idata segment,
1602         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1603         core to enter a infinite loop
1604         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1605
1606 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1607
1608         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1609
1610 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1611
1612         * device/include/Makefile.in: add support for hc08 subdirectory
1613         * device/include/hc08/: new subdirectory
1614         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1615         Lucas Loizaga, thanks!
1616         * device/include/hc08/mc68hc908qy.h,
1617         * device/include/hc08/mc68hc908gp32.h,
1618         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1619         their own directory. Changed internal macro names to use the compiler
1620         reserved namespace. Changed SDCC specific keywords to double
1621         underlined form.
1622         * device/include/math.h,
1623         * device/include/malloc.h,
1624         * device/include/stdarg.h,
1625         * device/include/stdbool.h
1626         * device/include/string.h,
1627         * device/include/tinibios.h,
1628         * device/include/ds400rom.h,
1629         * device/include/8051.h,
1630         * device/include/8052.h,
1631         * device/include/80c51xa.h,
1632         * device/include/at89c55.h,
1633         * device/include/at89S8252.h,
1634         * device/include/at89x51.h,
1635         * device/include/at89x52.h,
1636         * device/include/ds80c390.h,
1637         * device/include/reg764.h,
1638         * device/include/regc515c.h,
1639         * device/include/sab80515.h,
1640         * device/include/mcs51/c8051f000.h,
1641         * device/include/mcs51/c8051f018.h,
1642         * device/include/mcs51/c8051f020.h,
1643         * device/include/mcs51/c8051f040.h,
1644         * device/include/mcs51/c8051f060.h,
1645         * device/include/mcs51/c8051f120.h,
1646         * device/include/mcs51/c8051f300.h,
1647         * device/include/mcs51/c8051f310.h,
1648         * device/include/mcs51/c8051f320.h,
1649         * device/include/mcs51/c8051f330.h,
1650         * device/include/mcs51/c8051f350.h,
1651         * device/include/z180.h: Changed SDCC specific keywords to double
1652         underlined form.
1653
1654 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1655
1656         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1657         18F4455,
1658         * (pic16_assignConfigWordValue): disable testing of configuration
1659         register value with config mask,
1660         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1661         function with port->fun_prefix,
1662         * (genFunction): when generating a naked interrupt function never
1663         create an absolute segment placed in interrupt vector address, place
1664         the actual interrupt function at IVA instead, when an interrupt
1665         function is generated with unspecified interrupt then do not create
1666         the absolute section,
1667         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1668         code for generating a call to generic pointer get/put function with
1669         a call to function pic16_callGenericPointer(),
1670         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1671         the call to the generic pointer get/put functions with prefixing the
1672         function name with port->fun_prefix,
1673         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1674         * src/pic16/main.c (_process_pragma): prefix function with
1675         port->fun_prefix,
1676         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1677         calling assembler, old 18Fxxxx macro is deprecated,
1678         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1679         PC_ASMDIR in while condition,
1680         * (findInstruction): add PC_ASMDIR in while condition,
1681         * (buildCallTree): prefix main with port->fun_prefix,
1682         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1683         identifier for variable with banked access in instructions BTFSS,
1684         BTFSC, BCF, BSF, BTG
1685         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1686         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1687         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1688         perform optimization when enviroment variable NO_REG_OPT is set,
1689         * (insideLRBlock): NEW, return 1 if register is inside an
1690         INF_LOCALREGS block,
1691         * (RemoveRegFromLRBlock): remove a register that is completely
1692         eliminated by register optimization, but it is still left in local
1693         register store/restore in/from stack block,
1694         * (Remove2pcodes): after removing register, check to see if it
1695         should be removed from local register store/restore in/from stack
1696         block,
1697         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1698         DUMMY_READ_VOLATILE,
1699
1700         * device/include/pic16/adc.h: minor prototype modifications and
1701         update,
1702         * device/include/pic16/malloc.h: added GPL notice various
1703         modifications,
1704         * device/include/pic16/stdint.h: NEW, standard header for ints
1705         * device/include/pic16/delay.h: NEW, header for delay functions,
1706         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1707         delay1mtcy,
1708         * device/include/pic16/signal.h: NEW, header providing helper macros
1709         for implementing signal handlers,
1710         * device/include/pic16/stdio.h: added prototypes for functions,
1711         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1712         prototypes for stdin and stdout, added macro PUTCHAR to
1713         automatically implement putchar function prototype,
1714         * device/include/pic16/usart.h: modified and updated USART library,
1715         * device/lib/pic16/libio/adc/,
1716         * device/lib/pic16/libio/i2c: some modifications to improve library
1717         performance,
1718         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1719         family of functions,
1720         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1721         family of functions and other sources,
1722         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1723         of the PIC18Fxx[28] devices,
1724         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1725         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1726         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1727         _do_cinit function, because the previous failed when local variables
1728         where not placed in the same memory bank,
1729         * device/lib/pic16/libsdcc/char/: various modifications to improve
1730         library performance,
1731         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1732         information on the new functions of the c library and more...
1733
1734 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1735
1736         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1737
1738 2005-03-26 Raphael Neider <rneider AT web.de>
1739
1740         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1741           if condition == CARRY)
1742         * (genCmp): adapted to new genSkipc semantics
1743         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1744           on rIfx (genCmp was broken)
1745
1746 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1747
1748         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1749         * src/z80/main.c (_keywords[]),
1750         * src/SDCCglobal.h (struct options),
1751         * src/SDCC.y,
1752         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1753         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1754         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1755         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1756         always available in leading double underscore form. The C99 support is
1757         mostly missing, but it's a start.
1758         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1759         reserved identifier "__data".
1760
1761 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * src/mcs51/peeph.def: fixed bug 1170013
1764
1765 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1766
1767         * device/include/mcs51reg.h: fixed bug 842007
1768
1769 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1770
1771         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1772         last time.
1773
1774 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1775
1776         * src/port.h (struct PORT),
1777         * src/avr/ralloc.c (avr_assignRegisters),
1778         * src/avr/main.c,
1779         * src/ds390/ralloc.c (ds390_assignRegisters),
1780         * src/ds390/main.c,
1781         * src/hc08/ralloc.c (hc08_assignRegisters),
1782         * src/hc08/main.c,
1783         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1784         * src/mcs51/main.c,
1785         * src/pic/ralloc.c (pic14_assignRegisters),
1786         * src/pic/main.c,
1787         * src/pic16/ralloc.c (pic16_assignRegisters),
1788         * src/pic16/main.c,
1789         * src/xa51/ralloc.c (xa51_assignRegisters),
1790         * src/xa51/main.c,
1791         * src/z80/ralloc.c (z80_assignRegisters),
1792         * src/z80/ralloc.h,
1793         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1794         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1795         * src/SDCCcse.h,
1796         * src/SDCCdflow.c (computeDataFlow),
1797         * src/SDCCdflow.h,
1798         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1799         * src/SDCCloop.h,
1800         * src/SDCCcflow.c (*),
1801         * src/SDCCcflow.h,
1802         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1803         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1804         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1805         immedDom() returning wrong block; probably fixes bug #1160833)
1806
1807 2005-03-20 Borut Razem <borut.razem AT siol.net>
1808
1809         * support/scripts/inc2h.pl: WIN32 port
1810
1811 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1812
1813         * device/lib/makefile.in: added abs.c and labs.c
1814
1815 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1816
1817         * device/include/stdint.h: added
1818         * device/lib/abs.c: added
1819         * device/lib/labs.c: added
1820         * device/include/stdlib.h: added abs() and labs() prototypes
1821         * device/lib/libsdcc.lib: added abs and labs
1822         * device/include/float.h,
1823         * device/lib/_fsmul.c,
1824         * device/lib/printf_fast.c,
1825         * device/lib/printf_tiny.c: updated comments
1826
1827 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1828
1829         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1830         bug #1164313
1831
1832 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1833
1834         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1835         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1836
1837 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * device/lib/printf_large.c: removed inline assembly for portability and
1840           readability. Use printf_fast if speed or size are more important.
1841         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1842         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1843
1844 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1845
1846         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1847         prevent compiler warning
1848
1849 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1850
1851         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1852         moved to level 0 and declared as static. Also they are explicit
1853         placed in access bank. This was necessery because some times they
1854         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1855         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1856         optimizations. Currently only compare to unsigned char is implemented,
1857         * src/pic16/gen.c: added fReturnIdx array,
1858         * (struct resolvedIfx) is moved to gen.h and made public,
1859         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1860         * (aopForSym): added an optimization to directly store in stack of
1861         the operand of a SEND iCode,
1862         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1863         but as registers instead (AOP_REG) using the fReturnIdx array,
1864         * (pic16_freeAsmop): remove the freed register from the
1865         _G.sregsAlloc field,
1866         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1867         a compare of 'WREG',
1868         * (pic16_popGetTempRegCond): changed function prototype, now
1869         function takes also a bitVector argument v which holds the current
1870         set of registers that are allocated for stack access by aopForSym,
1871         registers allocated in aopForSym for accessing stack symbols are not
1872         any more part of the functions usedRegs field,
1873         * (genCall): some times aopOp is called for a stack variable to be
1874         send, aopForSym might perform the push, if this is true make sure
1875         that genCall doesn't push the variable twice by testing _G.resDirect,
1876         * (genFunction): changed testing for unspecified interrupt number
1877         from 256 to INTNO_UNSPEC,
1878         * modified selection scheme of frame pointer generation. Previously
1879         if function did use local registers a frame pointer was generated,
1880         now a frame pointer is generated only if function has arguments
1881         (that need PLUSW2 register access), or has stack arguments, or the
1882         compiler is not instructed to omit the frame pointer,
1883         * (genEndFunction): before restoring local registers that were saved
1884         in the function preamble, also restore the registers that *might*
1885         have been allocated for stack access,
1886         * (genRet): removed some old comments,
1887         * (genCmp, the active (RN's) version): added a call to the
1888         pic16_genCmp_special function to perform the compare with a more
1889         robust and optimized way,
1890         * (genInline): a feature has been added in inline code generation,
1891         which allows a wildcard variable substitution when writing inline
1892         assembly. Code is incomplete and experimental therefore undocumented,
1893         * (genCast): changed order of aopOp for result and right to allow
1894         aopForSym to directly load the result if possible,
1895         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1896         perform an optimized compare on some selected special occasions,
1897         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1898         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1899         generate an IVT any more,
1900         * src/pic16/main.c (pic16_optionsTable): added command line option
1901         --optimize-cmp,
1902         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1903         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1904         macros,
1905         * src/pic16/NOTES: Raphael Neider added in list of active developers
1906         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1907         jumptable_end to prevent bug #,
1908         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1909         inCond and outCond fields,
1910         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1911         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1912         turn off register spilling,
1913         * (packRegsForOneUse): synced with other ports' versions although it
1914         is not used currently,
1915         * (pic16_packRegisters): added an optimization while reading
1916         structure bitfields, some registers may be saved (malloc code is
1917         decreased by 80 bytes)
1918
1919 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1920
1921         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1922         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1923         this can be optimized more?
1924
1925 2005-03-10 Raphael Neider <rneider AT web.de>
1926
1927         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1928           genNearPointerGet): (hopefully) fixed access to bitfields via
1929           pointers (p->bitN = x; and x = p->bitN; failed)
1930
1931 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1932
1933         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1934
1935 2005-03-09 Raphael Neider <rneider AT web.de>
1936
1937         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1938
1939 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1940
1941         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1942         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1943           (regTypeNum): set REG_BIT type if necessary
1944         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1945         * support/regression/tests/critical.c: check bug 1144613
1946
1947 2005-03-02 Raphael Neider <rneider AT web.de>
1948
1949         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1950
1951 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1952
1953         * src/avr/ralloc.c (serialRegAssign),
1954         * src/ds390/ralloc.c (serialRegAssign),
1955         * src/hc08/ralloc.c (serialRegAssign),
1956         * src/mcs51/ralloc.c (serialRegAssign),
1957         * src/pic/ralloc.c (serialRegAssign),
1958         * src/pic16/ralloc.c (serialRegAssign),
1959         * src/xa51/ralloc.c (serialRegAssign),
1960         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1961
1962 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1963
1964         * src/SDCCast.c (decorateType): fixed bug 1124787
1965
1966 2005-02-20 Hubert Sack <sack AT digiplan.de>
1967         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1968
1969         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1970         patch #1121755
1971
1972 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1973
1974         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1975         to keep the correct label reference count when adding/removing references
1976         to labels. A peephole file using this is appended to patch #1144962.
1977
1978 2005-02-14 Raphael Neider <rneider AT web.de>
1979
1980         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1981         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1982         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1983           retrievals of result operand's value on assignment
1984
1985 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1986
1987         * device/include/pic16/string.h: modified prototype for memccpy()
1988         to memccpy(void *, void *, char, size_t)
1989         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1990         check whether to omit frame pointer or not,
1991         * (genInline): convert all occurences of "\n" to LF in inline
1992         assembler blocks, this helps formatting the inline text,
1993         * (pic16_loadFSR0): modified prototype,
1994         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1995         removed some 8051 legacy code,
1996         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1997         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1998         before allocating temporary registers in functions,
1999
2000 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * support/regression/tests/bitvars.c: corrected the "fix"
2003
2004 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2005
2006         * support/regression/tests/bitvars.c,
2007         * support/regression/tests/bitwise.c,
2008         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2009
2010 2005-02-10 Raphael Neider <rneider AT web.de>
2011
2012         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2013           different size for Alpha
2014         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2015
2016 2005-02-09 Raphael Neider <rneider AT web.de>
2017
2018         * src/SDCC.lex(doPragma) : save and restore warning options as well
2019           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2020         * have #pragma less_pedantic set the errorlevel to WARNING
2021           (fixes #1117001)
2022         * (cloneOptimize) : fixed wrong malloc's size
2023         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2024           facilitate correct handling of #pragma (save|restore)
2025
2026 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2027
2028         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2029
2030 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2031
2032         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2033
2034 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2035
2036         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2037
2038 2005-02-02 Raphael Neider <rneider AT web.de>
2039
2040         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2041         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2042         * (pic16_storeForReturn): fixed to allow returning function pointers
2043         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2044         * device/include/pic16/{stddef.h,stdbool.h}: added
2045
2046 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2047
2048         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2049
2050 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2051
2052         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2053         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2054          appeared to be required
2055
2056 2005-01-31 Borut Razem <borut.razem AT siol.net>
2057
2058         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2059           include/mcs51 and include/z80 directories to the package
2060
2061 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2062
2063         * src/hc08/gen.c (genFunction): fixed bug #1112752
2064
2065 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2066
2067         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2068
2069 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2070
2071         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2072
2073 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2074
2075         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2076
2077 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2078
2079         * device/include/c8051fxxx.h: removed these 6 files
2080         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2081
2082 2005-01-26 Raphael Neider <rneider AT web.de>
2083
2084         * src/pic16/gen.c (genAssign): fixed assignment from longs
2085           in codespace (were cut to three bytes)
2086         * (genDummyRead): implemented (except for CODESPACE...),
2087           fixed bug #1108575
2088         * src/pic16/glue.c (emitStatistics): beautified
2089         * device/lib/pic16/libm/Makefile: added include path
2090
2091 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2092
2093         * src/z80/gen.c (aopPut): fixed bug #1103902
2094
2095 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2096
2097         * device/lib/expf.c: fixed bug #1095792
2098
2099 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2100
2101         * device/lib/pic16/libm: added Math library sources
2102
2103 2005-01-24 Raphael Neider <rneider AT web.de>
2104
2105         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2106           to enable upcast to pCodeOpReg2 (there is no type tag to
2107           differenciate the two and pic16_popGet2p cast into PCOR2)
2108         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2109           (sizeof(sectNames) changed to sizeof(sectName))
2110           Both patches fix segfaults under MinGW.
2111
2112 2005-01-23 Raphael Neider <rneider AT web.de>
2113
2114         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2115           Safe_[mc]?alloc()'ed variables
2116         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2117           of (byte sized) temporaries (assign them to WREG for now)
2118         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2119           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2120           this might fix SIGSEGVs on MinGW...
2121         * src/SDCCopt.c (killDeadCode): restored original behaviour
2122           (volatile operands might get thrown away though)
2123
2124 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2125
2126         * src/pic16/gen.c: fixed bug #1106975,
2127         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2128         pointer update, INTCON is saved, global interrupts are disabled and
2129         restored after updateing TOS.
2130         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2131         * added function attribute 'shadowregs' to take advantage of shadow
2132         registers,
2133         * added function attribute 'wparam' as an alternative to the wparam
2134         pragma,
2135         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2136         user declares a non-ISR function as 'shadowregs',
2137         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2138
2139 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2140
2141         * .version: bumped version number to 2.4.8
2142         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2143         pic16 port,
2144         * device/lib/pic16/libio/i2c/: I2C module support library,
2145         * device/include/pic16/i2c.h: I2C support library header,
2146         * device/lib/pic16/libc/stdio/: standard IO support sources,
2147         * (printf_small.c): printf_small() source, supports float print,
2148         * (printf_tiny.c): printf_tiny() source, does not support floats,
2149         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2150         enable global optimizations for entire library source, other
2151         Makefiles in the source tree are also modified to reflect this,
2152         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2153         function,
2154         * doc/sdccman.lyx: updated to reflect new changes,
2155         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2156         sym->onStack if-case,
2157         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2158         sbit, idata, _idata, xdata, _xdata,
2159         * added pragma library, to link an external library, (see doc),
2160         * removed command line options, --pomit-config-words, --pomit-ivt,
2161         --pleave-reset-vector,
2162         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2163         when calling assembler to reflect memory model used, also define
2164         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2165         reflect stack model used,
2166         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2167         on stack return NULL,
2168
2169 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2170
2171         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2172           of the operands is volatile. Fixes #1020220
2173
2174 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2175
2176         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2177         * (OptimizeRegUsage): make sure that there is really no other flow where
2178           the first pCode is used
2179
2180 2005-01-22 Raphael Neider <rneider AT web.de>
2181
2182         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2183           to fix #1106967 (pCode->seq are not set up correctly)
2184
2185 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2186
2187         * src/SDCCglue.c (glue): make sure code area is declared before the
2188         static initialization area.
2189
2190 2005-01-21 Raphael Neider <rneider AT web.de>
2191
2192         * device/lib/Makefile.in: fixed test for pic16 install dir
2193         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2194           optimizations
2195         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2196           added --optimize-goto compiler switch and pragma wparam documentation
2197         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2198         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2199           and PRODH closing bug #1071770 (peephole optimizer)
2200
2201 2005-01-19 Raphael Neider <rneider AT web.de>
2202
2203         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2204           cmdLine buffers (used when calling sdcpp...) are large enough
2205           (MAX_PATH=256 truncates arguments leading to system halts when
2206           used in MinGW...)
2207         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2208         * (genUminus): rewritten to for efficiency
2209         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2210           used uninitialized in some cases)
2211         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2212           copy the third byte from the int -- now assumes 0x80 (data memory)
2213         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2214           operands (genAddLit expects the iCode's operands to swapped as
2215           well), fixed leftover bytes (crashed for short left operands)
2216         * (pic16_genMinusDec): performance improvements, removed false
2217           PIC14 emitSKPNCs
2218         * (pic16_genMinus): fixed to cope with differently sized operands
2219         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2220           for --obanksel > 1
2221         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2222         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2223           new banksel optimization
2224         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2225           analysis for temporary registers (segfaults...)
2226         * src/pic16/peeph.def: added rule
2227
2228 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2229
2230         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2231         which converts a float number to its ASCII representation
2232         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2233         functions to convert the fractional and integer part of a float to ASCII,
2234         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2235         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2236         ram
2237         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2238         _STATMEM macros,
2239         * device/include/pic16/adc.h: added GPL info,
2240         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2241         a pCodeOp as tested operand,
2242         * (genNearPointerGet): optimized bit testing, does not use
2243         intermediate register for bit value, test directly instead with
2244         BTFSS, BTFSC, works only for single bits,
2245         * (genpic16Code): dump the name of the iCode in the asm,
2246         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2247         renamed to pic16_decodeOp,
2248         * (serialRegAssign): do not allocate a temporary register for iCode
2249         sequences that test a single bit for 1/0
2250
2251 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2252
2253         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2254         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2255         access stack and frame pointers. They are initially assigned to
2256         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2257         accessing SFRs. Updated all occurences of modification of stack or
2258         frame pointer in gen.c and pcode.c,
2259         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2260         assigning of a literal value to pointers,
2261         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2262         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2263         selected
2264
2265 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2266
2267         * doc/sdccman.lyx: update documentation about stack pragma, added
2268         some info for stack memory models
2269
2270 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2271
2272         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2273
2274 2005-01-08 Raphael Neider <rneider AT web.de>
2275
2276         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2277           udata sections to fix bug #1097823
2278
2279 2005-01-05 Raphael Neider <rneider AT web.de>
2280
2281         * src/pic16/gen.c (genGenericShift): added handling of differently
2282           sized left operand and result
2283
2284 2005-01-04 Raphael Neider <rneider AT web.de>
2285
2286         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2287         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2288           to hold the condition bit)
2289         * added new version of genCmp (old code available via #define)
2290         * added new version of genShiftLeft/genShiftRight in a generic
2291           way, now supports shifting by negative values
2292         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2293           shiftCount (expected by genGenericShift)
2294         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2295         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2296           dump
2297         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2298           is an invalid literal too...)
2299
2300 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2301
2302         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2303         from Raphael Neider,
2304         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2305         for 8-bit literals. This fixes some literal operands which are sign
2306         extended to 16-bits ints when instruction needs only 8-bits.
2307
2308 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2309
2310         * device/lib/logf.c: added mcs51 assembly version
2311         * device/lib/expf.c: added mcs51 assembly version
2312         * device/lib/_logexpf.c: new shared asm code for expf and logf
2313         * device/include/math.h: add defines for assembly math library
2314         * device/lib/Makefile.in: build new _logexpf.c
2315         * device/lib/libfloat.lib: use new _logexpf.c
2316
2317 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2318
2319         * src/pic/device.c
2320         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2321           device types which have less than 0x7f registers.
2322
2323 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2324
2325         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2326
2327 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2328
2329         * device/lib/printf_fast.c: only build on supported arch.
2330         * device/lib/printf_tiny.c: only build on supported arch.
2331         * device/lib/printf_fast_f.c: only build if asm float lib
2332         * device/lib/_fsget1arg.c: only build if asm float lib
2333         * device/lib/_fsget2args.c: only build if asm float lib
2334         * device/lib/_fsnormalize.c: only build if asm float lib
2335         * device/lib/_fsreturnval.c: only build if asm float lib
2336         * device/lib/_fsrshift.c: only build if asm float lib
2337         * device/lib/_fsswapargs.c: only build if asm float lib
2338         * device/include/stdio.h: don't provide print_fast,
2339           print_fast_f, print_tiny prototypes if --xstack used
2340
2341 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2342
2343         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2344         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2345           to the SOURCES
2346
2347 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2348
2349         * device/lib/printf_fast_f.c: same as printf_fast, but
2350           with floating point enabled
2351         * device/lib/printf_fast.c: minor tweaks
2352         * device/include/stdio.h: add printf_fast_f
2353
2354 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2355
2356         * src/SDCCmain.c: make --float-reent default for mcs51
2357         * device/lib/_fsadd.c: added mcs51 assembly version
2358         * device/lib/_fssub.c: added mcs51 assembly version
2359         * device/lib/_fsmul.c: added mcs51 assembly version
2360         * device/lib/_fsdiv.c: added mcs51 assembly version
2361         * device/lib/_fseq.c: added mcs51 assembly version
2362         * device/lib/_fsneq.c: added mcs51 assembly version
2363         * device/lib/_fsgt.c: added mcs51 assembly version
2364         * device/lib/_fslt.c: added mcs51 assembly version
2365         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2366         * device/lib/Makefile.in: add _fscmp to build
2367         * device/lib/libfloat.lib: add _fscmp to build
2368
2369 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2370
2371         * device/lib/_fs2slong.c: added mcs51 assembly version
2372         * device/lib/_fs2sint.c: added mcs51 assembly version
2373         * device/lib/_fs2schar.c: added mcs51 assembly version
2374         * device/lib/_fs2ulong.c: added mcs51 assembly version
2375         * device/lib/_fs2uint.c: added mcs51 assembly version
2376         * device/lib/_fs2uchar.c: added mcs51 assembly version
2377         * device/lib/_slong2fs.c: added mcs51 assembly version
2378         * device/lib/_sint2fs.c: added mcs51 assembly version
2379         * device/lib/_schar2fs.c: added mcs51 assembly version
2380         * device/lib/_ulong2fs.c: added mcs51 assembly version
2381         * device/lib/_uint2fs.c: added mcs51 assembly version
2382         * device/lib/_uchar2fs.c: added mcs51 assembly version
2383         * device/include/float.h: added #define to select asm vs c
2384
2385 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2386
2387         * device/lib/printf_fast.c: improvements to float output
2388         * device/include/float.h: add defines for assembly float library
2389         * device/lib/_fsget1arg.c: receive 1 float arg
2390         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2391         * device/lib/_fsnormalize.c: normalize a float
2392         * device/lib/_fsreturnval.c: return float, various helper routines
2393         * device/lib/_fsrshift.c: right shift a float's mantissa
2394         * device/lib/_fsswapargs.c: swap 2 floats
2395         * device/lib/Makefile.in: build these 6 new files for mcs51
2396         * device/lib/libfloat.lib: add these 6 files to the library
2397
2398 2004-12-26 Borut Razem <borut.razem AT siol.net>
2399
2400         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2401           built by gcc 3.4.2
2402
2403 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2404
2405         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2406           and fully reentrant and register bank neutral.
2407         * device/lib/printf_fast.c: added float (not enabled by default),
2408           added compact/slower integer (also not enabled by default),
2409           improved size/speed of fast integer code, other minor changes
2410         * device/include/stdio.h, device/lib/Makefile.in,
2411           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2412
2413 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2414
2415         * src/pic16/pcode.c: declaring variables other than at the start of a
2416           block is not supported in C by VC6.
2417
2418 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2419
2420         * applied a previous patch from Raphael Neider that wasn't included
2421         in the previous commits, which fixes infinite loops within jumptable
2422         improvements,
2423         * made some fixes that previous patches introduced
2424
2425 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2426
2427         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2428         that fixes an issue with AOP_PCODE asmop's offset,
2429         * (pic16_popCopyReg): update instance field too,
2430         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2431         function of pic port,
2432         * (genCmp, genAnd, genAssign),
2433         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2434
2435 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2436
2437         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2438         variables initial values to idata section,
2439         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2440         variables in some functions. This utilizes parmBytes field of iCode
2441         structure to hold the offset of the variable in stack. (might be
2442         able to use the stack field too?)
2443         * applied patch from Raphael Neider # ### , # ###
2444         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2445         variable initial values in idata section,
2446         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2447         for static variables with initial value
2448         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2449         applied fix in while loop from Raphael Neider.
2450
2451 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2452
2453         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2454         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2455         * src/ds390/ralloc.c (serialRegAssign): spill bits
2456         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2457         * support/Util/SDCCerr.c,
2458         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2459         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2460         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2461
2462 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2463
2464         * device/include/sdcc-lib.h: inserted LGPL, added includes
2465           asm/ds390/features.h and asm/mcs51/features.h
2466         * device/include/asm/default/features.h,
2467         * device/include/asm/gbz80/features.h,
2468         * device/include/asm/z80/features.h: added empty _AUTOMEM
2469           and _STATMEM
2470         * device/include/asm/ds390/features.h,
2471         * device/include/asm/mcs51/features.h: added files with defines for
2472           _AUTOMEM and _STATMEM indicating automatic and static storage class
2473         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2474         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2475         * src/SDCCicode.c (geniCodeCast),
2476         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2477         * src/SDCCloop.c (loopInduction): removed unused variable lr
2478         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2479           to convertToFcall to include char modulo (RFE 1065037), added check
2480           if left operand is unsigned and use abs of literal value
2481         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2482           as it doesn't work after conversion from peephole.def to peephole.rul
2483         * src/mcs51/gen.c (toBoolean): added check for size,
2484           (genModOneByte): optimized code for signed char modulo a literal
2485           power of 2 (thanks to Hubert Sack),
2486           (genRRC): removed unnecessary "clr c",
2487           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2488         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2489           jump optimization,
2490           swapped rules 256.c and 256.d,
2491           extended 256.d by using new multiple checks (thanks Erik),
2492           added rules 256.e and 256.f,
2493           updated rule 261.a and 261.b to new generated code
2494         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2495
2496 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2497
2498         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2499           induction related bugs, including first part of bug #1074377
2500
2501 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2502
2503         * applied patch from bug-report #1076292,
2504         * applied patches for genAnd and Goto-optimizations for Raphael
2505         Neider,
2506         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2507         dump a less iCode information,
2508         * src/pic16/device.h (pic16_options_t): added field debgen,
2509         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2510         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2511         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2512         puclic,
2513         * (various functions): added macros FENTRY and FENTRY2 to functions,
2514         to emit function prologue,
2515         * (various functions): fixed indentation,
2516         * (genNearPointerGet): fixed loading of FSR0,
2517         * (genPackBits): applied patch from Raphael Neider to fix updating
2518         of FSR0 and touching only the modified bits,
2519         * src/pic16/genarith.c (various functions): added macros FENTRY to
2520         emit function prologue in comments,
2521         * src/pic16/pcode.h: added functions debugf2, debugf3,
2522         * src/pic16/ralloc.c: partial fix for packForPush caused
2523         segmentation fault,
2524
2525 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2526
2527         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2528           <stsp AT users.sourceforge.net> with reversed byte order
2529         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2530
2531 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2532
2533         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2534           bug #1074377
2535         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2536         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2537
2538 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2539
2540         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2541
2542 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2543
2544         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2545           conditions,
2546           (setFromConditionArgs): friendly operand parser for peephole rules,
2547           (operandBaseName, operandsNotRelated): new peephole condition
2548           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2549           architecture specific register naming into account, handles n-way
2550           comparisons, and supports quoted literals
2551         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2552
2553 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2554
2555         * src/mcs51/peeph.def: fixed bug #1076940
2556
2557 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2558
2559         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2560
2561 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2562
2563         Adding support for replacing ljmps with sjmps in jumptables
2564         generated for switch statements. For now you need to set the
2565         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2566         Now 4 algorithms for mcs51 jumptable generation are used:
2567         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2568         addresses loaded pc-relative for up to 112 cases and stack-pushing
2569         target addresses loaded with offset from dptr for up to 256 cases.
2570
2571         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2572         * src/mcs51/main.c: adapted constants for switch table generation
2573         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2574
2575 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2576
2577         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2578         * support/regression/tests/bug1057979.c: added test for bug 1073386
2579
2580 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2581
2582         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2583         compilers
2584
2585 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2586
2587         * src/pic16/device.h,
2588         * src/pic16/genarith.c,
2589         * src/pic16/glue.c,
2590         * src/pic16/main.c,
2591         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2592
2593 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2594
2595         Large cummulative patch for pic16 port.
2596         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2597         to call when a stack overflow occurs,
2598         * (malloc.h): added CVS Id tag,
2599         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2600         variable,
2601         * added libc directory. The current version of LibC contains string
2602         functions, ctype functions and macros and some functions of the
2603         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2604         be extensively tested in the future. Standard disclaimer here.
2605         Library is not automatically build yet. But one can build it by
2606         invoking 'make' inside the libc directory.
2607         * added ADC library under libio. Preliminary version yet.
2608
2609         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2610         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2611         aopForRemat() now and not by pic16_aopOp(),
2612         * (pic16_popGetTempReg): removed warning messgae when allocating
2613         temporary registers, its a buggy feature and will be removed,
2614         * (pic16_popGet): set register instance field in AOP_CRY,
2615         * (pic16_outBitC): fixed for results in size greater than 1,
2616         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2617         * (pic16_storeForReturn): optimized return of 0,
2618         * (genCmp): experimental code for new genCmp which uses PIC18's
2619         special compare&skip instructions. Initial tests fail some times
2620         with variables grater than 1 byte in size, so new code is disabled,
2621         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2622         a single bit,
2623         * (genCast): began a fix to optimize the casting of a bit to another
2624         bit, now assigning a bitfield to another bitfield will fail, sorry,
2625         * src/pic16/main.c: disabled the use of lr-support feature,
2626         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2627         * added some function prototypes, added function _debugf prototype,
2628         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2629         bits with offset (case PO_GPR_BIT),
2630         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2631         command line,
2632         * (isBankInstruction): modified to return 0 for no banking instruction,
2633         and 1 for banking instruction,
2634         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2635         caused stop processing pCodes after a inline assembly block,
2636         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2637         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2638         registers when it shouldn't,
2639         * src/pic16/ralloc.c (allocReg): add preliminary support for
2640         supporting a limited set of temporary registers,
2641
2642 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2643
2644         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2645           genDataPointerSet): ensure assignments always copy in MSB to LSB
2646           order,
2647           (loadRegFromAop): recognize CLRH optimization,
2648           (genFunction): optimize RECEIVE iCodes in reentrant functions
2649
2650 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2651
2652         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2653           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2654           selected.
2655         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2656         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2657           contiguous with data
2658
2659 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2660
2661         * device/lib/_gptrget.c (_gptrget),
2662         * device/lib/_gptrgetc.c (_gptrgetc),
2663         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2664           instead of sjmp to ret
2665         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2666           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2667
2668 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2669
2670         * .version: bumped version to 2.4.7
2671         * device/lib/_gptrget.c (_gptrget): is now _naked
2672         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2673         * device/lib/_gptrput.c (_gptrput): is now _naked
2674         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2675           (createFunction): fixed xstack
2676         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2677         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2678           or bit either,
2679           (geniCodeCritical): store original interrupt state in an iTemp bit
2680           var unless stack-auto
2681         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2682         * src/SDCCmain.c (setIncludePath): added include/target to search path
2683         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2684         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2685           prototype,
2686           (processFuncArgs): put bit vars in bit area
2687         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2688           unsaveRBank): fixed xstack,
2689           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2690           (genFunction, genEndFunction): fixed xstack,
2691           (genAssign): optimization don't walk backwards through mem
2692         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2693         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2694         * support/regression/Makefile: also make library (for stack-auto) when
2695           making "all" and added "test-mcs51-xstack-auto"
2696         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2697         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2698         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2699         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2700         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2701           make-library by MAKE_LIBRARY
2702         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2703           regression tests for xstack
2704         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2705         * support/regression/tests/critical.c: test for critical on mcs51
2706
2707 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2708
2709         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2710           built version of sdcc instead of installed version
2711
2712 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2713
2714         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2715         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2716           vprintf.c now
2717         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2718         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2719           WARNING: remove device/lib/build/z80/printf.o by hand when
2720           updating from previous build!
2721         * device/lib/z80/printf.c: updated comment
2722         * support/regression/tests/bug1057979.c: test all ports now
2723         * support/regression/tests/bug1065458.c: file added
2724
2725 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2726
2727         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2728           *_start and *_end symbols for static functions
2729
2730 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2731
2732         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2733           and search crt0.o in all library paths,
2734           (setIncludePath): proper handling of --nostdinc,
2735           (setLibPath): proper handling of --nostdlib
2736         * support/regression/Makefile,
2737         * support/regression/ports/ds390/spec.mk,
2738         * support/regression/ports/gbz80/spec.mk,
2739         * support/regression/ports/hc08/spec.mk,
2740         * support/regression/ports/mcs51/spec.mk,
2741         * support/regression/ports/mcs51-large/spec.mk,
2742         * support/regression/ports/mcs51-stack-auto/spec.mk,
2743         * support/regression/ports/z80/spec.mk: use include and lib files from
2744           built version of sdcc instead of installed version
2745         * doc/sdccman.lyx: fixed typo in --nostdinc
2746
2747 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2748
2749         * src/pic/pcode.c,
2750         * src/pic/device.c,
2751         * src/pic/ralloc.c,
2752         * src/pic/gen.c : added support to generate code for struct bit fields.
2753
2754 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2755
2756         * as/xa51/xa_version.h,
2757         * device/include/errno.h,
2758         * device/include/regc515c.h,
2759         * device/lib/_itoa.c,
2760         * device/lib/_ltoa.c,
2761         * device/lib/ser_ir_cts_rts.c,
2762         * sim/ucsim/xa.src/glob.cc,
2763         * sim/ucsim/xa.src/inst_gen.cc,
2764         * sim/ucsim/xa.src/xa_bit.cc,
2765         * sim/ucsim/xa.src/xa_sfr.cc,
2766         * sim/ucsim/z80.src/inst_dd.cc,
2767         * sim/ucsim/z80.src/inst_fdcb.cc,
2768         * support/scripts/keil2sdcc.pl,
2769         * src/pic16/pic16.dsp,
2770         * src/pic16/pic16a.dsp: corrected cvs line endings
2771         * device/lib/printf_large.c: fixed bug 1057979
2772         * src/pic16/gen.c: fixed non-C standard code
2773         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2774         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2775         * support/regression/ports/mcs51/support.c: reload T1 asap
2776         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2777           pdata use and clear idata startup behaviour
2778         * support/regression/tests/bug1057979.c: added
2779
2780 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2781
2782         * device/examples/ds390/ow390/ad26.h,
2783         * device/examples/ds390/ow390/cnt1d.h,
2784         * device/examples/ds390/ow390/crcutil.c,
2785         * device/examples/ds390/ow390/ownet.h,
2786         * device/examples/ds390/ow390/owsesu.c,
2787         * device/examples/ds390/ow390/swt12.h,
2788         * device/examples/ds390/ow390/swtoper.c,
2789         * device/examples/ds390/ow390/temp10.h,
2790         * device/examples/ds390/ow390/thermodl.c,
2791         * device/examples/ds390/tinitalk/tinitalk.dsp,
2792         * device/examples/ds390/tinitalk/tinitalk.dsw,
2793         * device/examples/mcs51/clock/hw.h,
2794         * device/examples/mcs51/simple2/go.bat,
2795         * device/examples/serialcomm/windows/serial.h,
2796         * device/examples/xa51/dummy.c,
2797         * device/examples/xa51/hello.c,
2798         * device/include/80c51xa.h,
2799         * device/include/at89x051.h: corrected cvs line endings
2800
2801 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2802
2803         * src/pic16/main.c (options): added command line --gstack, to trace
2804         stack over/under flows,
2805         * added pragma 'wparam' to allow passing first byte of function
2806         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2807         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2808         call to __gstack_test function and sets up the symbol as extern,
2809         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2810         * popaop): added call to pic16_testStackOverflow,
2811         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2812         wparamList list,
2813         * (genCall, genPcall): now all parameters are passed via stack
2814         except in functions that are pass to wparam pragma in which WREG is
2815         used too,
2816         * (genPcall): REENTRANT flag is checked to see if variable prototype
2817         contains reentrant keyword, don't call a non-reentrant function, via
2818         a reentrant function pointer or vice versa, functions are never
2819         passed via WREG,
2820         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2821         D.Winkler,
2822         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2823         SIGSEGV when accessing a NULL register stucture,
2824         * (pic16_printGPointerType): modified to handle UPPER modifier for
2825         function initializers, changed prototype of function to simpler one,
2826         * (pic16_printIvalFuncPtr): check to see if function is already
2827         added in externs list,
2828         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2829         optimized a move from W to SFR with a move to the same register
2830         later after a CALL,
2831         * device/lib/pic16/debug: NEW directory, contains debug features
2832         which are enabled when linking with libdebug.lib, currently command
2833         line option --gstack enables stack pointer tracing for over/under
2834         flow, corresponding sources are in debug/gstack
2835
2836 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2837
2838         * doc/sdccman.lyx: updated SDCC version,
2839         * (PIC16 port): update list of command line options,
2840         * src/pic16/device.h (structure pic16_options_t): added field gstack
2841         to enable stack overflow tracing on push/pops,
2842         * src/pic16/device.c (statistics structure): added statistics
2843         structure,
2844         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2845         pic16_dump_int_registers): increase statistics counters for each
2846         * variable which is encountered
2847         * (pic16_dump_usection): emit each .udata variable to its own udata
2848         section,
2849         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2850         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2851         parameters via stack, otherwise use old scheme,
2852         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2853         assembler output file,
2854         * src/pic16/main.c: added command line options --gstack to enable
2855         push/pop tracing for stack overflow,
2856         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2857         instructions): added size of each instruction,
2858         * (pic16_countInstruction): estimate size of instructions in
2859         the_pFile list, inline assembly blocks are not counted,
2860         * (pic16_FixRegisterBanking): trace previous register usage, when
2861         banksel optimizations is greater than 0, don't emit a redudant
2862         banksel directive,
2863
2864 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2865
2866         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2867         * src/pic16/ralloc.c : applied same fix for pic16.
2868         * src/pic/gen.c : tidied it up a little.
2869
2870 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2871
2872         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2873         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2874
2875 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2876
2877         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2878
2879 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2880
2881         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2882         non-reentrant function __modsint in the interrupt function (thus
2883         corrupting math operations during serial I/O)
2884         * device/lib/ser_ir.c: as above, changed buffersize
2885         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2886         256.c,d for zeroing
2887         * doc/Makefile: added option -t for rsync
2888
2889 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2890
2891         * src/SDCCast.h (struct ast),
2892         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2893
2894 2004-10-20 Borut Razem <borut.razem AT siol.net>
2895
2896         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2897         package
2898
2899 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2900
2901         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2902         makefile targets,
2903         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2904         support functions to replace long sequences of MOVFF's from access
2905         bank registers to stack and vice versa,
2906         * src/pic16/device.h: added new field opt_flags, where optimization
2907         flags can be set to enable certain features,
2908         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2909         * pBlock, (genFunction, genEndFunction): surroung loop for
2910         saving/loading used registers in stack with PC_INFO pCodes,
2911         INF_LREGS. Code in between can then be optimized by pCode optimizer
2912         to support function calls,
2913         * (genDataPointerSet): fixed bug which loaded float fields in
2914         structures with corrupt data,
2915         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2916         in a standard way debug info on stderr. Feature used for developing
2917         and debugging only,
2918         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2919         obsolete chunks of code,
2920         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2921         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2922         * pic16/src/pcode.c (pic16_newpCodeInfo,
2923         * (pic16_newpCodeOpLocalRegs),
2924         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2925         feature,
2926         * (pic16_pCodeConstString): printing of the initial value of a
2927         symbol as a comment is inhibited since parsing was already done by
2928         copyStr and output is corrupt,
2929         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2930
2931 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2932
2933         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2934
2935 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2936
2937         * as/mcs51/lkarea.c: removed old K&R style,
2938           (lnksect): changed check on boundary error,
2939           (lnksect2): changed check on boundary error,
2940           (lnksect2): extend XSTK to end of page if size = 1
2941         * as/mcs51/lkmain.c: removed old K&R style,
2942           (Areas51): create l_IRAM symbol
2943         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2944         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2945           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2946         * device/lib/_mullong.c: added version to be compiled with xstack
2947         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2948         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2949         * device/lib/mcs51/crtxstack.asm: fixed comment
2950         * src/SDCCglue.c: maxInterrupts defaults to 0,
2951           (emitMaps): added pdata,
2952           (createInterruptVect): (re)moved default,
2953           (glue): added pdata,
2954           (glue): moved __start__xstack to XSTK with default size 1
2955         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2956           and options.float_rent when options.stackAuto is set,
2957           (linkEdit): only write XDATA_NAME if provided on command line
2958         * src/SDCCmem.h,
2959         * src/SDCCmem.c: added pdata
2960         * src/port.h: added pdata_name to PORT
2961         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2962           (saveRegisters, unsaveRegisters): removed usage of B,
2963           (genMinus): fixed accumulator clash,
2964           (genJumpTab): added comment, this needs another look
2965         * src/mcs51/gen.c: added check for "B in use" paranoia,
2966           added pushB() and popB()
2967         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2968           chance
2969         * src/avr/main.c,
2970         * src/ds390/main.c,
2971         * src/hc08/main.c,
2972         * src/mcs51/main.c,
2973         * src/pic/main.c,
2974         * src/pic16/main.c,
2975         * src/xa51/main.c,
2976         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2977           added PSEG (PAG,XDATA) or NULL to port specifier
2978         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2979         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2980           (_mcs51_genInitStartup): removed __start__xstack equ,
2981           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2982         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2983         * src/z80/gen.c (_rleAppend): fixed warnings
2984         * support/regression/tests/zeropad.c: added pdata test
2985         * .version: bumped to 2.4.6
2986
2987 2004-10-17 Borut Razem <borut.razem AT siol.net>
2988
2989         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2990         as a part of nightly build
2991
2992 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2993
2994         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2995         WREG holds the first byte function parameters,
2996         * (aopForSym): take special case for symbols which are in FARSPACE
2997         but in CODESPACE too,
2998         * (assignResultValue): modified to take into account _G.useWreg,
2999         * (genCall): don't use wreg for parameter passing when function is
3000         declared as reentrant, too, added optimization INCF to stack
3001         pointer when stack parameter count is 1,
3002         * (genFunction, genEndFunction): refurnished and fixed to not using
3003         wreg for passing parameters when function has varargs or is
3004         reentrant, fixed bug with symbol name compare for generating
3005         functions in absolute address,
3006         * (pic16_storeForReturn): refurnished,
3007         * (genCmp): began writing a new version of the function, not ready
3008         yet, therefore it is disabled,
3009         * (genAssign): do not read code memory when assigning a function to
3010         a pointer function,
3011         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3012         array of characters, not pointer,
3013         * (pic16initialComments): in debug mode emit an .ident directive for
3014         the assembler,
3015         * (_process_pragma): emit a new warning type (internal to pic16)
3016         when setting stack to default length, emit a similar warning when
3017         placing a function at absolute address and address is not word aligned
3018         * (_pic16_parseOptions): added 'return TRUE' statement,
3019         * (_pic16_linkEdit): if compiling a source, then add the source's
3020         file object, first in the list of objects to link,
3021
3022 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3023
3024         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3025         * src/pic/main.c : removed VC warning.
3026         * src/pic/gen.c : changed comment.
3027
3028 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3029
3030         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3031         reference to a deprecated symbol _GPTRREG was causing failure to
3032         link. Thanks G. M. Gallant for the info.
3033
3034 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3035
3036         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3037         comments for Bugs item #954788.
3038
3039 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3040
3041         * src/pic16/device.c (pic16_dump_gsection,
3042         * pic16_groupRegistersInSection): handle symbols declared to be in
3043         access bank differently,
3044         * src/pic16/gen.c (struct _G): added field resDirect,
3045         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3046         send values read from stack directly to result and don't allocate
3047         temporary values,
3048         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3049         same registers,
3050         * (pic16_sameRegsOfs): NEW,
3051         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3052         free because they were not allocated from temporary pool,
3053         * pic16_popRegFromString): workaround to fix a problem with
3054         allocating variables twice or never,
3055         * (genGenPointerGet): using PRODL instead of FSR0H,
3056         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3057         instead of FSR0H,
3058         * (genAssign): take advantage of the _G.resDirect flag,
3059         * (genCast): around line 11844, use mov2f instead of directly
3060         MOVFF'ing between operands to account for literal values,
3061         * src/pic16/genutils.c: some new debug functions for gpsim have been
3062         added,
3063         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3064         float with integer part only,
3065         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3066         place variables in access bank
3067         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3068         updated sources to reflect recent changes in gen.c
3069
3070 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3071
3072         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3073         sources that searched for headers in installation path, now the
3074         device/include/pic16 is used,
3075         * src/pic16/glue.c (pic16glue),
3076         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3077         .line directives if not in debug mode, this suppresses assembler's
3078         warnings for ignored directives
3079
3080 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3081
3082         * src/port.h: made reset_regparms prototype void parameter explicit.
3083         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3084         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3085         * doc/sdccman.lyx: documented warning disabling and how to use
3086           printf_large to make it print floats.
3087         * device/include/stdbool.h: NEW
3088         * device/lib/_atof.c,
3089         * device/lib/_divuint.c,
3090         * device/lib/_divulong.c,
3091         * device/lib/expf.c,
3092         * device/lib/printf_large.c,
3093         * device/lib/sincosf.c,
3094         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3095         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3096           a completely reentrant lib.
3097
3098 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3099
3100         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3101         * device/include/pic16/stdio.h: fixed bug with colon
3102
3103 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3104
3105         * device/include/pic16/stdio.h,
3106         * device/include/pic16/stdlib.h,
3107         * device/include/pic16/math.h: NEW
3108         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3109         declared as _naked to reduce overhead
3110         * device/lib/Makefile.in (target port-specific-objects-pic16):
3111         changed * to *.* so to ignore the CVS directory,
3112         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3113         stacked variables back in stack,
3114         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3115         corruption
3116
3117 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3118
3119         * .version: bumped version number to 2.4.5
3120         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3121         * support/Util/SDCCerr.c (messages structure): added entry for
3122         W_POSSBUG2
3123
3124         Large cumulative patch for pic16 port and libraries.
3125         * device/include/pic16/sdcc-lib.h,
3126         * device/include/pic16/stdarg.h,
3127         * device/include/asm/pic16/features.h,
3128         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3129         * device/include/pic16/float.h: changes reentrant keyword with
3130         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3131         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3132         updated target build-libraries to include objects from gptr,
3133         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3134         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3135         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3136         all function headings,
3137         * src/SDCCmain.c: added global parameter userIncDirsSet,
3138         * (parseCmdLine): when option -I is encountered add directory to
3139         userIncDirsSet too,
3140         * src/version.awk: added space between control and long,
3141         * src/pic16/NOTES: added some notes for the port,
3142         * src/pic16/gen.c: added prototype for mov2fp function,
3143         * (fReturnpic16[]): properly named return value registers,
3144         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3145         * (aopForSym): added code to handle symbols with onStack flag set,
3146         symbols onStack are allocated PTRSIZE bytes,
3147         * (aopFreeAsmop): handles special case where asmops are stack objects,
3148         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3149         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3150         added argument lock to trace flaws in allocating temporary registers
3151         when developing port,
3152         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3153         * (pic16_popRegFromString): reenabled allocating a direct register
3154         from string,
3155         * (assignResultValue): various beautifications,
3156         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3157         referenced function argument,
3158         * (genIpush): reenabled to allow stacked arguments, handles only
3159         ic->parmPush iCodes,
3160         * (genCall, genPcall): major changes to allow for variable argument
3161         functions, fixed a bug with falsely restoring stack pointer after
3162         returning from call,
3163         * (genFunction): pending code for critical function,
3164         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3165         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3166         * (genNearPointerGet): fixed bug with indirect reading, was always
3167         reading from INDF0
3168         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3169         pointers,
3170         * (genAddrOf): rewrote code to take address of a stacked function parameter
3171         * (genCast): fixed casting to generic pointer type,
3172         * src/pic16/gen.h: added AOP_STA,
3173         * (struct asmop): added field stk,
3174         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3175         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3176         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3177         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3178         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3179         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3180         generic pointers,
3181         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3182         and library paths,
3183         * (pic16_port structure): generic pointer size is set to 3,
3184         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3185         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3186         compiler warning,
3187         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3188         operand is an iTemp,
3189
3190 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3191
3192         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3193         * debugger/mcs51/simi.c: addapt new syntax of s51
3194
3195 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3196
3197         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3198         * src/pic16/pcode.c: commented out some calls to free() in order to
3199         fix bug #989576,
3200
3201 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3202
3203         * src/SDCCicode.h,
3204         * src/SDCCicode.c (isiCodeInFunctionCall),
3205         * src/avr/ralloc.c (selectSpil),
3206         * src/pic/ralloc.c (selectSpil),
3207         * src/pic16/ralloc.c (selectSpil),
3208         * src/ds390/ralloc.c (selectSpil),
3209         * src/hc08/ralloc.c (selectSpil),
3210         * src/xa51/ralloc.c (selectSpil),
3211         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3212         stack in the middle of a function call sequence (fixes bug #1020268)
3213         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3214         costs associated with the minimum switch case.
3215
3216 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3217
3218         * src/SDCC.lex: fixed bug #1030549
3219
3220 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3221
3222         * src/SDCCcse.h (struct cseDef),
3223         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3224         over a function call if the CSE is derived from a symbol whose
3225         address has been taken (fixes bug #1029883)
3226         * support/regression/tests/bug-1029883: a new regression test for
3227         this bug
3228
3229 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3230
3231         * src/hc08/gen.c (emitinline): fixed bug #1029778
3232         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3233         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3234         and starts toward RFE #905167)
3235
3236 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3237
3238         * src/pic16/gen.c (mov2f): New function to move an operand to
3239         another without considering if it is a literal or a register,
3240         * (pic16_sameRegs): don't check if they are both AOP_REG,
3241         * (AccRsh): removed andmask=0 lines,
3242         * (genLeftShift): duplicated to be improved in future versions,
3243         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3244         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3245         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3246         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3247         * (insertBankSwitch): fixed inserting banksel directives algorithm
3248         for instructions that follow a skip instruction, this fixes a report
3249         for broken subtraction code generation,
3250         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3251         iCode is a left op, just in case result and right share the same
3252         registers
3253
3254 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3255
3256         * src/hc08/main.c,
3257         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3258         preservation of HX
3259         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3260         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3261         on 2004-09-12; it was buggy
3262
3263 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3264
3265         * src/SDCCsymt.h: removed RESULT_CHECK
3266         * src/SDCCast.c,
3267         * src/SDCCglue.c,
3268         * src/SDCCval.c,
3269         * src/pic/glue.c,
3270         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3271
3272 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3273
3274         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3275         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3276         configuration values no more rejected by compiler, they are assigned
3277         to configuration registers with a warning message instead,
3278         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3279         the for-loop so last conf register is emitted too,
3280         * (_pic16_initPaths): link library libsdcc.lib by default,
3281         * (_hasNativeMulFor): modified test for multiplication according to
3282         Raphael Neider's remarks. Integer multiplication is also done with
3283         support functions,
3284         * device/include/pic16/pic18fregs.h: corrected type error in while
3285         testing and including 18f6720 header file
3286
3287 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3288
3289         * src/pic16/device.h (pic16_options): removed field use_crt,
3290         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3291         until an optimization to handle single bits is added,
3292         * (pic16_loadFSR0): moved before genUnpackBits,
3293         * (genAnd): some white lines removed,
3294         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3295         leave_reset flags in pic16_options when using crt modules,
3296
3297 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3298
3299         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3300           for bugs 898889 & 979599. Also used some safer print instructions.
3301
3302 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3303
3304         * src/pic16/device.h (pic16_options_t): added field use_crt,
3305         crt_name, no_crt,
3306         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3307         catch a probable future bug,
3308         * src/pic16/gen.c: aopIdx function commented out,
3309         * (genAssign): commented out old code which used aopIdx,
3310         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3311         code, added if conditionals to take into account the --use-crt
3312         command line options,
3313         * src/pic16/main.c (pic16_optionsTable): added new command line
3314         options, --use-crt= and --no-crt,
3315         * (_pic16_linkEdit): now the proper crt object is added in the
3316         linker command line except than when --no-crt is specified,
3317         * src/pic16/pcode.c,
3318         * src/pic16/pcode.h: added some structures and functions for a new
3319         optimization scheme to compansate for instruction overhead between
3320         same iCodes, this scheme is currently under development and is not
3321         working in any way,
3322         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3323         to && operator,
3324         * device/lib/pic16/startup/crt0i.c,
3325         * device/lib/pic16/startup/crt0iz.c: added global char variable
3326         __uflags to force the generation of an idata section
3327
3328 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3329
3330         * doc/Makefile,
3331         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3332         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3333
3334 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3335
3336         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3337         Frieder) and clarified the default code optimization mode
3338
3339 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3340
3341         * src/SDCC.lex (doPragma, process_pragma),
3342         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3343         "opt_code_size", and "opt_code_balanced"
3344         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3345         regrouped options by category, added support for category headers
3346         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3347         and "--opt-code-size"
3348         * doc/sdccman.lyx: documented these new options and pragmas
3349         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3350         preference into account
3351
3352 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3353
3354         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3355           geniCodePreDec): Fixed bug 904237 by generating a warning
3356         * src/SDCCerr.h,
3357         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3358
3359 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3360
3361         * src/pic/device.c : When no max ram set validate full memory range.
3362         * src/pic/pcode.c,
3363         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3364
3365 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3366
3367         * device/lib/_gptrget.c,
3368         * device/lib/_gptrput.c: updated comment
3369         * device/lib/calloc.c,
3370         * device/lib/free.c,
3371         * device/lib/malloc.c,
3372         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3373         * src/SDCCcse.c (cseBBlock),
3374         * src/SDCCicode.c (printOperand, geniCodeArray),
3375         * src/SDCCicode.h (struct operand): fixed bug 868103
3376         * support/regression/tests/bug-868103.c: added
3377         * src/SDCCast.c (searchLitOp),
3378         * src/SDCCcse.h (struct cseDef),
3379         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3380         * src/SDCCicode.h (struct operand),
3381         * src/SDCCsymt.h (struct sym_link),
3382         * src/avr/gen.c (hasInc),
3383         * src/ds390/gen.c (hasInc),
3384         * src/hc08/gen.c (genPlusIncr, hasInc),
3385         * src/mcs51/gen.c (hasInc),
3386         * src/pic16/glue.c (pic16_printIvalChar),
3387         * src/pic16/ralloc.c (regWithIdx),
3388         * src/xa51/gen.c (hasInc) : removed warnings
3389         * src/SDCCast.c (createBlock): added comment ???
3390         * src/hc08/ralloc.c: updated comments
3391
3392 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3393
3394         * doc/sdccman.lyx: updated section on switch statements, added
3395         section about semaphore locking
3396         * doc/Makefile: added option -info for latex2html
3397         * device/lib/_gptrget.c,
3398         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3399
3400 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3401
3402         * src/pic/device.h,
3403         * src/pic/device.c,
3404         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3405          maxram is less than 0x100.
3406
3407 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3408
3409         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3410
3411 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3412
3413         * src/port.h,
3414         * src/mcs51/main.c,
3415         * src/ds390/main.c,
3416         * src/z80/main.c,
3417         * src/hc08/main.c,
3418         * src/pic/main.c,
3419         * src/pic16/main.c,
3420         * src/avr/main.c,
3421         * src/xa51/main.c
3422         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3423         a jump table is the best form for a switch statement, including
3424         automatic insertion of missing cases to make the case range
3425         continuous. Developed in collaboration with Frieder Ferlemann.
3426
3427 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3428
3429         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3430         accumulator result if it needs sign extension
3431
3432 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3433
3434         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3435
3436 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3437
3438         * device/lib/gbz80/printf.c,
3439         * device/lib/z80/printf.c: removed define for NULL
3440
3441 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3442
3443         * as/xa51/xa_link.c,
3444         * device/examples/ds390/ow390/ad26.c,
3445         * device/examples/ds390/ow390/cnt1d.c,
3446         * device/examples/ds390/ow390/counter.c,
3447         * device/examples/ds390/ow390/ds2480.h,
3448         * device/examples/ds390/ow390/ds2480ut.c,
3449         * device/examples/ds390/ow390/findtype.c,
3450         * device/examples/ds390/ow390/gethumd.c,
3451         * device/examples/ds390/ow390/owllu.c,
3452         * device/examples/ds390/ow390/ownetu.c,
3453         * device/examples/ds390/ow390/swt12.c,
3454         * device/examples/ds390/ow390/swtloop.c,
3455         * device/examples/ds390/ow390/temp.c,
3456         * device/examples/ds390/ow390/temp10.c,
3457         * device/examples/ds390/ow390/thermo21.c,
3458         * device/examples/ds390/ow390/tinilnk.c,
3459         * device/examples/ds390/ow390/tstfind.c,
3460         * device/examples/serialcomm/windows/serial.cpp,
3461         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3462         * device/include/reg51.h: fixed line endings for cvs
3463
3464 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3465
3466         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3467         packRegsForAccUse, packRegisters): new accumulator register
3468         packing algorithm
3469         * support/regression/ports/hc08/support.c (_putchar): suppress
3470         warning of unused variable
3471         * src/SDCCicode.c: added SWAP entry to codeTable
3472
3473 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3474
3475         * device/lib/sprintf.c: forgot to add this file before previous commit
3476
3477 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3478
3479         * src/pic16/gen.c (genPackBits): added operand right in function
3480         parameters, load result directly if p_type is POINTER (that is
3481         called by genNearPointerSet)
3482         * (genUnPackBits): added operand left in function parameters,
3483         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3484         FSR0 if accessing bitfields,
3485
3486 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3487
3488         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3489           _print_format; updated printf, sprintf, vsprintf
3490         * device/include/asm/default/features.h: corrected comment/define
3491         * device/lib/Makefile.in: added sprintf.c
3492         * device/lib/libsdcc.lib: added sprintf module
3493         * device/lib/printf_large.c,
3494         * device/lib/vprintf.c,
3495         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3496           into these 3 files
3497         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3498         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3499         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3500           hc08 test
3501         * support/regression/tests/zeropad.c: define idata as data for hc08
3502
3503 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3504
3505         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3506         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3507         labels are referenced at least once (even if a reference is not found)
3508         * src/hc08/gen.c (emitcode): set isComment flag for comments
3509         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3510         loads), rules 6a..6b (optimize jumps to return)
3511
3512 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3513
3514         * device/lib/acosf.c (acosf),
3515         * device/lib/asinf.c (asinf),
3516         * device/lib/atanf.c (atanf),
3517         * device/lib/ceilf.c (ceilf),
3518         * device/lib/cosf.c (cosf),
3519         * device/lib/coshf.c (coshf),
3520         * device/lib/cotf.c (cotf),
3521         * device/lib/fabsf.c (fabsf),
3522         * device/lib/floorf.c (floorf),
3523         * device/lib/log10f.c (log10f),
3524         * device/lib/logf.c (logf),
3525         * device/lib/sinf.c (sinf),
3526         * device/lib/sinhf.c (sinhf),
3527         * device/lib/sqrtf.c (sqrtf),
3528         * device/lib/tanf.c (tanf),
3529         * device/lib/tanhf.c (tanhf),
3530         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3531         replaced all instances of "reentrant" in the library functions
3532         defined in math.h with this macro.
3533         * support/regression/tests/float_trans.c: reenabled test for hc08
3534
3535 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3536
3537         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3538         erroneously deleted
3539
3540 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3541
3542         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3543         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3544         multi-byte volatile operands are used
3545         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3546         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3547         initialization to area GSINIT0 so that it would always precede
3548         any static initializers in GSINIT
3549         * support/regression/tests/zeropad.c: fixed idata define for hc08
3550         * support/regression/tests/bug-927659.c,
3551         * support/regression/tests/float_trans.c: disabled tests for hc08
3552         pending missing library routines
3553         * .version: increased version number to 2.4.4 - hc08 port now passes
3554         regression tests
3555
3556
3557 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3558
3559         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3560         * Makefile.common.in,
3561         * as/Makefile,
3562         * as/hc08/Makefile.in,
3563         * as/mcs51/Makefile.in,
3564         * as/z80/Makefile.in,
3565         * debugger/mcs51/Makefile.in,
3566         * device/include/Makefile.in,
3567         * device/lib/Makefile.in,
3568         * doc/Makefile,
3569         * link/Makefile,
3570         * link/z80/Makefile.in,
3571         * packihx/Makefile.in,
3572         * sim/ucsim/main_in.mk,
3573         * sim/ucsim/avr.src/Makefile.in,
3574         * sim/ucsim/doc/Makefile.in,
3575         * sim/ucsim/gui.src/serio.src/Makefile.in,
3576         * sim/ucsim/hc08.src/Makefile.in,
3577         * sim/ucsim/s51.src/Makefile.in,
3578         * sim/ucsim/xa.src/Makefile.in,
3579         * sim/ucsim/z80.src/Makefile.in,
3580         * src/Makefile.in,
3581         * support/cpp2/Makefile.in,
3582         * support/librarian/Makefile,
3583         * support/makebin/Makefile: added DESTDIR to the install path proposed
3584         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3585         * doc/sdccman.lyx: added DESTDIR documentation
3586
3587 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3588
3589         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3590         instruction for interrupt handlers, use fast returns when returning
3591         from high priority interrupts
3592
3593 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3594
3595         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3596         code generation
3597         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3598         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3599         bugs, ported much of Bernhard's code from mcs51
3600         * src/mcs51/gen.c (genSend),
3601         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3602         than one when calling a reentrant function
3603         * device/lib/_mullong.c: defined an alternate struct layout for big
3604         endian ports (hc08)
3605
3606 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3607
3608         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3609         test
3610
3611 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3612
3613         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3614         are sane and complete before asking the port its prefered parameter
3615         passing method (fixes bug #1017633)
3616         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3617         and _ret3
3618
3619 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3620
3621         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3622         problem in bitfields >= 8 bits.
3623
3624 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3625
3626         * src/SDCCsymt.c: undid changes that were not meant to be committed
3627
3628 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3629
3630         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3631
3632 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3633
3634         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3635           copied and wrong bit got inverted
3636
3637 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3638
3639         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3640         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3641         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3642         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3643         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3644         assignments to bitfields at known addresses
3645         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3646         reads from bitfields at known addresses
3647         * src/hc08/ralloc.c (packRegisters),
3648         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3649         genhc08Code): optimize pointer get values used as conditionals
3650         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3651         and branch
3652
3653 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3654
3655         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3656         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3657         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3658         as conditionals
3659
3660 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3661
3662         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3663
3664 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3665
3666         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3667         related problems
3668
3669 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3670
3671         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3672
3673 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3674
3675         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3676         mcs51 port
3677
3678 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3679
3680         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3681
3682 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3683
3684         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3685         cases use more compact code.
3686
3687 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3688
3689         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3690
3691 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3692
3693         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3694
3695 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3696
3697         * src/SDCCsymt.h,
3698         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3699         parameter of changePointer() from symbol* to sym_link*
3700         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3701         * src/SDCCsymt.c (compareType): void* type is castable to other
3702         pointers, but not necesarily an exact match.
3703         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3704         is no longer blindly treated as an exact match.
3705         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3706
3707 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3708
3709         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3710
3711 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3712
3713         * src/pic/gen.c,
3714         * src/pic/pcode.c,
3715         * src/pic/ralloc.h,
3716         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3717
3718 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3719
3720         * src/pic/device.c,
3721         * src/pic/device.h,
3722         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3723
3724 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/mcs51/gen.c (emitcode): fixed bug #992819
3727
3728 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3729
3730         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3731           there's no need to make it worse
3732
3733 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3734
3735         * src/mcs51/ralloc.c (deassignLR),
3736         * src/ds390/ralloc.c (deassignLR),
3737         * src/hc08/ralloc.c (deassignLR),
3738         * src/z80/ralloc.c (deassignLR),
3739         * src/pic/ralloc.c (deassignLR),
3740         * src/pic16/ralloc.c (deassignLR),
3741         * src/avr/ralloc.c (deassignLR),
3742         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3743         rlivePoint): fixed another part of bug #971834
3744
3745 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3746
3747         * src/z80/main.c: enabled "critical" keyword
3748         * src/z80/mappings.i,
3749         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3750         functions (fixes bug #979646)
3751         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3752
3753 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3754
3755         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3756           such as c:\mydir.
3757
3758 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3759
3760         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3761           doesn't disable too much optimizations
3762
3763 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3764
3765         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3766
3767 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3768
3769         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3770
3771 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3772
3773         * src/pic/gen.c tidied up tabs
3774         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3775         * src/pic/main.c tidied up tabs
3776         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3777         * src/pic/pcoderegs.c tidied up tabs
3778         * src/pic/ralloc.c tidied up tabs
3779
3780 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3781
3782         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3783         to S_FIXED for pic16 port and when symbol is not in level 0,
3784         allocate for S_REGISTER storage class and pic16 port, too,
3785         * src/pic16/device.h: prototype for checkSym,
3786         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3787         * (pic16_assignConfigWordValue): test the value and the mask to
3788         validate that the value is suitable for the configuration word,
3789         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3790         collect extern declared symbols, don't emit symbol twice, check
3791         first if symbol is in publics set first,
3792         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3793         * added command line '--fstack' which enables an experimental
3794         feature for stack access, too buggy to be used yet...
3795         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3796         * (pic16_allocDirReg): when register has storage class S_REGISTER
3797         allocate in pic16_dynAccessRegs,
3798         * device/include/pic16/pic18f????.h: modified configuration word
3799         naming convention, words started as CONFIG0H but should be CONFIG1H
3800
3801 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3802
3803         * device/include/mcs51reg.h: fixed bug 970993
3804
3805 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3806
3807         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3808         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3809         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3810         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3811         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3812         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3813           error/warning numbers,
3814           added function setWarningDisabled()
3815         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3816         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3817           _memcmp.c _memmove.c calloc.c realloc.c free.c
3818         * support/regression/tests/malloc.c: added tests for new functionality
3819         * support/regression/tests/zeropad.c: added tests for truncated initializers
3820           and initialized char arrays starting with '\x0'
3821         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3822
3823 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3824
3825         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3826
3827 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3828
3829         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3830         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3831         peephole 177.e. Thanks to anonymous
3832
3833 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3834
3835         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3836         function isn't used in the source but referenced as a
3837         variable initializer then declare it as extern in .asm file
3838
3839 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3840
3841         * .version: increased version number to 2.4.3
3842
3843         Adding version extension according to ChangeLog CVS revision
3844         * src/Makefile.in (target all): added dependency 'version.h'
3845         * (rule version.h): added rule to create version.h from ChangeLog,
3846         * (rule dep): added dependency version.h,
3847         * src/version.awk: AWK script to create version.h
3848         * src/SDCCdwarf2.c (dwWriteModule),
3849         * src/SDCCglue.c (initialComments),
3850         * src/SDCCmain.c (printVersionInfo): modified to write after
3851         version string the version extension number,
3852         * src/SDCCutil.c: included "version.h"
3853         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3854         number,
3855         * src/SDCCutil.h: added prototype for getBuildNumber
3856
3857         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3858         includeDirsSet, too,
3859         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3860         const char [] is found in function prototype...
3861
3862         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3863         moving to WREG with source is already in WREG,
3864         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3865         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3866         * (aopForSym): stack'ed symbols are partially supported, added
3867         if-clause to support symbols in FARSPACE,
3868         * (sameRegs): added test for AOP_ACC to see if registers are same,
3869         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3870         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3871         * (pic16_popRegFromString): will not allocate a new register if it
3872         doesn't find one by name, bug may have introduced...
3873         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3874         * (genIpush): revived to use pic16 port's stack,
3875         * (genAddrOf): added incomplete case for stack'ed operand,
3876         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3877         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3878         can handle multibyte operands,
3879         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3880         * (pic16initialComments): added message for MPLAB compatibility
3881         mode enabled,
3882         * src/pic16/main.h: prototype for pic16_mplab_comp,
3883         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3884         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3885         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3886         because of increased complexity of procedure,
3887         * (_process_pragma): stack pragma changed to format 'stack pos len',
3888         emit symbol '_stack_end' to conform with gplink,
3889         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3890         to search for register,
3891         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3892         PO_GPR_REGISTER,
3893         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3894         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3895         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3896         case for PO_GPR_REGISTER,
3897         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3898         dies, the new era is ahead !...
3899         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3900         pic16_dynInternalRegs,
3901         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3902         * (pic16_allocDirReg): minor optimizations and bug fixes,
3903         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3904
3905         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3906         load stack and frame pointer with address of 'stack_end' symbol
3907
3908 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3909
3910         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3911         without source code but only variable initializers
3912
3913 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3914
3915         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3916         external are not declared as extern to reduce overhead while linking
3917
3918 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3919
3920         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3921
3922 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3923
3924         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3925           Yee Keat for the patch
3926         * src/SDCCast.c (decorateType): fixed bug #979599
3927         * src/ds390/gen.h: removed local fReturnSizeDS390
3928         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3929         * src/ds390/gen.c (genAnd, genOr, genXor),
3930         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3931
3932 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3933
3934         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3935         add relFilesSet to $3, manipulate $2 to handle linking of object
3936         files without source files in command line,
3937         * device/include/pic16 (all headers): added ID location macros,
3938         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3939         entries for ID location bytes,
3940         * (pic16_assignIdByteValue): NEW,
3941         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3942         added field dumpcalltree to pic16_options_t,
3943         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3944         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3945         emitting rFalseIfx label after check_carry label,
3946         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3947         pic16_emitDIRegs), NEW
3948         * (pic16glue): dump .calltree file when option --calltree found,
3949         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3950         * (_pic16_genAssemblerPreamble): emit ID locations after
3951         configuration registers,
3952         * (pic16_linkCmd): modifications of the link command,
3953         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3954         * (pic16_pCodeInitRegisters): don't init stack registers,
3955         * (pic16_findPrevInstruction): fixed bug,
3956         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3957         bug with immediate registers,
3958         * (buildCallTree): traces stack push and pop,
3959         * (pct2): dump also stack usage for each function,
3960         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3961         * (pic16_allocDirReg): various modifications,
3962         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3963         fixed to 1,
3964
3965 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3966
3967         * src/pic16/pcode.c: removed buggy double colon
3968
3969 2004-07-01 Borut Razem <borut.razem AT siol.net>
3970
3971         * support/scripts/sdcc.nsi: added include/pic16 to setup
3972
3973 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3974
3975         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3976         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3977         target 'clean',
3978         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3979         specific command line arguments. Also added sample lkr script
3980         for placing a variable at a specific memory bank.
3981         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3982         at a specific memory bank,
3983         * (pic16_dump_isection): fixed bug which caused string literals to
3984         be omitted when dumping idata section,
3985         * (pic16_groupRegistersInSection): added code to handle registers
3986         in specific memory banks,
3987         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3988         public, all references are renamed too,
3989         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3990         AOP_DPTR2,
3991         * (pic16_storeForReturn): added case to handle when dest is WREG,
3992         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3993         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3994         pic16_rel_udata, check to see if that register is marked as being
3995         a member of a specific memory bank,
3996         * (pic16_printIvalCharPtr): added code to add string literals either
3997         to code or the idata sections,
3998         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3999         also accept the 'udata' pragma,
4000         * src/pic16/main.h: new structure types sectName and sectSym
4001         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4002         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4003         * (pic16_findPrevInstruction): fixed, it returned nothing,
4004         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4005         instruction combinations,
4006         * (pic16_FixRegisterBanking): heavily reorganised,
4007         * (pic16_AnalyzeBanking): if generating banksel directives is
4008         disabled, then don't call FixRegisterBanking at all,
4009         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4010         completely removed,
4011         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4012
4013 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4014
4015         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4016         Phuah Yee Keat <yk.phuah AT nestac.com>
4017
4018 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4019
4020         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4021         correctly the IVT even if it is relocated to some other location
4022
4023 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4024
4025         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4026         * device/include/pic16/pic18f2220.h: NEW,
4027         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4028         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4029         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4030         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4031         nodefaultlibs, ivt_loc is the location of the interrupt vector
4032         table, and nodefaultlibs signs that default libraries should not be
4033         linked in link stage,
4034         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4035         according to --ivt-loc argument,
4036         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4037         when pragma stack is found,
4038
4039 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4040
4041         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4042         256 (range check), 257 (do while), 258.a-f (bit banging
4043         f.e. on 3-wire SPI bus)
4044
4045 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4046
4047         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4048         variables used exclusively within a loop
4049
4050 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4051
4052         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4053
4054 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4055
4056         * src/SDCClrange.c (computeClash): fixed bug #971834
4057
4058 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4059
4060         * src/mcs51/gen.c (genCmp): fixed bug #975903
4061         * src/hc08/gen.c (operandsEqu),
4062         * src/ds390/gen.c (operandsEqu),
4063         * src/z80/gen.c (operandsEqu),
4064         * src/pic/gen.c (operandsEqu),
4065         * src/pic16/gen.c (operandsEqu),
4066         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4067         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4068
4069 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4070
4071         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4072
4073 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4074
4075         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4076         default case in switch statement,
4077         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4078         to eliminate problem with initialisation of pointers, but problem
4079         still exists,
4080         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4081         * (emitStaticSegment): removed various lines emitting debug info,
4082         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4083         added processor registers for utilizing EEPROM,
4084         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4085         configurable and set 8
4086
4087 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4088
4089         * .version: increased version number to 2.4.2,
4090
4091         Cumulative patch for pic16 port
4092         * src/pic16/device.c: changed scheme to dump initial values for
4093         variables in idata segment, all print_idata* functions were removed,
4094         now the pic16_printIval* will be called,
4095         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4096         * _pic16_printPointerType, pic16_printPointerType,
4097         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4098         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4099         NEW, similar to the respective functions in SDCCglue.c,
4100         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4101         way, emitting hex bytes,
4102         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4103
4104 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4105
4106         * src/avr/ralloc.c (serialRegAssign),
4107         * src/xa51/ralloc.c (serialRegAssign),
4108         * src/pic/ralloc.c (serialRegAssign),
4109         * src/pic16/ralloc.c (serialRegAssign),
4110         * src/hc08/ralloc.c (serialRegAssign),
4111         * src/z80/ralloc.c (serialRegAssign),
4112         * src/ds390/ralloc.c (serialRegAssign),
4113         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4114
4115 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4116
4117         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4118         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4119
4120 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4121
4122         Cumulative patch for pic16 port:
4123         * src/pic16/device.h (typedef PIC16_device) modified fields for
4124         defining microcontrollers,
4125         * src/pic16/device.c: added new info for all devices in Pics16 array,
4126         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4127         to be optimised out by the pCode optimiser,
4128         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4129         specially, bug reported by G.M. Gallant,
4130         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4131         as force'd so that cannot be optimised out by pCode optimiser,
4132         * src/pic16/pcode.c,
4133         * src/pic16/pcodepeeph.c,
4134         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4135         they are disabled by default, but can be enabled explicit with
4136         command argument --denable-peeps, for testing,
4137         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4138         --pomit-ivt in COMPILE_FLAGS
4139
4140 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4141
4142         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4143           compilation on MSVC
4144
4145 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4146
4147         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4148
4149 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4150
4151         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4152         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4153
4154 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4155
4156         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4157         would only assign 0x300001 register.
4158
4159 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4160
4161         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4162         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4163
4164 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4165
4166         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4167         for ds80c400
4168         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4169         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4170         added peephole 254 (left shift), 255 (jump table)
4171
4172 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4173
4174         * device/lib/Makefile.in: removed comment line with model-pic16,
4175         * (target port-specific-objects-pic16): the libraries and objects
4176         are copied to the build directory form the device/lib/pic16/bin
4177         directory
4178
4179         Cumulative patch concerning pic16 port:
4180         * library directory has been re-organized,
4181         * added support for PIC18F1220,
4182         * added headers and library sources for chips 18f1220,18f6520,
4183         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4184
4185         * configuration registers setting has changed, now each supported
4186         device has a complete description of the registers it uses,
4187         * all initialisations are moved to idata sections, these section
4188         can be absolute or relocatable,
4189         * fixed initialisation of codespace variables,
4190         * fixed warning about PCLATU and gpsim,
4191         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4192         * (genAssign): use table reads when assigning from variables in codespace,
4193         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4194         char/int variables placed in codespace,
4195         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4196         registers set in .asm file, no need for --pomit-config-words anymore,
4197         * (pic16glue): some 8051 legacy segments are commented out
4198         (to be removed completely),
4199         * added support for alternative assembler and linker with --asm=
4200         and --link= command line arguments,
4201         * peepholes are disabled automatically in the port, no need to
4202         specify on command line,
4203         * port supports natively char/int/long multiplication, but converts
4204         all divisions to support functions,
4205         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4206         to the file set in variable $2,
4207         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4208         strings in ASCII format and not in hex,
4209         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4210         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4211         allocate proper register if iCodes aren't temporary,
4212
4213 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4214
4215         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4216
4217 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4218
4219         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4220         is commented out
4221
4222 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4223
4224         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4225         computed address is reused
4226         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4227         multi-byte bitfields
4228
4229 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4230
4231         * src/z80/gen.c: (genArrayInit): must check for pointers too
4232
4233 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4234
4235         * support/regression/tests/zeropad.c: never meant to commit the
4236           nestedstruct test: removed, added check for GCC version
4237
4238 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4239
4240         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4241         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4242         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4243           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4244           bugs 928906 and 954082 half-empty initializers
4245         * src/SDCCsymt.h,
4246         * src/SDCCsymt.c (getAllocSize): added for above fix
4247         * src/z80/gen.c (genArrayInit): fixed bug 741044
4248         * support/regression/tests/zeropad.c: added tests
4249
4250 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4251
4252         * src/pic16/device.c (pic16_dump_section): corrected bug which
4253         caused some symbols of the libraries to be misplaced
4254
4255 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4256
4257         * src/pic16/glue.c,
4258         * src/pic16/ralloc.h,
4259         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4260         to fix conflict with pic port
4261
4262 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4263
4264         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4265         externs configuration variables,
4266         * src/pic16/ralloc.h,
4267         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4268         prototype in header, commented out some debug messages
4269
4270 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4271
4272         * src/pic16/glue.c,
4273         * src/pic16/main.c,
4274         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4275         for gpasm COFF object generation. Thanks to D. Hawkins for
4276         his patch info
4277
4278 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/ds390/main.c,
4281         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4282         Brock for spotting this)
4283         * src/ds390/gen.c (genEndFunction),
4284         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4285         interrupt handler and critical. Disable push/pop optimizations when
4286         peephole optimizations disabled.
4287
4288 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4289
4290         Updated pic16 library sources and headers.
4291         * device/lib/pic16/pic18f*/ ,
4292         * device/include/pic16/*.h: modified to handle structured SFR
4293         definitions
4294
4295 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4296
4297         * src/port.h (PORT structure): added hook initPaths, now each
4298         port can declare its own default search paths,
4299         which can been seen with the --print-search-dirs option,
4300         see pic16 port for example,
4301         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4302         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4303         * (doPrintSearchDirs): NEW, replaces in a central manner the
4304         printing of search dirs which was split in set*Paths functions,
4305         * (main): added call to port->initPaths and doPrintSearchDirs,
4306         * src/avr/main.c,
4307         * src/ds390/main.c,
4308         * src/hc08/main.c,
4309         * src/izt/i186.c,
4310         * src/izt/tlcs900h.c,
4311         * src/mcs51/main.c,
4312         * src/pic/main.c,
4313         * src/pic16/main.c: modified port structures to reflect addition of
4314         initPaths hook,
4315
4316         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4317         * (pic16_dump_section): for registers in same address reserve memory once,
4318         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4319         to no_banksel,
4320         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4321         result is greater in size than right or left,
4322         * (pic16_genUMult8X8_8): there are some cases where the result can
4323         be 16 bits size, so handle these,
4324         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4325         * (pic16_outBitC): modified to emit pcodes,
4326         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4327         or not,
4328         * (genDivOneByte): implemented algorithm to divide 8-bits,
4329         * (genCmp): uncommented goto, but issues still exist,
4330         * (genAnd): fixed a bug with variables >8bits,
4331         * (genPackBits): optimization added that uses BCF/BSF to change a
4332         single bit,
4333         * (genAssign): fixed bug when assigning floating point literals,
4334         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4335         __sdcc_gsinit_startup label,
4336         * src/pic16/main.c (_pic16_init): removed search directory
4337         initialisations,
4338         * (_pic16_initPaths): NEW, used to initialise search directories,
4339         * (_hasNativeMulFor): support functions for all except char/int
4340         multiplication, and char division,
4341         * (PIC16_port struct): modified entry for native mul support,
4342         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4343         no_banksel option,
4344         * (buildCallTree): call to register_usage is ifdef'ed out,
4345
4346 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4347
4348         * device/include/string.h: applied Stas Sergeev's patch to make this
4349         header file compatible with the preprocessor -Wundef option
4350         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4351         failure (fixes bug #941458)
4352
4353 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4354
4355         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4356         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4357         that the variable, not the function, should be static
4358         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4359         to be consistent with non-literal case
4360
4361 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4362
4363         * src/SDCCast.c (isConformingBody): fixed bug #949967
4364         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4365         convilong): fixed bug #952086
4366
4367 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4368
4369         * src/SDCCmem.c (allocVariables): fixed bug #955321
4370
4371 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4372
4373         * src/hc08/main.c (_hc08_genAssemblerEnd),
4374         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4375         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4376         completely eliminated the use of a temporary file
4377         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4378         when more than one file linked
4379         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4380
4381 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4382
4383         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4384         which fixes bug #543481
4385         * support/regression/tests/bug-751703.c: fixed comments left from a
4386         cut and paste error
4387         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4388         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4389         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4390         scopes
4391         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4392         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4393         are now changed to underscores in moduleName
4394
4395 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4396
4397         * as/mcs51/lkmem.c: better fix for bug #954173
4398
4399 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4400         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4401
4402         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4403         * device/include/c8051f000.h,
4404         * device/include/c8051f120.h,
4405         * device/include/c8051f300.h,
4406         * device/include/c8051f310.h,
4407         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4408         PWM16) and detab'ed
4409
4410 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4411
4412         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4413         and mailing lists, doc'ed --no-peep-comments, removed reference
4414         to knoppix (newest version has no LyX/LaTeX), other minor changes
4415         * src/SDCCglue.c (glue): save 2 bytes stack space with
4416         option --main-return. The ljmp could probably be avoided too
4417
4418 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4419
4420         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4421
4422 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4425         * src/SDCCopt.c (isLocalWithoutDef),
4426         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4427         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4428         (credit to Maarten Brock for patch #949363, on which this is based)
4429         * support/regression/tests/bug-751703.c: some test cases of extern used
4430         within inner scopes.
4431
4432 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4435         SPEC_STRUCT
4436         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4437         struct definitions
4438         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4439         dwWriteLabel): fix to create valid debugger symbols even when
4440         the module name has non-alphanumeric symbols in it
4441         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4442         when a variable's allocation has been optimized away
4443
4444
4445 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4448         * src/hc08/main.c,
4449         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4450         * src/mcs51/main.c,
4451         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4452         * src/ds390/main.c,
4453         * src/z80/gen.c (z80_emitDebuggerSymbol),
4454         * src/z80/main.c,
4455         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4456         * src/pic/main.c,
4457         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4458         * src/pic16/main.c,
4459         * src/avr/gen.c (avr_emitDebuggerSymbol),
4460         * src/avr/main.c,
4461         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4462         * src/xa51/main.c,
4463         * src/SDCCdebug.c (emitDebuggerSymbol),
4464         * src/SDCCdebug.h,
4465         * src/port.h: added a debugger struct to the port struct. Added a
4466         callback for defining debugger symbols
4467
4468         * src/SDCCast.c (createLabel),
4469         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4470         with isitmp = 1
4471         * src/SDCCicode.h,
4472         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4473         iCode back to the ast for the function
4474
4475         * src/hc08/ralloc.c (hc08_assignRegisters),
4476         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4477         unneeded fields from the regs struct.
4478         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4479         pushReg() & pullReg() functions instead of emitcode()
4480
4481         * src/hc08/gen.c (genLabel, genhc08Code),
4482         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4483
4484         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4485         debugger hooks
4486
4487         * src/hc08/gen.c (genEndFunction, genhc08Code),
4488         * src/hc08/gen.h,
4489         * src/mcs51/gen.c (genEndFunction, gen51Code),
4490         * src/mcs51/gen.h,
4491         * src/ds390/gen.c (genEndFunction, gen390Code),
4492         * src/ds390/gen.h,
4493         * src/z80/gen.c (genEndFunction, genZ80Code),
4494         * src/z80/gen.h,
4495         * src/z80/z80.h,
4496         * src/pic/gen.c (genEndFunction, genpic14Code),
4497         * src/pic/gen.h,
4498         * src/pic16/gen.c (genEndFunction, genpic16Code),
4499         * src/pic16/gen.h,
4500         * src/avr/gen.c (genEndFunction, genAVRCode),
4501         * src/avr/gen.h,
4502         * src/xa51/gen.c (genEndFunction, genXA51Code),
4503         * src/xa51/gen.h,
4504         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4505         specific code to cdbFile.c and out of the backend code generators
4506
4507         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4508         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4509         starting address is now 0
4510
4511         * as/hc08/asm.h,
4512         * as/hc08/m08pst.c,
4513         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4514         assembler directive for DWARF support
4515         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4516
4517         * src/src.dsp,
4518         * src/Makefile.in,
4519         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4520
4521 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4522
4523         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4524         and inappropriate peephole optimization in jump tables
4525
4526 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4527
4528         * as/hc08/m08pst.c,
4529         * src/SDCCglue.c: sdccopt works for the hc08 port now
4530
4531 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4532
4533         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4534
4535 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4536
4537         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4538
4539 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4540
4541         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4542         rules
4543         * src/SDCCmain.c,
4544         * src/SDCCglobl.h,
4545         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4546         comments from the peephole optimizer replacement rules
4547         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4548         symbols
4549         * src/SDCCcse.c (updateSpillLocation),
4550         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4551         equivalents
4552         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4553         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4554         objects far pointers
4555
4556 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4557
4558         * src/SDCCsymt.h: a missing part of my last change
4559         * src/pic/ralloc.c (regTypeNum),
4560         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4561
4562 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4563
4564         * src/SDCCicode.h,
4565         * src/SDCCicode.c (aggrToPtrDclType),
4566         * src/SDCCptropt.h,
4567         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4568         ptrPseudoSymConvert),
4569         * src/pic/ralloc.c (regTypeNum),
4570         * src/pic16/ralloc.c (regTypeNum),
4571         * src/hc08/ralloc.c (regTypeNum),
4572         * src/ds390/ralloc.c (regTypeNum),
4573         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4574         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4575
4576 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4577
4578         * link/z80/lkmain.c (afile),
4579         * as/hc08/lkmain.c (afile),
4580         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4581         prevent a pointer problem when a filename has no directory and
4582         no extension specified.
4583
4584 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4585
4586         * link/z80/lkmain.c (afile): allow periods in directory names
4587         * link/z80/lkmain.c (afile),
4588         * as/mcs51/lkmain.c (afile),
4589         * as/hc08/lkmain.c (afile): allow linker script file to have an
4590         extension other than ".lnk"
4591         * link/z80/lklex.c (getfid),
4592         * link/z80/lkmain.c (parse),
4593         * as/mcs51/lklex.c (getfid),
4594         * as/mcs51/lkmain.c (parse),
4595         * as/hc08/lklex.c (getfid),
4596         * as/hc08/lkmain.c (parse): Support comments in the linker script
4597         file on lines by themselves and after filenames
4598
4599 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4600
4601         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4602
4603 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4604
4605         * src/z80/peeph-z80.def: removed some peephole rules that don't
4606         work with multibyte arithmetic (fixed bug #937126)
4607         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4608         to registers and not global variables
4609         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4610         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4611         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4612         checking for assignments not internally generated (fixed bug #931895)
4613         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4614         structure member (fixed bug #930072)
4615
4616 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4617
4618         * src/SDCCmain.c (linkEdit),
4619         * src/hc08/main.c (_hc08_parseOptions),
4620         * as/hc08/Makefile.in,
4621         * as/hc08/aslink.h,
4622         * as/hc08/asm.h,
4623         * as/hc08/m08pst.c,
4624         * as/hc08/lkrloc.c (relr, rele),
4625         * as/hc08/lkarea.c (lnkarea)
4626         * as/hc08/lkmain.c (afile, parse),
4627         * as/hc08/lkelf.c: support for ELF output
4628         * as/hc08/lks19.c (s19),
4629         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4630
4631 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4632
4633         * as/mcs51/lkihx.c: Fixed bug #899105.
4634
4635 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4636
4637         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4638         .dsp files from Unix to DOS.
4639
4640 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4643         function pointers; we have been compliant for several months now.
4644         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4645         change that was accidently commented out
4646         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4647         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4648         bug #922319
4649
4650 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4651
4652         * src/hc08/gen.c: output of all of the internal debugging information
4653         is now controlled by the D() macro; it is disabled by default
4654
4655 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4658         harder to keep the same registers during a CAST iCode
4659         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4660         long via int can be done in a single cast, if the signedness is
4661         correct.
4662         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4663         putchar() in tinibios.c in ds390's library
4664
4665 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4666
4667         * src/SDCCast.c (decorateType): fixed bug #898889,
4668         cast result of a literal complement too
4669         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4670         fixed check for bitfields
4671
4672 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4673
4674         * src/SDCCicode.c (geniCodeLogic): made it static,
4675         (geniCodeLogicAndOr): added in order to fix bug #905492,
4676         (ast2iCode): fixed bug #905492
4677         * support/regression/tests/bug-905492.c: added
4678         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4679         (processParms): fixed bug #927659: don't copy parms, this will clear
4680         decorated flag
4681         * support/regression/tests/bug-927659.c: added
4682
4683 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4684
4685         * src/SDCCast.c (addCast): don't cast float to char
4686         * device/lib/libsdcc.lib: added _memmove
4687
4688 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4689
4690         * device/lib/large/Makefile: fixed parallel execution by
4691         replacing `make` by `$(MAKE)`
4692
4693 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4696         offsets (fixes bug #923936)
4697
4698 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4699
4700         * device/lib/small/Makefile: fixed parallel execution by
4701         replacing `make` by `$(MAKE)`
4702
4703 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4706
4707 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4708
4709         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4710         * src/regression/Makefile: Regression test was not running.
4711
4712 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4713
4714         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4715         complement if possible
4716         * src/SDCCval.c (valComplement),
4717         * src/SDCCicode.c (operandOperation): fixed complement of literal
4718         * support/regression/tests/onebyte.c (testComplement): added
4719
4720 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4721
4722         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4723         return an optimized tree; actually replace actParm with the new tree
4724         * src/SDCCast.h: added some parantheses to remove side effects
4725         * support/regression/tests/bug-920866.c
4726
4727 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4728         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4729         Bit operands were not being handled properly in the pic14 port.
4730         (now src/regression/add.c passes again).
4731
4732 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4733
4734         * src/SDCC.y (labeled_statement): case and default no longer require
4735         a following statement (RFE #893037)
4736
4737 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4738
4739         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4740         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4741         disabled (fixes bug #916294)
4742         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4743         "mov a,acc"; patch provided by Lenny Story
4744         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4745
4746 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4747
4748         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4749         functions
4750         * src/ds390/gen.c (genFunction, genEndFunction),
4751         * src/ds390/ralloc.c (ds390_assignRegisters),
4752         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4753         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4754         pushed if there are parameters passed on the stack. Also, a cleaner
4755         way to decide if r0/r1 should be pushed/popped. (Together they fix
4756         bug #918693)
4757
4758 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4759
4760         * doc/sdccman.lyx,
4761         * device/lib/mcs51/crtpagesfr.asm,
4762         * device/lib/mcs51/crtxinit.asm,
4763         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4764         to avoid confusion with Si Lab's SFRPAGE register.
4765
4766 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4767
4768         * src/SDCCglue.c (emitMaps): allow public sfr variables
4769         * src/SDCCglue.c (initialComments): include compiler build date
4770         with compiler version and put the timestamp of the generated
4771         assembly file on a serperate line to be less confusing.
4772         * src/port.h: added genInitStartup hook
4773         * src/avr/main.c,
4774         * src/ds390/main.c,
4775         * src/hc08/main.c,
4776         * src/pic/main.c,
4777         * src/pic16/main.c,
4778         * src/xa51/main.c,
4779         * src/z80/main.c: genInitStartup initialize as NULL (default to
4780         historical behaviour)
4781         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4782         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4783         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4784         library instead of hard coding it into the compiler.
4785         * support/regression/ports/mcs51-stack-auto/spec.mk,
4786         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4787         * device/lib/mcs51/Makefile,
4788         * device/lib/small/Makefile,
4789         * device/lib/large/Makefile,
4790         * device/lib/mcs51/crtpagesfr.asm,
4791         * device/lib/mcs51/crtstart.asm,
4792         * device/lib/mcs51/crtxclear.asm,
4793         * device/lib/mcs51/crtxinit.asm,
4794         * device/lib/mcs51/crtclear.asm,
4795         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4796         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4797         and into user configurable files.
4798         * device/lib/clean.mk: clean mcs51 directory too
4799         * support/regression/tests/longlit.c: added static to T1 declaration
4800         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4801         accesses in the initialization code
4802
4803 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4804
4805         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4806         OSCTRIMVAL as noted in bug #916008
4807
4808 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4809
4810         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4811         in loops with multiple exits (reported as incorrect registers
4812         used by Martin Helmling in Sdcc-user list)
4813
4814 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4815
4816         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4817         made ds390 register extensions look less like error messages
4818
4819 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4820
4821         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4822         reported by Adam Wozniak in Sdcc-user list
4823
4824 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4825
4826         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4827         arithmetic optimizations, added debug output
4828
4829 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4830
4831         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4832         * sdcc.spec: updated and split sdcc into 3 rpms
4833         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4834         needed for literals of LEFT_OP and '+'
4835         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4836         introduced RESULT_TYPE_NOPROM
4837         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4838         left shift
4839         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4840         limited promotion to int only for '*'
4841         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4842
4843 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4844
4845         * src/pic16/gen.c (genSkip),
4846         (genc16bit2lit), (gencjneshort): commented out
4847         (is_LitOp): new helper function, checks operand type
4848         (genCmpEq): rewritten
4849
4850 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4851
4852         * support/regression/tests/bug-908454.c: added
4853
4854 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4855
4856         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4857         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4858         (geniCodeCast): cosmetic, don't preserve bit storage class
4859         (geniCodeLeftShift): added promotion
4860         (geniCodeLogic): fixed regression
4861         * src/SDCCsymt.c (computeTypeOr): accept bits too
4862         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4863
4864 2004-03-07  Borut Razem <borut.razem AT siol.net>
4865
4866         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4867
4868 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4869
4870         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4871         version of pic16_genPackRegisters which does not check if ic is a
4872         CAST operator,
4873         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4874         function cause string1.c regression test fails
4875
4876 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4877
4878         * sim/ucsim/configure.in,
4879         * sim/ucsim/configure,
4880         * sim/ucsim/doc/Makefile.in: use docdir
4881         * src/SDCC.y: fixed sbit atrributes
4882         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4883         * src/SDCCast.c (decorateType): |^& need special promotion handling
4884         * src/SDCCast.h,
4885         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4886         * src/SDCCsymt.h (computeType),
4887         * src/SDCCicode.c: computeType() needs op
4888         * src/SDCCsymt.c (checkTypeSanity),
4889         * doc/sddman.lyx: "plain" bitfields are unsigned
4890         * src/SDCCsymt.c (computeTypeOr): added
4891         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4892         |^& ops
4893         * src/SDCCval.c (val*): computeType() needs op
4894         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4895         * support/regression/tests/onebyte.c: added tests for |^&
4896
4897 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4898
4899         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4900         for writing icode into asm output.
4901
4902 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4903
4904         * src/pic16/device.c: added some debug lines enabled
4905         with macro DEBUG_CHECK,
4906         * src/pic16/genarith.c: more debug in genPlus,
4907         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4908         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4909         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4910         * (aopForSym): onStack symbols are re-placed in data memspace,
4911         and onStack flag is cleared,
4912         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4913         copy temporary pcodeop,
4914         * (genPcall): added warning for not updating PCLATU,
4915         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4916         always true for pic16 port,
4917         * (genMultOneWord): NEW, supports integer multiplication,
4918         * (genMult): modified to call genMultOneWord,
4919         * (ifxForOp): added warning when return NULL,
4920         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4921         flag is set before call to operandFromSymbol for implicit
4922         added structures,
4923         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4924         options.intlong_rent are set by default,
4925         * (_hasNativeMulFor): modified to allow port generation of integer
4926         multiplication,
4927         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4928         set regtype to REG_SFR for all registers, restricting seting the
4929         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4930
4931 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4932
4933         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4934         more than 500 times in the regression tests
4935
4936 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4937
4938         * support/Util/SDCCerr.h,
4939         * support/Util/SDCCerr.c,
4940         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4941         enumerator_list),
4942         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4943         for symbol conflicts.
4944         * support/valdiags/tests/enum.c,
4945         * support/valdiags/tests/tentdecl.c,
4946         * support/valdiags/tests/struct.c: expect possible error messages
4947         referring to original symbol definitions.
4948         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4949         * src/SDCCsymt.h,
4950         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4951
4952 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4953
4954         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4955
4956 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4957
4958         * src/pic16/ralloc.c (newReg): fixed bug #908929
4959
4960 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4961
4962         * src/ds390/gen.c: added missing #include "main.h"
4963
4964 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4967         checking if symbol is already in set,
4968         * src/pic16/device.h: prototype for checkAddSym,
4969         * src/pic16/gen.c: (_G): added entry interruptvector,
4970         * (assignResultValue): removed some commented out lines,
4971         * (genFunction): check for ISR via sym->type, absolute section for
4972         interrupt code is created via a new pBlock, the goto instruction is
4973         placed now correctly at the interrupt vector position, changed all
4974         references from ivec to _G.interruptvector,
4975         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4976         is the interrupt is a high priority one, same for return from ISR,
4977         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4978         externs to calls of checkAddSym,
4979         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4980         pic16_pcode_verbose flag is set,
4981         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4982         * src/pic16/pcoderegs.c: message about how many registers are saved
4983         will only be emitted if pic16_pcode_verbose flag is set,
4984
4985 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4986
4987         * src/ds390/ralloc.h,
4988         * src/ds390/ralloc.c (ds390_regWithIdx),
4989         * src/ds390/gen.c (emitcode),
4990         * src/ds390/main.h,
4991         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4992         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4993         ds390operandCompare, getRegsRead, getRegsWritten,
4994         initializeAsmLineNode): customized instruction size calculation for
4995         ds390, started basis for some register optimizations
4996         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4997         corresponding assembly output
4998         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4999         missing push/pop of r0/r1. Optimized push/pops
5000
5001 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5002
5003         * src/mcs51/main.c (instructionSize): fixed ACALL size
5004         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5005
5006 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5007
5008         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5009         the sorting of rlist with NULL elements
5010         * (print_idataType, print_idata): NEW to create idata sections
5011         * src/pic16/device.h: idataSymSet new variable
5012         * src/pic16/gen.c (genFunction): fixed some bugs in string
5013         comparing, improved the absolute section creation for ISRs,
5014         added FSR0L/FSR0H in registers that are saved in an ISR,
5015         * (genInline): fixed the processing of inline snippets,
5016         now they undergo no process by the peephole optimizer
5017         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5018         are placed in idataSymSet,
5019         * (pic16emitStaticSeg): extern symbols are added in externs,
5020         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5021         switching when aboslute variables are placed in access bank memory
5022         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5023         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5024         commented out with #if,
5025         * (pic16_packRegisters): reintroduce the check for CAST because some
5026         symbols are not correctly handled,
5027         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5028         pCodeInstruction instead of pCode,
5029         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5030         pCodeAsmDir definition,
5031         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5032         directive, then the argument directive is emitted without the leading
5033         tab, hack for inline labels which must be in the first column,
5034         * (compareLabel,pic16_findNextInstruction),
5035         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5036         * (insertBankSwitch): modified for the new pCodeAsmDir,
5037
5038 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5039         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5040
5041         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5042         instance,
5043         * (pushSide): commented out with #if,
5044         * (assignResultValue): fixed some typos in saving
5045         registers,
5046         * (genPcall): FIXED and sync'ed with genCall,
5047         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5048         * (genNearPointerGet): fixed to handle some more cases,
5049         implementation scheme via table reads,
5050         * (genConstPointerGet): modified to access code memory correct,
5051         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5052         and improved to handle some cases
5053         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5054         instead of "RETLW" for init data
5055         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5056         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5057         variables are placed in access bank memory (<0x80 and >=0xf80),
5058         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5059         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5060         TBLWT_POSTDEC,TBLWT_PREINC
5061         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5062         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5063         directives
5064         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5065         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5066         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5067         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5068
5069 2004-02-29  Borut Razem <borut.razem AT siol.net>
5070
5071         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5072         support/Util/findme.h, support/Util/system.h: enhance binary relative
5073         search for lib and include by using findProgramPath()
5074
5075 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5076
5077         * src/SDCCpeeph.h,
5078         * src/SDCCpeeph.c (pcDistance),
5079         * src/port.h,
5080         * src/mcs51/ralloc.h,
5081         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5082         * src/mcs51/main.h,
5083         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5084         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5085         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5086         size calculation port specific, started basis for some register
5087         optimizations
5088         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5089         missing push/pop of r0/r1. Optimized push/pops
5090         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5091         * device/lib/_modsint.c (_modsint),
5092         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5093         and stack version so regression tests pass
5094
5095 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5096
5097         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5098         * src/SDCCast.c (decorateType): catch another small optimization
5099         with '?' operator
5100         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5101         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5102         modified to finally use computeType() all over SDCC,
5103         see Feature Request #877103
5104         * src/SDCCval.h: cosmetic
5105         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5106         valCompare(); regression tested in muldiv.c
5107         * support/regression/tests/muldiv.c (testMod): mod sign follows
5108         dividend only
5109
5110 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5111
5112         * src/SDCCast.c (decorateType): fixed bug #902362
5113         * doc/INSTALL.txt: fixed install instructions for win32
5114
5115 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5116
5117         * device/include/Makefile.in (install): fixed by replacing spaces
5118         by tabs
5119         * doc/README.txt,
5120         * doc/INSTALL.txt: updated for release
5121         * doc/sdccman.lyx: added warning for --xstack being buggy
5122
5123 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5124
5125         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5126         to eliminate build warnings.
5127         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5128
5129 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5130            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5131
5132         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5133         removed -penable-stack, added comment for stack pragma, added
5134         warning for not initializing the stack/frame registers, removed
5135         comment at interrupts section
5136
5137         Stack is made permanent, there is no ability to disable stack usage.
5138         * src/pic16/device.h,
5139         * src/pic16/device.c: removed all references to USE_STACK macro,
5140         * src/pic16/device.c (pic16_dump_section): when no elements in
5141         rlist, free rlist before return,
5142         * (pic16_dump_int_registers): NEW, internal registers are a new set
5143         of general purpose registers reused by each function,
5144         * (checkAddReg): returns 1 if registers is added to set,
5145         * (pic16_groupRegistersInSection): when a registers is of type
5146         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5147         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5148         SRCASECMP macro is moved here from device.c
5149         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5150         PO_PCLATU, PO_PRODL, PO_PRODH,
5151         * (pic16_pCodeOpType, genMinus,
5152         changed compares to "a" register, with AOP_ACC,
5153         * (pic16_genPlus): fixed some bugs and indented properly,
5154         * (pic16_addSign): changed size to size+offset in the MOVWF
5155         instruction,
5156         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5157         multiply 8-bit operand by literal, result is 8-bit,
5158         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5159         multiply 2 8-bit operand, result is 8-bit,
5160         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5161         genUMult8X*_16,
5162         * src/pic16/gen.c: changed accUse to contain WREG only,
5163         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5164         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5165         true, do not use immediate addressing any more unless sym is a
5166         pointer in codespace,
5167         * (aopForRemat): do not use immediate addressing when symbol not in
5168         codespace and when symbol's address is requested,
5169         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5170         accUse size (= 1),
5171         * (aopGet): added case for AOP_ACC and don't return "accumulator
5172         bug" but WREG instead,
5173         * (popGetTempReg): pushes contents of temporary register in stack,
5174         * (popReleaseTempReg): pops contents of temporary register from
5175         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5176         * (pic16_popGet): separated case AOP_ACC to return register WREG
5177         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5178         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5179         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5180         the use of immediate pointers to certain cases only.
5181
5182         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5183         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5184         * (assignResultValue, genCall, genRet): modified to use the new
5185         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5186         genPcall is still broken,
5187         * (genFunction): added code to create 'A' type pBlocks when
5188         interrupt functions are generated, code not extensively tested yet,
5189         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5190         * (genEndFunction): modified so ISRs pop stored registers from stack,
5191         * (genMultOneByte): cleanup,
5192         * (AccRsh): added flag andmask, to and result with appropriate mask,
5193         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5194         * (genDataPointerGet): fixed and reenabled its use,
5195         * (genNearDataPointerGet): bugs fixed,
5196         * (genDataPointerSet): bugs fixed,
5197         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5198         pic16_DumpSymbol, pic16_DumpOp,
5199         * src/pic16/genutils.h: function prototypes for the above functions,
5200         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5201         pointers,
5202         * (pic16emitRegularMap): many many many improvements, but needs a
5203         major cleanup,
5204         * src/pic16/main.c: enable_stack in pic16_options is removed,
5205         * (_pic16_parseOptions): removed command line options -penable-stack,
5206         * (_process_pragma): emit stack symbol only when stack pragma is
5207         processed,
5208         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5209         redirected to FSR0L/FSR0H pair,
5210         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5211         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5212         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5213         for immediates,
5214         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5215         * (dumpPicOptype): NEW,
5216         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5217         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5218         with movff instruction,
5219         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5220         added pic16_int_regs, some packRegsFor* functions are commented out,
5221         because produce errors,
5222         * src/pic16/NOTES: minor modifications
5223
5224 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5225
5226         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5227         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5228         --pack-iram.
5229         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5230         * as/mcs51/lkaomf51.c: fixed bug #895763
5231
5232 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5233
5234         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5235
5236 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5237
5238         * doc/sdccman.lyx: added details about the HC08 storage classes and
5239         interrupts, fixed the register usage info for z80 & gbz80
5240
5241 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5242
5243         * doc/sdccman.lyx: added more pic16 port documentation
5244         * device/include/pic16/: added header pic18fregs.h
5245
5246 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5247
5248         * doc/sdccman.lyx: added Vangelis' contribution
5249
5250 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5251
5252         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5253         extend to the next CALL or PCALL, not just to the next CALL.
5254
5255 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5256
5257         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5258
5259 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5262         bug #895752 and a better fix for bug #716790
5263
5264 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5265
5266         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5267
5268 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5269
5270         * doc/sdccman.lyx: minor changes, minor changed
5271
5272 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5273
5274         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5275         which can't handle SDCC_NEWONEBYTEOPS,
5276         (geniCodeMultiply): removed conversion from mult to shift for pic14
5277         and pic16
5278
5279 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5280
5281         * src/hc08/gen.h,
5282         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5283         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5284         thus fixing bug #895406
5285
5286 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5287
5288         * device/lib/_modsint.c,
5289         * device/lib/_modslong.c: sign follows divisor only
5290         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5291         signs or signedness can be ignored
5292         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5293         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5294         added optimization for IFX,
5295         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5296         arguments;
5297         reenabled optimization for IFX, which was removed on 2004-01-11
5298         * src/SDCCast.h: added return type IFX
5299         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5300         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5301         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5302         SDCC_OLDONEBYTEOPS selects the old behaviour
5303         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5304         changed again and commented promotion rule
5305         * src/SDCCval.c (valDiv): promotion no longer necessary
5306         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5307         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5308         rewritten
5309         * support/regression/tests/onebyte.c: added
5310
5311 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5312
5313         * gen.c (genInline): reverted to old code for assemnling inline
5314         code because of bug reported James Chadd
5315
5316 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5317
5318         * ralloc.h: missing declarations from previous patch,
5319         seems that patch for ralloc.h was never applied, fixed
5320
5321 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5322            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5323
5324         * pcode.c,
5325         * pcode.h,
5326         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5327         indirect addressing. Marked FSR0 as deprecated
5328         * gen.c (pointerCode): commented out, not needed now
5329         (pic16_popGet2p): new MOVFF helper function
5330         (genGenPointerGet),
5331         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5332         (shiftRLong): removed duplicate debugging info
5333
5334 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5335
5336         * src/ds390/gen.c (genNearPointerGet),
5337         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5338         optimization with bits, but not bitfields.
5339         * src/ds390/ralloc.c (packRegisters),
5340         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5341
5342 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5343
5344         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5345
5346 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5347
5348         * src/SDCCsymt.h,
5349         * src/SDCCicode.c (operandFromSymbol),
5350         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5351         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5352         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5353         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5354         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5355         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5356         bug #892038
5357         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5358         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5359         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5360         * src/SDCCsymt.c (newSymbol),
5361         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5362         enumerator_list),
5363         * src/SDCCval.h,
5364         * src/SDCCval.c (newiList): fixed bug #885705
5365
5366 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5367
5368         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5369         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5370
5371 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5372
5373         * device/include/c8051f120.h,
5374         * device/include/c8051f300.h,
5375         * device/include/c8051f310.h: added/updated header files for Silicon
5376         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5377         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5378         in new section Submitting patches
5379
5380 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5383         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5384         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5385         genGenPointerSet),
5386         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5387         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5388         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5389         genGenPointerSet),
5390         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5391         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5392         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5393         genGenPointerSet),
5394         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5395         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5396         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5397         genGenPointerSet): fixed bug #892400
5398         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5399         to eliminate build warnings.
5400         * src/SDCCast.c (processParms),
5401         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5402         fixed bug 751859
5403         * support/valdiag/valdiag.py: added GCC to the list of defines active
5404         when compiling with gcc
5405
5406 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5407
5408         * support/Util/SDCCerr.h,
5409         * support/Util/SDCCerr.c,
5410         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5411         with an incomplete type (fixed bug #883734)
5412         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5413
5414 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5415
5416         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5417
5418 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5419
5420         * src/SDCCast.c (decorateType),
5421         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5422         function pointer implementation
5423         * support/regression/tests/funptrs.c: added tests to verify both forms
5424         of function pointers work correctly. Added tests to verify parameters
5425         are passed in the correct order.
5426
5427 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5428
5429         * device.c (regCompare): registers are sorted by ascending
5430         address and increasing size,
5431         * main.c (_pic16_finaliseOptions): removed the declaration
5432         of compiler macro MCU. Now a macro of the format pic18fxxxx
5433         will be defined from the command line
5434
5435 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5436             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5437
5438         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5439         PCOP_RLCF was overwritten!
5440         * gen.c (genSkip): commented out calls to pic16_emitcode,
5441         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5442         * (genlshTwo),
5443         * (genRRC): added debugging info,
5444         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5445         overwritten while shifting,
5446         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5447         overwritten while shifting,
5448         * (AccLsh),
5449         * (AccRsh),
5450         * (shiftLLeftOrResult),
5451         * (shiftRLeftOrResult),
5452         * (shiftRLong),
5453         * (shiftLLong): Implemented with pic16_emitpcode
5454         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5455         * (genLeftShift): Fixed bug, operand for shift by variable always
5456         was "and"ed with 0x0f,
5457         * (genLeftShiftLiteral),
5458         * (genrshTwo),
5459         * (genRightShiftLiteral): added debugging info,
5460         * (genrshFour): added comment,
5461         * (genRightShift): determined signedness from operand "left"
5462         instead of "result"
5463
5464 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5465
5466         * src/SDCCicode.c (geniCodeParms),
5467         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5468         function pointers, fixed function pointer bugs #861242 and #861896
5469
5470 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5471
5472         * device/include/c8051f000.h,
5473         * device/include/c8051f120.h,
5474         * device/include/c8051f300.h: added header files for Silicon
5475         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5476
5477 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5478
5479         * src/SDCCast.c (processParams): added new type flow and restructured
5480         (gatherAutoInit): added new type flow
5481         (addCast): cosmetic changes
5482         (getLeftResultType): added new type flow for array indices, patch
5483         provided by Stas, see FR #877103
5484         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5485         array index patch by Stas
5486         * src/SDCCast.h: added prototype getResultTypeFromType()
5487         * src/SDCCval.h,
5488         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5489         * src/pic/glue.c (pic14emitStaticSeg),
5490         * src/pic16/glue.c (pic16emitStaticSeg),
5491         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5492         for initialization of symbols
5493         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5494         * support/Util/SDCCerr.h:
5495         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5496         * .version: bumped version number to 2.3.8
5497         * device/include/Makefile.in (install),
5498         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5499         avoid warnings
5500
5501 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5502
5503         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5504         Slade Rich fixed an optimization bug
5505         * src/pic/pcodepeep.c,
5506         * src/pic/pcoderegs.c
5507         * doc/Makefile (install): added test for directory
5508
5509 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5510
5511         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5512         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5513         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5514         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5515         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5516         * as/mcs51/asexpr.c (term),
5517         * as/hc08/asexpr.c (term): fixed bug #887146
5518
5519 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5520
5521         * src/z80/gen.c (genMult): handle single byte result product
5522         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5523         DUMMY_READ_VOLATILE (fixed bug #886367)
5524
5525 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         * support/regression/tests/libmullong.c: fixed logic, on little endian
5528         hosts we ended without a mullong_wrapper()
5529
5530 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5531
5532         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5533         virus/worm forged address usage.
5534
5535 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5536
5537         Fixed promotion, it should be done on AST level:
5538         * src/SDCCast.c (addCast): added promotion to int
5539         (decorateType): updated call to upCast()
5540         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5541         usualUnaryConversions()
5542
5543 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5544
5545         * support/regression/tests/literalop.c (mulWrapper): Added a
5546         wrapper to remove integer overflow warnings.
5547
5548         * support/regression/tests/float_trans.c: Made work on host.
5549
5550         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5551         location of sz80.
5552
5553         * support/regression/generate-cases.py (main): Changed from inline
5554         to a main method.
5555
5556         * doc/Makefile (install): Changed to depth first to get rid of
5557         missing directory install warning.
5558
5559         * as/Makefile (install-doc): Made work on Mac.
5560
5561 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5562
5563         * src/SDCCast.c: added an additional type flow in decorateType() of
5564         opposite direction, see feature request #860006; it's enabled at runtime
5565         by setting the environment variable SDCC_NEWTYPEFLOW
5566         * src/SDCCast.h: changed prototype of decorateType()
5567         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5568         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5569         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5570         see feature request #877103
5571         * src/SDCCval.c: updated call of decorateType()
5572         (valBitwise): fixed bug #882876
5573         (valMinus): added promotion
5574         (valLogicAndOr): result is unsigned
5575         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5576         * src/SDCCsymt.c (computeType),
5577         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5578         must not cause an unsigned operation
5579         * src/pic/glue (pic14emitRegularMap),
5580         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5581
5582 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5583
5584         * src/pic/pcode.c (PCodeID): commented out left over debug code
5585
5586 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5587
5588         * support/valdiag/tests/overflow.c: added shift tests
5589         * src/pic/device.c,
5590         * src/pic/gen.c,
5591         * src/pic/gen.h,
5592         * src/pic/glue.c,
5593         * src/pic/main.c,
5594         * src/pic/pcode.c,
5595         * src/pic/pcode.h,
5596         * src/pic/pcodepeep.c,
5597         * src/pic/pcoderegs.c,
5598         * src/pic/ralloc.c,
5599         * src/pic/ralloc.h: applied patch from Slade Rich;
5600         added support for multiple code pages and multiple RAM banks on the
5601         PIC 14 port. The ASM files now no longer simply assume all the
5602         code / RAM are in the same page / bank. This means the linker can
5603         safely allocate code/RAM of separate ASM files to different pages/banks.
5604         * doc/sdccman.lyx: added Slade's tips
5605         * src/mcs51/peeph.def: fixed bug #880768
5606
5607 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5608
5609         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5610         * src/SDCCast.c (decorateType): fixed bug #880197
5611
5612 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5613
5614         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5615         getopt.h.
5616
5617         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5618         strtof is not part of C89 and isn't included with Mac OS X.
5619
5620 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5621
5622         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5623         shiftL2Left2Result): fixed bug #879326
5624         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5625         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5626         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5627         address fetch for clr instruction
5628         * device/lib/hc08/_mulint.c: created optimized assembly version
5629         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5630
5631 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5632
5633         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5634         proposed in FR #877103
5635
5636 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5637
5638         * src/SDCCval.c (cheapestVal): added missing checks
5639         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5640         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5641
5642 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5643
5644         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5645         equal operands
5646
5647 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5648
5649         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5650         loaded with the linker search paths (-L arguments) and the libraries
5651         to be linked with the current source (-l arguments). Changes
5652         currently will affect only the pic16 port.
5653         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5654         include path the port specific paths and port specific libraries,
5655         * gplink command now contains the $3 argument,
5656         * src/pic16/device.h,
5657         * src/pic16/device.c,: structure PIC_device is made public and
5658         renamed to PIC16_device, the same for variable Pics which is renamed
5659         to Pics16. Updated all references to them.
5660         * src/pic16/glue.c (pic16glue): corrected bug with code
5661         initialization which bypassed the variable initializations block.
5662
5663         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5664         COMPILE_FLAGS and added the --nostdinc option
5665
5666 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5667
5668         * device/include/mc68hc908jb8.h: Register defs for another member
5669         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5670
5671 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         Documenting changes from previous commits.
5674         * configure.in (version 1.56),
5675         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5676         when generating output files to configure the pic16 library,
5677         but now I've commented it out, since gputils aren't installed in the
5678         SF compile farm, so library won't compile
5679
5680         * device/lib/Makefile.in (version 1.56): initially I've added in
5681         target 'all' the prerequestive 'model-pic16' so it compiled the
5682         pic16 library, but now I've commented it out for the same reasons
5683         above,
5684         * added targets 'model-pic16' and 'objects-pic16' to compile the
5685         library
5686         * added target 'port-specific-objects-pic16' to handle the
5687         generated libraries and copy them into the build/ directory
5688         * added target 'clean-intermediate-pic16' to clean intermediate
5689         files into pic16 directory
5690         * in target 'installdirs' added line to create directory pic16 in
5691         the installation path
5692
5693         * device/include/Makefile.in (version 1.11): in target 'install'
5694         added lines to copy all header files to installation path,
5695         * in target 'installdirs' added line create directory for pic16
5696         headers in the installation path
5697
5698 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5699
5700         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5701          a function call
5702
5703 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5704
5705         * configure,
5706         * device/lib/configure.in,
5707         * device/lib/configure: fixed for autoconf 2.57
5708
5709 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5710
5711         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5712         option so that it actually works. Made it specific to the z80, since
5713         the gbz80 doesn't have these kinds of I/O ports.
5714
5715 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5716
5717         * device/include/z180.h,
5718         * device/lib/_memcpy.c,
5719         * device/lib/_memmove.c,
5720         * device/lib/_mulint.c,
5721         * device/lib/ser_ir.c,
5722         * device/lib/ser_ir_cts_rts.c,
5723         * device/lib/_strcmp.c,
5724         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5725         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5726         portmode; added deprecation warning for bank= and protmode= forms.
5727         Also, guard against buffer overflow.
5728         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5729
5730 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5731
5732         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5733         changed interrupt vector table generation to only emit declared vectors.
5734         * device/include/Makefile.in: added missing backslash
5735         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5736
5737 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5738
5739         Mainly changes to support compilation of the device libraries
5740         * src/pic16/device.c: stack is allocated via symbol and not
5741         via literal number. The symbol is placed in the corresponding
5742         position of the data ram
5743         * (pic16_dump_section): relocatable and absolute uninitialized
5744         data are now emitted in sorted order to reduce section naming,
5745         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5746         weren't marked as being in the access bank,
5747
5748 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5749
5750         Added portion of GNU PIC Library under the directory
5751         device/include/pic16 and device/lib/pic16. These files
5752         contain the declarations of SFRs for the PIC18Fxx2 devices.
5753         The directory is initialized via configure from toplevel.
5754
5755 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5756
5757         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5758         the spilllocations to be compared correctly
5759
5760 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5761
5762         * src/SDCCast.c (decorateType): fixed bug introduced today
5763
5764 2004-01-12  Borut Razem <borut.razem AT siol.net>
5765
5766         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5767         doc/sdccman.lyx: upper case pragmas are deprecated
5768
5769 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5770
5771         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5772         in simpler and even better code
5773
5774 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5775
5776         * src/SDCCicode.c (operandOperation): fixed bug #874819
5777         * src/SDCCast.c (decorateType): fixed
5778         char foo (unsigned long ul) { return ul > 0; }
5779
5780 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5781
5782         * doc/sdccman.lyx: Moved and added some sections, small changes
5783         all over. Telling LaTeX to be less strict with word spacing
5784         to better keep the right margin. Changed some notes about
5785         maintainance of the ports in section 3.2.1 - is it OK like this?
5786
5787 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5788
5789         SDCC source changes:
5790         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5791         convilong): modified to inform the pic16 port that builtin functions
5792         are external
5793
5794         PIC16 PORT specific changes:
5795         * src/pic16/device.c pic16_dump_equates() added,
5796         processor registers declared internally by the port are emitted in
5797         the translation as equates,
5798         * src/pic16/gen.c: inline code is passed unprocessed to the
5799         translation,
5800         * (pic16_popGetLit2): fnuction modified to take second operand as
5801         pCodeOp pointer and not as literal,
5802         * (popRegFromIdx): prefixed with pic16_,
5803         * (pic16_popCombine2): modified to receive already allocated pCode
5804         operands,
5805         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5806         * (genFunction): initializes local stack frame and pushes on stack
5807         all the registers used by this function,
5808         * (genEndFunction): restores all registers from stack and restores
5809         stack frame,
5810         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5811         improvements,
5812         * (pic16glue): changed the program startup sequence,
5813         * added new dbName code 'A' for functions placed in absolute section
5814         * src/pic16/main.c: added function attribute _naked,
5815         * added pragma 'code' to place a fnuction at an absolute address,
5816         * added command line arguments --debug-ralloc and --pcode-verbose,
5817         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5818         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5819         * (pic16_newpCodeOpLit2): modified to take the second operand as
5820         pCodeOp pointer,
5821         * (pic16_printpBlock): modified to emit each function in a separate
5822         section,
5823         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5824         UPPER for immediate operands,
5825         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5826         instruction,
5827         * src/pic16/peeph.def: all peepholes with movff are commented out,
5828         because there is a problem in the pcode peep optimizer,
5829         * src/pic16/ralloc.c: the register allocator can now reuse local
5830         function symbols for another function. This saves register usage.
5831         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5832
5833         Added file src/pic16/NOTES with information about program writing on
5834         the current port version.
5835
5836 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5837
5838         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5839         and peephole 252 (array access)
5840
5841 2004-01-09  Borut Razem <borut.razem AT siol.net>
5842
5843         * src/SDCCmain.c : fixed #872250: -l command line defined library
5844           files are scanned before standard library files
5845
5846 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/SDCCast.c (decorateType): fixed bug #874046
5849
5850 2004-01-09  Borut Razem <borut.razem AT siol.net>
5851
5852         * support/scripts/sdcc.nsi: remove previous installation
5853
5854 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5855
5856         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5857         bytes for last interrupt vector (mcs51)
5858         * sdcc.spec: fixed typo
5859
5860 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5861
5862         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5863         gen51Code): more efficient parameter receive for --model-large
5864         ("bug" #845294)
5865
5866 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5867
5868         * src/ds390/main.c,
5869         * src/z80/main.c: added missed needLinkerScript flags (more than
5870         one port structure defined in these file)
5871         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5872         bug #795325
5873
5874 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5875
5876         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5877         * src/port.h: added flag needLinkerScript in port->linker
5878         structure to inform whether to create a .lnk file or not,
5879         * src/avr/main.c,
5880         * src/ds390/main.c,
5881         * src/hc08/main.c,
5882         * src/mcs51/main.c,
5883         * src/pic/main.c,
5884         * src/pic16/main.c,
5885         * src/xa51/main.c,
5886         * src/z80/main.c: changed appropriately to configure
5887         needLinkerScript flag
5888         * src/pic/gen.c,
5889         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5890         * src/pic/glue.c: added variable udata_section_name to
5891         override default uninitialized data segment definition for
5892         devices only with SHAREBANK memory (reported from Erik Epetrich)
5893         * (pic14emitOverlay): modified to emit a commented overlay segment
5894         directive when no overlay data exist
5895         * (picglue): modified to emit uninitialized data segment
5896         according to udata_section_name
5897         * src/pic/main.c (_pic14_parseOptions): added command line
5898         options --udata-section-name=[name] to override default
5899         udata definition name
5900         * modified _linkCmd and _asmCmd to include compiler passed
5901         arguments via -W option
5902         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5903         object file from '.rel' to '.o' in port->linker structure,
5904         changed size of fptr from 2 to 3 in port structure
5905
5906 2004-01-07  Borut Razem <borut.razem AT siol.net>
5907
5908         * support/scripts/sdcc.nsi: update PATH
5909         * support/scripts/sdcc.ico: craeted
5910
5911 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5912
5913         * device/include/Makefile.in: fix install
5914         * doc/Makefile: fix install
5915
5916 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5919         in bug #860505
5920         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5921         how the function variable allocation summary is displayed; also
5922         include information about variables allocated to the overlay
5923         segment
5924
5925 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5926
5927         * as/mcs51/lkmain.c: Help about -Y option
5928         * as/mcs51/lkarea.c: Fixed gcc warnings
5929
5930 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5931
5932         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5933         fixed warning
5934         * support/valdiag/tests/overflow.c: added
5935         * src/SDCCast.c (decorateType),
5936         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5937         LEFT_OP (left shift)
5938
5939 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5940
5941         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5942         (default behaviour).
5943
5944 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5945
5946         A python script to validate compiler diagnostic messages. It can be
5947         used to verify that sdcc complains about bad c source code and
5948         gives a good location of the error.
5949         * support/valdiag/Makefile,
5950         * support/valdiag/valdiag.py,
5951         * support/valdiag/tests/*
5952
5953 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5954
5955         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5956         * src/SDCCsymt.c (newEnumType),
5957         * src/SDCCsymt.h
5958         * support/Util/SDCCerr.c,
5959         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5960         enum related bugs.
5961         * support/regression/tests/enum.c: added test for enum values that
5962         require at least 2 bytes of storage.
5963
5964 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5965
5966         * src/common.h: added ifndef/define/endif macros
5967         around the header file.
5968         Bug reported from Jesus Calvino-Fraga
5969
5970 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5971
5972         * sdcc.spec: updated
5973         * device/include/Makefile.in: don't install CVS directories
5974         * device/lib/Makefile.in: added removal of CVS directories after install
5975         * doc/Makefile: fixed install, added local_icons
5976         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5977         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5978         * src/ds390/gen.c (genRightShift): fixed bug #870788
5979         * src/SDCCast.c (decorateType): fixed bug #870781
5980
5981 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5982
5983         PIC16 port related changes:
5984         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5985         added variable stackPos,
5986
5987         * gen.c: genCall, assignResultValue: added support for
5988         pushing/retrieving function parameters to/from stack,
5989         genFunction,genEndFunction: setup stack frame for the
5990         generated function,
5991         genAddrOf: will be changed according to bug 863624
5992
5993         * added files genutils.c and genutils.h which contain gen*
5994         debugged and optimised functions extracted from gen.c
5995
5996         * glue.c: added variable 'externs' which holds extern symbols,
5997         pic16emitRegularMap: is modified to properly handle relocatable
5998          symbols under the new scheme,
5999         pic16createInterruptVect: is modified
6000         pic16printPublics: is modified to emit 'global' assembler directives,
6001         added pic16_printExterns to print extern symbols,
6002         pic16glue: initializes stack/frame pointer in the beginning of
6003         the assembly output. Temporary hack, will be corrected later,
6004         because gplink yet does not support stack and SDCC does not
6005         yet support a type of crt0.o object to create the final binary.
6006
6007         * Removed many lines that contain 8051 legacy code.
6008         * The code is finally placed under a 'code' directive.
6009         * Added port specific options.
6010
6011         * _process_pragma: simplified since now we do not need *special*
6012         include file to define SFR registers. But a separate header
6013         will be needed. This will be developed later.
6014         * _pic16_parseOptions: added, parses port specific options:
6015         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6016         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6017         --preplace-udata-with=
6018
6019         * _pic16_setDefaultOptions: modified to initialize section names,
6020         but hack is temporarly out of order since it needs improvement.
6021         * _pic16_genAssemblerPreamble: configuration words are emitted by
6022         their address instead of their name. This part is incomplete and
6023         supports only the 18Fxx2 devices. Other devices will emit an error
6024         during assembly since they do not contain the same set of config
6025         registers
6026         * _pic16_genIVT: is modified,
6027
6028         * pcode.c: added definitions for some hardware registers that are needed
6029         for stack support
6030         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6031         All PCI entries are updated. Now LFSR is supported.
6032         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6033         * added pic16_newpCodeOpLit2 to support instructions with
6034         two literal arguments
6035         * pic16_pCode2str: corrected code that emits assembler instructions
6036         with two literal operands and those that have an access bit modifier
6037         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6038         this fixes a bug which caused some labels to be lost, when an
6039         assembler directive was added, i.e. banksel,
6040         * pic16_FixRegisterBanking: improved logic that causes the insertion
6041         of bank switching,
6042         * InlineFunction: functions that are called once, are not any more
6043         inlined. This can be a port option in the future,
6044
6045         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6046
6047         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6048         hold the corresponding uninitialized symbols,
6049         * pic16_allocProcessorRegister: registers have explicit marked the
6050         accessBank field,
6051         * pic16_allocInternalRegister: registers are explicit marked as
6052         not used,
6053         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6054         processing list, so bit registers were lost,
6055         *
6056
6057         * ralloc.h: added field 'accessBank' and original symbol operand
6058         in register definition,
6059         * removed the field isMapped from register definition,
6060
6061         ** Several functions have been removed from various sources:
6062         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6063         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6064         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6065         pic16_assignRelocatableRegisters
6066
6067         ** others have been introduced:
6068         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6069         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6070
6071 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6072
6073         * support/scripts/inc2h.pl: changed definition of BIT_AT
6074         to emit 'sbit at' instead of 'bit at'. This was a request.
6075
6076         PIC16 port related preliminary changes:
6077         * gen.c: prefixed function popRegFromString with
6078         pic16_ and all references to it corrected
6079         * pcode.c: all pic16_pc_* hardware registers prefixed
6080         with underscore (_),
6081         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6082         * ralloc.c: newReg(): when register is REG_SFR then
6083         set address to rIdx,
6084         pic16_allocProcessorRegister(): marks register wasUsed=0
6085         pic16_writeUsedRegs(): added a call to assign processor
6086         registers via pic16_assignFixedRegisters
6087
6088 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6089
6090         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6091         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6092         variables in unused register banks.  Also the SSEG is placed
6093         wherever there is enough space for it, and IDATA can be anywhere
6094         in internal RAM.  For now compile using -Wl-Y[stack_size].
6095         The mem file is different for this option as well, since it
6096         makes no sense of talking about DSEG lenght.
6097
6098 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6099
6100         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6101         in certain cases, e.g. when ROM assignment, patch provided
6102         from Albert den Haan.
6103
6104 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6105
6106         Many signedness and type propagation fixes:
6107         * src/SDCCicode.c: made geniCodeCast() static
6108         replaced SPEC_ by IS_ (cosmetic)
6109         (operandOperation): fixed div and mod operation
6110         (usualBinaryConversions): added support for promotion of char
6111         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6112         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6113         (geniCodeAdd): an array index will stay unsigned, even if promoted
6114         from char to int
6115         (geniCodeArray): ditto
6116         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6117         * src/SDCCsymt.c (computeType): added more support for char;
6118         promotion of char is selectable by promoteCharToInt, fixed signedness
6119         for all cases
6120         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6121         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6122         * src/SDCCval (val*): replaced signedness calculation by
6123         computeType()
6124         rearranged if-branches (cosmetic)
6125         (valShift): added warning W_SHIFT_CHANGED
6126         (valCompare): fixed problem with different types
6127         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6128         * support/regression/tests/literalop.c: added many cases
6129         * support/regression/tests/ast_constant_folding.c: changed finally to
6130         'unsigned int'
6131         * .version: new year, new version: 2.3.7
6132         * src/SDCCmain.c (main): applied patch #866468
6133         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6134         provided by Scott Bronson
6135         * doc/sdccman.lyx: updated documentation for sdcdb
6136         updated and added chapter tips
6137
6138 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6139
6140         * src/SDCCsymt.h: missing from yesterday's commits
6141
6142 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6143
6144         * src/SDCC.y (struct_or_union_specifier),
6145         * support/Util/SDCCerr.c,
6146         * support/Util/SDCCerr.h: verify that struct & union tags are used
6147         as declared.
6148
6149 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6150
6151         * src/SDCCglobl.h: missing from yesterday's commits
6152
6153 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6156         sft_attributes, struct_declaration, parameter_declaration,
6157         type_name, start_block, declaration_list),
6158         * src/SDCC.lex (check_type): support redefinition of typedef names
6159
6160 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6161
6162         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6163         aligned xdata arrays. Erik helped me with the if clause.
6164
6165 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6166
6167         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6168         warning
6169
6170 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6171
6172         * src/SDCCast.h,
6173         * src/SDCCast.c (newAst_),
6174         * src/SDCCicode.h,
6175         * src/SDCCicode.c (ast2iCode, newiCode),
6176         * src/SDCCglobl.h,
6177         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6178         expr, statement, expression_statement, selection_statement,
6179         iteration_statement, expr_opt, jump_statement): foundation for tracking
6180         sequence points
6181         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6182         point code too)
6183
6184 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * support/Util/SDCCerr.c,
6187         * src/SDCCast.h,
6188         * src/SDCCast.c (createCase, createDefault, decorateType),
6189         * src/SDCClabel.c (labelUnreach),
6190         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6191         to error messages.
6192         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6193         (with thanks to Stas Sergeev)
6194         * device/include/time.h,
6195         * device/lib/time.c (CheckTime): suppress unreachable code warning
6196
6197 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6198
6199         * src/SDCCast.c (createIvalCharPtr),
6200         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6201         bug #753752)
6202         * support/regression/tests/nullstring.c: tests for these two bugs
6203
6204 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6205
6206         * support/Util/SDCCerr.h,
6207         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6208         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6209         about storage class and 'at' used inside struct or union
6210         * src/SDCCBBlock.c (iCodeFromeBBlock),
6211         * src/SDCCcse.c (ifxOptimize),
6212         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6213         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6214         printIval, emitStaticSeg, emitOverlay),
6215         * src/SDCClabel.c (deleteIfx),
6216         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6217         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6218         gatherAutoInit, processParms),
6219         * support/Util/SDCCerr.h,
6220         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6221         reporting for post-parse errors.
6222
6223 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6226         implicit casts via union; they don't work on big endian systems
6227         (possible fix for bug #861138)
6228
6229 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6230
6231         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6232         * src/mcs51/main.c: fixed the fix for bug #737001
6233
6234 2003-12-15  Borut Razem <borut.razem AT siol.net>
6235
6236         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6237
6238 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6239
6240         * support/makebin/makebin.c: put output in binary mode
6241
6242 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6243
6244         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6245         xdata and data memory on startup. Set the environment variable
6246         SDCC_NOGENRAMCLEAR to disable this.
6247         * src/mcs51/peephole.def,
6248         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6249         (allows non-interrupt and interrupt code to safely compete for a resource
6250         without the non-interrupt code having to disable interrupts)
6251
6252 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6253
6254         * src/SDCCicode.c (geniCodeAdd),
6255         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6256         with valFromType if type might be a pointer and host is big endian).
6257         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6258         types, not just integer types.
6259         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6260         multiply defined with mismatching "at" address.
6261
6262 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6263
6264         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6265         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6266         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6267         with embedded nulls (fixed bug #753752)
6268
6269 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6270
6271         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6272         Apparently this did not see much testing (endless loop)
6273
6274 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6277
6278 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6279
6280         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6281         gracefully handle NULL memmap pointers
6282
6283 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6286         instead of deleting the iCode when an operand is volatile
6287         * src/z80/gen.c (genDummyRead),
6288         * src/mcs51/gen.c (genDummyRead),
6289         * src/ds390/gen.c (genDummyRead),
6290         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6291         not just IC_RIGHT
6292         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6293         * src/SDCC.y: fixed bug #850420
6294
6295 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6296
6297         Applied z80 i/o port patch from Peter Townson and fixed some operators
6298         to better handle operands in A register.
6299         * device/include/z180.h
6300         * src/SDCC.y
6301         * src/SDCCglue.c
6302         * src/z80/gen.c
6303         * src/z80/gen.h
6304         * src/z80/main.c
6305         * src/z80/peeph-z80.def
6306         * src/z80/peeph.def
6307         * src/z80/z80.h
6308
6309 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6310
6311         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6312
6313 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6314
6315         * device/lib/hc08/_mullong.c: Removed extra #endif
6316
6317 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6318
6319         * sim/ucsim/hc08.src/inst.cc,
6320         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6321         carries from x to h
6322         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6323         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6324         * device/include/stdarg.h: fixed varargs for hc08
6325         * device/lib/Makefile.in,
6326         * device/lib/hc08/Makefile,
6327         * device/lib/hc08/_mulint.c,
6328         * device/lib/hc08/_mullong.c: fixed some endian problems
6329
6330 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6331
6332         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6333         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6334         * device/lib/_gptrget.c,
6335         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6336
6337 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6338
6339         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6340         * src/SDCCast.c (astErrors): fixed bug #846007
6341         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6342
6343 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6344
6345         * src/SDCCast.c (decorateType): disabled a transformation I added in
6346         revision 1.188 (access to fields of a structure at an absolute address);
6347         it breaks with bitfields, extern declarations, and gcse analysis.
6348         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6349         could be assigned through a pointer, so don't complain.
6350         * src/SDCCast.c (astErrors),
6351         * src/SDCCast.h,
6352         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6353
6354 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6355
6356         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6357         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6358         output of __config directives, since gpasm now supports them
6359         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6360         pre-processor macro, i.e. -DMCU=p18f452
6361         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6362         and modified to handle 'cast' icode similarly to '=' icode
6363         * src/pic16/device.h (typedef struct PIC_device): added field
6364         'extMIface' to indicate that chip has external memory interface
6365         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6366         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6367         18F8720
6368
6369 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         * src/SDCC.y (pointer): fixed bug #846006
6372         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6373         * src/SDCCast.c (decorateType): fixed bug #846009
6374         * src/ds390/peeph.def,
6375         * src/ds390/gen.c (genAnd, genOr),
6376         * src/mcs51/peeph.def,
6377         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6378
6379 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6382         * src/SDCCdflow.c
6383         * src/SDCCcse.c
6384         * src/SDCCcse.h
6385         * src/SDCCBBlock.h
6386         * src/SDCCBBlock.c
6387
6388 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6389
6390         fixed bug #845089
6391         * src/SDCCbitv.h,
6392         * src/SDCCbitv.c: added function to free a bitvector
6393         * src/SDCClrange.h,
6394         * src/SDCClrange.c: added function to recompute the liveranges
6395         * src/avr/ralloc.c,
6396         * src/ds390/ralloc.c,
6397         * src/hc08/ralloc.c,
6398         * src/mcs51/ralloc.c,
6399         * src/pic/ralloc.c,
6400         * src/pic16/ralloc.c,
6401         * src/xa51/ralloc.c,
6402         * src/z80/ralloc.c: recompute the liveranges after register packing
6403
6404 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6405
6406         * src/SDCCloop.c (newInduction): fixed bug #845630
6407
6408 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6409
6410         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6411         inadvertantly left behind from my 2003-11-12 change
6412
6413 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6414
6415         Updated headers I neglected to commit yesterday.
6416         * src/SDCClrange.h,
6417         * src/SDCCicode.h
6418
6419 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6422         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6423         * src/SDCCopt.c (eBBlockFromiCode),
6424         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6425         the creation of the key hash table from the sequencing so it can be used
6426         earlier (for some GCSE bug fixes still pending)
6427
6428 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6429
6430         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6431         * support/regression/tests/addsub.c: testing genPlus shortcut
6432
6433 2003-11-15  Borut Razem <borut.razem AT siol.net>
6434
6435         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6436
6437 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6438
6439         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6440         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6441         ordering is immaterial.
6442         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6443
6444 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6445
6446         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6447         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6448         (SIGSEV) of bug #840381
6449         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6450         unlink new file before rename if new and old filenames are the same)
6451
6452 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6453
6454         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6455         uninitialized variables) for the mcs51. Set environment variable
6456         SDCC_GENRAMCLEAR to test.
6457         xdata initialization slightly shorter
6458
6459 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6460
6461         * src/SDCCsymt.h,
6462         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6463         #838241 & 780691 (basicly the same bug)
6464         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6465         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6466
6467 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6468
6469         * src/SDCCmain.c (linkEdit): "fix" #834252
6470
6471 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6472
6473         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6474         * src/SDCCast.h,
6475         * src/SDCC.y: fixed bug #819403
6476
6477 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6478
6479         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6480         the reentrant attribute.
6481         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6482         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6483         simulation
6484         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6485         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6486         erroneously reduced to a literal.
6487         * src/hc08/ralloc.c (packRegisters, rematStr),
6488         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6489         some cases
6490
6491 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6492
6493         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6494         * doc/sdccman.lyx: changed from 'article' to 'book'
6495         * doc/Makefile: readded test_suite_spec and cdbfileformat
6496
6497 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6498
6499         * device/include/stdlib.h: include malloc.h to comply with ANSI
6500         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6501
6502 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6503
6504         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6505         * doc/clean.mk: also remove *.out files
6506         * doc/sdccman.lyx: some additions, larger top/bottom margins
6507
6508 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * src/SDCC.y: fixed bug #837365
6511         * support/regression/tests/bitopcse.c
6512         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6513         a symbol (might be valop instead)
6514         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6515         * device/lib/clean.mk: added hc08 to the cleaning list
6516
6517 2003-11-04  Borut Razem <borut.razem AT siol.net>
6518
6519         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6520           made 2003-11-04
6521         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6522           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6523           malloc is declared in standard stdlib.h
6524
6525 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6526
6527         * device/lib/hc08/Makefile: need to clean .rel not .o files
6528         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6529
6530 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * src/port.h,
6533         * src/hc08/main.c,
6534         * src/mcs51/main.c,
6535         * src/ds390/main.c,
6536         * src/z80/main.c,
6537         * src/avr/main.c,
6538         * src/pic/main.c,
6539         * src/pic16/main.c,
6540         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6541         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6542         tests (which uses the port's oclsExpense function)
6543         * src/SDCC.y,
6544         * src/SDCCast.c,
6545         * src/SDCCicode.c,
6546         * src/hc08/gen.c,
6547         * src/ds390/gen.c,
6548         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6549
6550 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         * src/SDCCcse.c (ifxOptimize),
6553         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6554         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6555         deleting the IFX iCode.
6556         * src/hc08/ralloc.c: reduced unneeded slocs
6557         * src/hc08/gen.c: fixed bug in asmopToBoolean
6558
6559 2003-11-04  Borut Razem <borut.razem AT siol.net>
6560
6561         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6562           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6563           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6564           transferred to configure
6565
6566 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6567
6568         Use headers defined in the C[++] standards:
6569         * sim/ucsim/gui.src/serio.src/fileio.cc
6570         * sim/ucsim/gui.src/serio.src/frontend.cc
6571         * sim/ucsim/gui.src/serio.src/main.cc
6572         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6573         * support/Util/NewAlloc.c
6574         * as/hc08/lklibr.c
6575         * as/mcs51/lklibr.c
6576         * as/z80/aslist.c
6577         * as/z80/assym.c
6578
6579 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6580
6581         * Added MSVC projects for hc08 assembler and linker:
6582         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6583         /as/hc08/link_hc08.dsp
6584
6585 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6586
6587         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6588
6589 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6590
6591         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6592
6593 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6594
6595         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6596
6597 2003-10-31  Borut Razem <borut.razem AT siol.net>
6598
6599         * support/cpp2/cpplib.h,
6600           support/cpp2/cpplib.c,
6601           support/cpp2/cpplex.c,
6602           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6603           to switch _asm block preprocessing on / off. Default is
6604           #pragma preproc_asm +
6605
6606 2003-10-31  Borut Razem <borut.razem AT siol.net>
6607
6608         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6609           when outputting comment blocks (when executed with -C option) and
6610           _asm (SDCPP specific) blocks
6611
6612 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6615
6616 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6617
6618         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6619
6620 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6621
6622         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6623         * src/SDCCast.c (decorateType): fixed bug #832664
6624
6625 2003-10-31  Borut Razem <borut.razem AT siol.net>
6626
6627         * support\cpp2\cpplex.c: fixed for SDCPP:
6628           comments(when executed with -C option) and _asm blocks
6629           were included even if they where in skipped #if block.
6630           Applied solution from GCC cpp 3.3.2
6631
6632 2003-10-31  Borut Razem <borut.razem AT siol.net>
6633
6634         * src/SDCC.lex: sdcc now understands both formats:
6635           '# <line_number> <file_name>' and
6636           '#line <line_number> <file_name>'
6637         * support/cpp2/cppmain.c: sdcpp now generates the standard
6638           '# <line_number> <file_name>' instead of former
6639           '#line <line_number> <file_name>'
6640
6641 2003-10-30  Borut Razem <borut.razem AT siol.net>
6642
6643         * support/cpp2/cpphash.h,
6644         * support/cpp2/cpplib.h
6645         * support/cpp2/cpplex.c,
6646         * support/cpp2/cppmain.c,
6647         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6648
6649 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6650
6651         Fixed a number of problems revealed by bug #827883.
6652         * src/SDCCloop.c (loopInvariants): Spill location of the
6653         result operand should be recomputed if extracted from
6654         a loop. Also, don't extract assignments of an iTemp
6655         from a literal.
6656         * src/SDCCast.c (isConformingBody): loop reversal should
6657         not occur if the control variable is involved with a
6658         relational operator.
6659
6660 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6661
6662         * .version: bumped to 2.3.6 to reflect the big improvements
6663         made by Erik and Klaus. Thanks!
6664
6665 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6666
6667         Replaced the livrange code.
6668         * src/SDCClrange.c: added new LR code
6669         * src/SDCCloop.c,
6670         * src/SDCCBBlock.h: removed remainig parts from old LR code
6671         * src/ds390/ralloc.c,
6672         * src/ds390/gen.c: minor fixes to make it work with new code
6673
6674 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6675
6676         * as/hc08/asm.h,
6677         * as/hc08/lkrloc.c,
6678         * src/hc08/gen.c,
6679         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6680         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6681         (tweaked fix for bug #818696)
6682
6683 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6684
6685         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6686
6687 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6688
6689         * src/SDCCmain.c,
6690         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6691         * src/mcs51/gen.c (gencjneshort),
6692         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6693         more efficient (per Scott Bronson's suggestion)
6694
6695 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6696
6697         Extended the semantics of the critical keyword to include
6698         individual statements. See RFE #827755 and #799831
6699         * src/SDCC.y
6700         * src/SDCCicode.c
6701         * src/SDCCopt.c
6702         * src/SDCCast.c
6703         * support/Util/SDCCerr.c
6704         * support/Util/SDCCerr.h
6705         * src/mcs51/gen.c
6706         * src/ds390/gen.c
6707         * src/hc08/gen.c
6708
6709 2003-10-19  Borut Razem <borut.razem AT siol.net>
6710
6711         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6712
6713 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6714
6715         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6716         Fixed bug #818696
6717         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6718         and predecrement operand is displayed
6719
6720 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6721
6722         * src/SDCCval.c (valMinus): fixed bug #826041
6723
6724 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6725
6726         Some hc08 related updates that I missed earlier
6727         * sim/ucsim/stypes.h
6728         * support/regression/ports/hc08/spec.mk
6729
6730 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6731
6732         New target "hc08" for the Motorola 68hc08 family of micros
6733
6734         * configure
6735         * configure.in
6736         * Makefile
6737         * src/hc08/*
6738         * src/SDCCmain.c
6739         * src/port.h
6740         * sim/ucsim/hc08.src/*
6741         * sim/ucsim/configure.in
6742         * src/ucsim/configure
6743         * sim/ucsim/packages_in.mk
6744         * as/hc08/*
6745         * as/Makefile
6746         * device/include/mc68hc908qy.h
6747         * device/lib/hc08/*
6748         * device/lib/Makefile.in
6749         * support/regression/ports/hc08/*
6750         * support/regression/Makefile
6751
6752 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6753
6754         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6755         regression test
6756         * src/ds390/gen.c (genCast): fixed bug #821957
6757
6758 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6759
6760         * device/lib/logf.c: "fixed" overlay bug
6761         * support/regression/ports/host/spec.mk: added m library
6762         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6763         * support/regression/tests/float_trans: added (for Eric)
6764
6765 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6766
6767         * src/mcs51/gen.c (genCpl): fixed bug
6768         http://sf.net/mailarchive/message.php?msg_id=6263915
6769
6770 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6771
6772         * src/SDCCast.c (decorateType): added extended constant folding
6773         * src/SDCCsymt.c (computeType): cleanup
6774         * src/SDCCval.c (valShift): minor optimization
6775         * support/regression/tests/ast_constant_folding.c: added
6776
6777 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6778
6779         * src/SDCCmain.c: removed some unintended changes
6780
6781 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6782
6783         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6784         * src/z80/gen.c: fixed part of bug #817589
6785         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6786
6787 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6788
6789         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6790         * src/SDCCcflow.c
6791         * src/SDCCcse.c
6792         * src/SDCCdflow.c
6793         * src/SDCClabel.c
6794         * src/SDCClrange.c
6795         * src/SDCCmem.c
6796         * src/SDCCopt.c
6797         * src/SDCCpeeph.c
6798         * src/SDCCset.c
6799         * src/avr/ralloc.c
6800         * src/ds390/ralloc.c
6801         * src/izt/ralloc.c
6802         * src/mcs51/ralloc.c
6803         * src/pic/ralloc.c
6804         * src/pic16/ralloc.c
6805         * src/xa51/ralloc.c
6806         * src/z80/ralloc.c
6807         * src/z80/gen.c: removed unused label "release:"
6808
6809 2003-10-06  Borut Razem <borut.razem AT siol.net>
6810
6811         * src/SDCC.lex: removed definition of unused variables
6812           save_optimize and save_options
6813
6814 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * clean.mk: removed '=' in "-maxdepth=1"
6817         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6818         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6819
6820 2003-10-06  Borut Razem <borut.razem AT siol.net>
6821
6822         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6823           my_unput() replaced by unput()
6824
6825 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6826
6827         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6828         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6829         type-punned pointer will break strict-aliasing rules"
6830         Old LR behaviour is again default; Klaus' LR can be choosen by
6831         defining the environment variable LRKLAUS
6832         * src/SDCCBBlock.h
6833         * src/SDCCloop.c
6834         * src/SDCClrange.c
6835         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6836         * clean.mk: fixed removal of files in bin/CVS/
6837         * device/lib/clean.mk: fixed removal of directories small and large
6838         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6839         * src/SDCCicode.c,
6840         * src/SDCCval.c: removed superflous test for pedantic
6841
6842 2003-10-05  Borut Razem <borut.razem AT siol.net>
6843
6844         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6845           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6846           message "unmatched #pragma SAVE and #pragma RESTORE"
6847
6848 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6849
6850         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6851           assembly, critical functions, atomic, nojtbound)
6852
6853 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6854
6855         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6856         * src/SDCCBBlock.h
6857         * src/SDCCloop.c
6858         * src/SDCCloop.h
6859         * src/SDCClrange.c
6860
6861 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6862
6863         * src/z80/gen.h,
6864         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6865         * src/mcs51/gen.h
6866         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6867         * src/ds390/gen.h
6868         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6869         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6870         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6871
6872 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/z80/gen.c (genRet): fixed bug #524753
6875         * src/z80/gen.c (genCast): fixed internal error on cast from
6876         pointer to long
6877         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6878         fix for bug #477835 to the z80
6879         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6880         for tracking iCodes in the peephole optimizer for z80
6881
6882 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6883
6884         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6885         the other part of bug #814548
6886         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6887
6888 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6889
6890         * src/SDCCcse.c: fixed part of bug #814548
6891
6892 2003-09-28  Borut Razem <borut.razem AT siol.net>
6893
6894         * src/asm.c: rewrite of printILine() to use temporary file instead
6895           a pipe
6896         * src/xa51/main.c: commented out declaration of int rewinds
6897
6898 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6901
6902 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6905         * src/asm.c (printILine): Fixed bug #811015
6906
6907 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6908
6909         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6910         freeing.
6911
6912 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6913
6914         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6915         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6916         to correctly handle general case of AOP_PAIRPTR
6917         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6918
6919 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * src/mcs51/ralloc.c (fillGaps),
6922         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6923         register positioning bug)
6924
6925 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6928
6929 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6930
6931         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6932         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6933         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6934         (ralloc doesn't intentionally do this now, but perhaps later)
6935         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6936         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6937         register positioning bugs (Fixed bug #762602 and #795325)
6938         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6939         (Fixed bug #808779)
6940         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6941         lines that --i-code-in-asm generates
6942
6943 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6944
6945         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6946         trying to fclose a FILE* that was already closed.
6947
6948 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6951         of const struct should be treated as if const themselves)
6952
6953 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6954
6955         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6956
6957 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6958
6959         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6960         Unix (/n) and DOS (/r/n) line terminations.
6961
6962 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6965         bug #613775
6966
6967 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6968
6969         * src/mcs51/gen.c (genFunction, genEndFunction),
6970         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6971         and restore of EA so that stack offsets to parameters are
6972         correct when using both critical and reentrant/stack-auto.
6973         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6974         size (can be triggered in error if sloc is shared between
6975         different sized objects)
6976         * device/include/float.h: fixed macros to explicitly use
6977         unsigned long where needed
6978
6979 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6980
6981         Feature req. 799831: added code to allow nesting of critical functions
6982         * src/mcs51/gen.c (genFunction, genEndFunction)
6983         * src/ds390/gen.c (genFunction, genEndFunction)
6984
6985 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6986
6987         * src/SDCCsymt.c (sclsFromPtr),
6988         * src/SDCCsymt.h,
6989         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6990         support for standard C idiom of memory mapped variables; for
6991         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6992         to xdata int at 0x1234 tempvar = 1.
6993         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6994         provided by Akiya ISHIDA
6995
6996 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6999         * src/SDCCval.c (constVal): added reduction from int to char
7000         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7001         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7002         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7003         to ignore the sign
7004         * support/regression/tests/shifts.c: fixed
7005
7006 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7007
7008         * src/z80/gen.c (genXor): Fixed bug #805445
7009
7010 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7011
7012         Fixed bug #621531 (const & volatile confusion in the type chain).
7013         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7014         refer to the const or volatile state of the pointer itself.
7015
7016         * src/SDCCast.c
7017         * src/SDCCglue.c
7018         * src/SDCCicode.c
7019         * src/SDCCsymt.c
7020         * src/SDCCval.c
7021         * src/SDCC.y
7022         * src/SDCCsymt.h
7023         * src/pic/gen.c
7024         * src/pic/ralloc.c
7025         * src/pic16/gen.c
7026         * src/pic16/ralloc.c
7027         * support/regression/tests/const.c
7028
7029 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7030
7031         When checking for duplicated modules, use absolute paths
7032         instead of relative paths.  Files changed:
7033
7034         * as/mcs51/lklib.c
7035         * link/z80/lklib.c
7036
7037 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7038
7039         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7040
7041 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7042
7043         * device/include/string.h: added size_t typedef, changed
7044         prototypes to use size_t, eliminated separate reentrant and
7045         non-reentrant declarations, added _memmove declaration
7046         * device/lib/_memcpy.c: changed to use size_t instead of int,
7047         changed /4 to >>2 to avoid division library call
7048         * device/lib/_memcmp.c,
7049         * device/lib/_memset.c,
7050         * device/lib/_strncat.c,
7051         * device/lib/_strncpy.c,
7052         * device/lib/_strncmp.c: changed to use size_t instead of int
7053         * device/lib/_memmove.c: new file (fixed bug #772294)
7054         * device/lib/Makefile.in: added _memmove.c
7055         * device/lib/z80/asm_strings.s: fixed bug #772290
7056         * support/regression/tests/bitfields.c: attempt to fix host assertion
7057         failure on amd64-unknown-linux2.2
7058
7059 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7060
7061         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7062         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7063         * as/z80/asmain.c (main): fixed bug #801766
7064
7065 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7066
7067         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7068         compilers
7069
7070 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7071
7072         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7073         reported in bug #800609
7074
7075 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7076
7077         * Top header beautifications in src/pic16 directory:
7078           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7079           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7080           pcoderegs.h, ralloc.c, ralloc.h
7081         * main.c: added top header and GPL license notice
7082         * pcode.c: fixed the if-conditional warning
7083
7084 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7085
7086         * device/lib/_mullong.c: replaced int by short for gcc
7087
7088 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7091         and JUMPTABLE iCodes properly now (worked by accident before)
7092         * src/mcs51/gen.c (leftRightUseAcc),
7093         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7094         iCode properly now. Use getSize instead of nRegs since a & b
7095         aren't part of the nRegs tally.
7096
7097 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7098
7099         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7100         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7101           before instructions that use the _STATUS register
7102
7103 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7106         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7107         fetching of the pointer
7108         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7109         copied from genNearPointerSet()
7110         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7111         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7112         If they pop r0/r1 they must be called in the opposite order than aopOp().
7113         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7114         (resp. --stack-auto), prepared for --xstack
7115
7116 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7117
7118         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7119
7120 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7121
7122         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7123         these ports have their own __sdcc_external_start()
7124
7125 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7126
7127         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7128         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7129         type for bits was changed. It resulted in bit variables becoming
7130         global, which is not permitted in PIC 14 assembly output.
7131
7132 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7133
7134         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7135
7136 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7137
7138         Z80 and MCS51 linkers complaint if a public symbol is defined
7139         in more than one library module:
7140
7141         * as/mcs51/lklib.c
7142         * link/z80/lklib.c
7143         * as/mcs51/Makefile.in
7144
7145 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7146
7147         A few small changes that speed up the peephole optimizer.
7148
7149         * src/SDCCpeeph.c
7150
7151 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7152
7153         Try to make the peephole optimizer smarter by maintaining
7154         an association between the assembly source code and the
7155         iCodes that originated them. Put this information to use
7156         with a new peephole rule condition "notVolatile" so that
7157         the rules can be aggressive yet still safe.
7158
7159         * src/SDCCpeeph.c
7160         * src/SDCCpeeph.h
7161         * src/mcs51/gen.c
7162         * src/mcs51/peeph.def
7163
7164 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7165
7166         Fixed bug #741761
7167
7168         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7169         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7170         if the left or right operand symbols have the accuse flag set.
7171
7172 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         Changed the type of the result of the ! (NOT) operator to char;
7175         previously it returned the same type as the source. This allows
7176         us to eliminate all the genFloatNot functions (all of its target
7177         implementations were very buggy) since !float can use the same
7178         code as !long now.
7179
7180         * src/SDCCicode.c (ast2iCode): ! returns char
7181         * src/mcs51/gen.c (genNot, genNotFloat),
7182         * src/ds390/gen.c (genNot, genNotFloat),
7183         * src/z80/gen.c (genNot, genNotFloat),
7184         * src/pic/gen.c (genNot, genNotFloat),
7185         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7186
7187 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7188
7189         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7190         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7191            during interrupts. Ensure WSAVE is located at a shared bank address.
7192         2. Fixed page selection in some places
7193         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7194            the registers name strings.
7195         4. Fixed "signed / unsigned compare" compiler warnings.
7196         5. The PIC port manages its own allocation of the general purpose
7197            registers, but makes no attempt to reuse them. As a result when
7198            compiling it soon runs out of general purpose registers. Some
7199            additional code was added to the files pcode.c and device.c to walk
7200            through the function call tree and rename the registers so that they
7201            get reused.
7202
7203         * src/pic/device.c
7204         * src/pic/gen.c
7205         * src/pic/glue.c
7206         * src/pic/pcode.c
7207         * src/pic/pcode.h
7208         * src/pic/ralloc.c
7209         * src/pic/ralloc.h
7210         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7211         genPlus() & genMinus() when the result is the same as left or right
7212
7213 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7214
7215         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7216
7217 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7218
7219         Made bitfield a distinct type from bit so that bitfields
7220         convert as per ANSI C and bits retain their traditional
7221         boolean style behaviour. Implemented bitfield support in
7222         the z80 port.
7223
7224         * src/SDCCsymt.h,
7225         * src/SDCCsymt.c,
7226         * src/SDCCast.c,
7227         * src/cdbFile.c,
7228         * src/mcs51/gen.c,
7229         * src/ds390/gen.c: bit v bitfield split
7230         * src/z80/gen.c: New support for bitfields
7231         * support/regression/tests/bitfields.c: reenabled z80,
7232         added more tests
7233
7234 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7235
7236         Rules 246.x, 247.x relate to bitfields, the others speed up
7237         access to xdata mapped I/O devices.
7238
7239         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7240
7241 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         Cleaned up genPackBits and genUnpackBits and added two helper
7244         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7245         for literal assignments in genPackBits (thanks to Frieder for
7246         reminding me).
7247
7248         * src/mcs51/gen.c
7249         * src/ds390/gen.c
7250
7251 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7252
7253         Fixed bug #748310 (pointer to function type mishandled when the
7254         function name is omitted). Also fixed a SIGSEGV when a function
7255         attribute (reentrant, etc) is used on a non-function or on a
7256         function but misplaced before the parameter list.
7257
7258         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7259         bug #748310
7260         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7261         * support/Util/SDCCerr.h,
7262         * support/Util/SDCCerr.c: Added func attr misuse error msg
7263
7264 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         Fixed bug #787649 by anonymous
7267         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7268         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7269
7270 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7271
7272         Fixed numerous bitfield problems.
7273
7274         * src/SDCC.y: More bitfield related error checking
7275         * src/SDCCsymt.h,
7276         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7277         * support/Util/SDCCerr.h,
7278         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7279         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7280         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7281         * support/regression/tests/bitfields.c: tests added
7282
7283 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7284
7285         Made the constant following the "interrupt" keyword optional. If
7286         omitted, the function will not automatically be given an entry
7287         in the interrupt vector table (similar to #pragma NOIV, but
7288         less syntacticly kludgy). The interrupt number is also now
7289         range checked. Also fixed a bug in the high order bit example
7290         in the manual.
7291
7292         * src/SDCC.y
7293         * src/SDCCmem.c
7294         * src/SDCCglue.c
7295         * src/SDCCsymt.h
7296         * support/Util/SDCCerr.c
7297         * support/Util/SDCCerr.h
7298         * doc/sdccman.lyx
7299
7300 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7301
7302         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7303         * src/SDCCicode.c (operandOperation): rewritten some ops
7304         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7305         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7306         other type
7307         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7308         be re-activated by defining REDUCE_LITERALS)
7309         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7310         unsigned, but are signed by default
7311         * src/SDCCval.c (constVal): rearranged
7312         * src/SDCCval.c (valMod): preliminary fix
7313         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7314         * support/regression/literalop.c: added, work in progress
7315
7316 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7317
7318         Generate warnings for useless declarations like "char data;"
7319         that don't do what new users expect.
7320
7321         * src/SDCC.y
7322         * support/Util/SDCCerr.h
7323         * support/Util/SDCCerr.c
7324
7325 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7326
7327         * src/SDCCval.c (valMult): fix overflow detection of negative int
7328
7329 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7330
7331         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7332
7333         Changes to support big endian targets:
7334
7335         * src/ports.h
7336         * src/SDCCglue.c
7337         * src/avr/main.c
7338         * src/ds390/main.c
7339         * src/izt/i186.c
7340         * src/mcs51/main.c
7341         * src/pic/main.c
7342         * src/pic16/main.c
7343         * src/xa51/main.c
7344         * src/z80/main.c
7345
7346 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7347
7348         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7349         * device/lib/time.c: fixed warning "integer overflow in expression"
7350
7351 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7354         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7355         constants are unsigned; added recognition of "u" flag for unsigned
7356         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7357         * src/SDCCval.c (valDiv, valMod): fixed signdness
7358         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7359         signedness of modulo, left and right shift
7360         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7361         * support/Util/SDCCerr.h: added warning W_INT_OVL
7362         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7363         * src/SDCCast.c (ast_print): improved output of constants
7364
7365 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7366
7367         Fixed some warnings when building with MSVC:
7368
7369         * as\mcs51\asdata.c
7370         * as\z80\asdata.c
7371         * as\mcs51\asm.h
7372         * as\z80\asm.h
7373         * link\z80\aslink.h
7374         * link\z80\lkdata.c
7375         * link\z80\lkeval.c
7376         * link\z80\lkgb.c
7377         * link\z80\lkihx.c
7378         * link\z80\lks19.c
7379         * link\z80\lksym.c
7380         * support\cpp2\cpplib.c
7381         * src\ds390\gen.c
7382         * src\mcs51\gen.c
7383
7384 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7387
7388 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7389
7390         * support\librarian\clean.mk: Do not remove Makefile.
7391         * support\librarian\Makefile: added.
7392
7393 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7394
7395         Added librarian to MSVC build:
7396         * all.dsp
7397         * sdcc.dsw
7398         * support\librarian\librarian.dsp
7399
7400         'configure' not needed for librarian, removed:
7401         * support\librarian\configure
7402         * support\librarian\configure.in
7403         * support\librarian\config_in.h
7404         * support\librarian\Makefile.in
7405
7406         Hopefully these ones built the librarian and the rest of sdcc properly:
7407         * Makefile
7408         * Makefile.common.in
7409
7410         Messed up 'configure', so revert to previous version:
7411         * configure
7412         * configure.in
7413
7414 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7415
7416         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7417         there, while the mantissa of a double is "only" 53 bits wide.
7418
7419 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7420
7421         Adding sdcclib to the build.  MSVC project coming soon.
7422         Files added/changed:
7423
7424         * support\librarian\clean.mk
7425         * support\librarian\configure
7426         * support\librarian\configure.in
7427         * support\librarian\config_in.h
7428         * support\librarian\Makefile.bcc
7429         * support\librarian\Makefile.in
7430         * support\librarian\sdcclib.c
7431         * Makefile.bcc
7432         * Makefile
7433         * Makefile.common.in
7434         * configure
7435         * configure.in
7436
7437 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7438
7439         Linker now complaints if linked modules have conflicting options, for
7440         example, one compiled using --model-large and another one compiled with
7441         --model-small.  The following files were modified:
7442
7443         * as\mcs51\asdata.c
7444         * as\mcs51\aslink.h
7445         * as\mcs51\asm.h
7446         * as\mcs51\asmain.c
7447         * as\mcs51\asout.c
7448         * as\mcs51\i51pst.c
7449         * as\mcs51\lkdata.c
7450         * as\mcs51\lklibr.c
7451         * as\mcs51\lkmain.c
7452         * as\z80\asdata.c
7453         * as\z80\asm.h
7454         * as\z80\asmain.c
7455         * as\z80\asout.c
7456         * as\z80\z80pst.c
7457         * link\z80\aslink.h
7458         * link\z80\lkdata.c
7459         * link\z80\lklibr.c
7460         * link\z80\lkmain.c
7461         * src\SDCCglue.c
7462
7463 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7464
7465         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7466         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7467
7468 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7469
7470         * src/z80/mappings.i: fix _mul[us][int,long] entries
7471
7472 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7473
7474         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7475
7476 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7477
7478         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7479         * support/regression/tests/bitopcse.c: added
7480         fixed warning:
7481         * src/avr/gen.c:
7482         * src/pic/gen.c:
7483         * src/pic16/gen.c:
7484         * src/z80/gen.c:
7485         * src/xa51/gen.c:
7486
7487 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7488
7489         added support for new library format to z80, gbz80 linkers:
7490         *link/z80/aslink.h
7491         *link/z80/lklex.c
7492         *link/z80/lklib.c
7493         *link/z80/lklist.c
7494
7495 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7498         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7499
7500 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         added DUMMY_READ_VOLATILE:
7503         * src/SDCC.y:
7504         * src/avr/gen.c:
7505         * src/xa51/gen.c:
7506         * src/z80/gen.c:
7507         * src/pic/gen.c:
7508         * src/pic16/gen.c:
7509         * src/mcs51/gen.c:
7510         * src/ds390/gen.c:
7511         * src/SDCCcse.c (algebraicOpts): many improvements
7512         * src/SDCCcse.h: removed algebraicOpts()
7513         * src/SDCCicode.c (picDummyRead): added
7514
7515 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7516
7517         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7518         "Insufficient space in data memory".
7519
7520 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7521
7522         * src/mcs51/gen.c: fixed bug #771358
7523         * src/z80/gen.c: fixed bug #759087
7524
7525 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7526
7527         * src/pic16/glue.c: minor cleanup by Vangelis
7528
7529 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7530
7531         * device/include/regc515c.h: fixed #758477
7532         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7533         * device/lib/_gptrput.c: saved a few bytes
7534         * my tab spacing is 8, yours too?)
7535         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7536         * device/lib/serial.c: process RX bytes earlier than TX bytes
7537         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7538
7539 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7540
7541         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7542
7543 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7544
7545     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7546
7547 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7548
7549         * device/lib/Makefile.in: bad fix, reverted to 1.43
7550
7551 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         * device/lib/Makefile.in: added missing z80 object files
7554
7555 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7558         pic16 progress by Vangelis:
7559         * src/SDCCglobl.h:
7560         * src/SDCCmain.c:
7561         * src/pic/Makefile:
7562         * src/pic:
7563         * pic/Makefile:
7564         * pic16/device.c:
7565         * pic16/device.h:
7566         * pic16/gen.c:
7567         * pic16/gen.h:
7568         * pic16/genarith.c:
7569         * pic16/glue.c:
7570         * pic16/main.c:
7571         * pic16/pcode.c:
7572         * pic16/pcode.h:
7573         * pic16/pcodepeep.c:
7574         * pic16/peeph.def:
7575
7576 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7577
7578     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7579
7580 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7581
7582     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7583     added gbz80 build to MSVC project.
7584     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7585     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7586     from 8051 stuff and setup so it links using a .lnk file.
7587
7588 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7589
7590     * support/librarian/sdcclib.c: sdcc librarian.
7591     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7592     with sdcclib.
7593
7594 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7595
7596     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7597
7598 2003-07-02  Borut Razem <borut.razem AT siol.net>
7599
7600         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7601         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7602         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7603         src/xa51/main.c, src/z80/main.c:
7604         virtualization of glue() function: each port has it's own glue function,
7605         which is accessed by do_glue function pointer in PORT.general structure
7606
7607 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7608
7609         * DS800C400 fun, improved ROM interface and tinibios.
7610
7611 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7612
7613         * More support for DS80C400. Now includes beginning of interface to ROM.
7614
7615 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7618
7619 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7620
7621         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7622
7623 2003-06-19  Borut Razem <borut.razem AT siol.net>
7624
7625         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7626
7627 2003-06-19  Borut Razem <borut.razem AT siol.net>
7628
7629         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7630         fixed Z80 port - crt0.o: cannot open.
7631
7632 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7633
7634         * support/Util/MySystem.c (merge_command): revert bad fix
7635
7636 2003-06-18  Borut Razem <borut.razem AT siol.net>
7637
7638         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7639
7640 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7641
7642         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7643         option --use-stdout sends errors to stdout instead of stderr.
7644
7645 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7646
7647         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7648
7649 2003-06-15  Borut Razem <borut.razem AT siol.net>
7650
7651         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7652         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7653         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7654         fixed width array of pointers replaced with sets;
7655         multiple include and lib paths ared transferred to preprocessor and linker
7656         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7657         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7658         fixed width array of pointers
7659         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7660         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7661         fixupPath(), getPathDifference()
7662         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7663         fixed width array of pointers
7664
7665 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7666
7667         * src/pic16/ralloc.c: fix warnings
7668         * src/pic16/pcode.c: fix warning
7669
7670 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7671
7672          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7673         know all the details, but essentially this set of changes enable
7674         the pic16 port to generate movff instructions and generate assembler
7675         directives,
7676         * src/SDCCmain.c:
7677         * src/pic16/gen.c:
7678         * src/pic16/glue.c:
7679         * src/pic16/pcode.c:
7680         * src/pic16/device.c:
7681         * src/pic16/main.c:
7682         * src/pic16/pcode.h:
7683         * src/pic16/pcoderegs.c:
7684         * src/pic16/ralloc.c:
7685         * src/pic16/ralloc.h:
7686
7687 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7688
7689         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7690         added option --vc, so sdcc errors and warnings are compatible with
7691         Microsoft Visual Studio.
7692
7693 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7694
7695         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7696           device/lib/libfloat.lib: added atof function.
7697
7698 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * doc/sdccman.lyx: updated to Lyx 1.3
7701         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7702         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7703         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7704
7705 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7706
7707         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7708
7709 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7710
7711         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7712           additions to the "related tools/documentation" section
7713
7714 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7717
7718 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7719
7720         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7721         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7722
7723 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         * doc/sdccman.lyx: fix double dash and other minor things
7726         * doc/Makefile: fix double dash
7727
7728 2003-05-28  Karl Bongers(patches from Martin Helmling)
7729         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7730           condition and ignore commands.
7731
7732 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7733
7734         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7735           is in parts still quite out of date, I did changes as far as I felt makes sense
7736           for a non-native english speaker.
7737           Please feel free to add to the manual or to correct my changes.
7738         * doc/Makefile: undid touching the date of intermediate tex files.
7739
7740 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7741
7742         * doc/sdccman.lyx: Manual has an index now
7743
7744 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7745
7746         Finalize muluint/mulsint and mululong/mulslong merging:
7747         * device/lib/_mulint.c
7748         * device/lib/_mullong.c
7749         * device/lib/gbz80/mul.s
7750         * device/lib/gbz80/stubs.s
7751         * device/lib/z80/mul.s
7752         * device/lib/z80/stubs.s
7753         * src/SDCCsymt.c (initCSupport)
7754
7755 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7756
7757         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7758         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7759           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7760           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7761           instead of /Zm500.
7762
7763 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7764
7765         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7766           the regression tests I'm not brave enough to enable 245.b, 245.c
7767         * doc/sdccman.lyx: added latex preamble for hyperref package.
7768           Using pdflatex this will give you a hyperlinked pdf file with
7769           bookmarks. (prepend '%' before /usepackage if this breaks something)
7770
7771 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7772
7773          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7774
7775 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7776
7777         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7778
7779 2003-05-21    <johan AT balder>
7780
7781         * src/SDCCglue.c (printIval): fixed bug #739934
7782
7783 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7784
7785         Applied patch from bug 737905 (renamed yylineo to mylineno):
7786         * src/altlex.c
7787         * src/SDCCast.c
7788         * src/SDCglobl.h
7789         * src/SDCC.lex
7790         * src/SDCCsymt.c
7791         * src/SDCCval.c
7792         * src/pic16/pcode.c: Cleaned warnings
7793         * src/pic16/pcodeflow.c: Cleaned warnings
7794         * src/pic16/pcoderegs.c: Cleaned warnings
7795
7796 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7797
7798         * src/pic16/pcode.c: Cleaned warnings
7799         * src/pic16/pcodepeep.c: Cleaned warnings
7800         * src/pic16/ralloc.c: Cleaned warnings
7801
7802 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7803
7804         * doc/sdccman.lyx: fixed bug 739745
7805         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7806
7807 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7808
7809         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7810         it can be defined with CFLAGS when running configure
7811         * src/SDCCmain.c: fixed compiling + linking with object files
7812
7813 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7814
7815         * configure.in: configure for pic16 port,
7816             added --disable-pic16-port
7817         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7818         * src/SDCCmain.c: linkOptions is changed to set *,
7819             added if/endif conditional macros to remove options help
7820             messages from optionsTable when a port is not configured, added
7821             support for the PIc16 port in the ports table, when executing
7822             the compiler with no port specified on command line, a default
7823             port is selected with the new macro DEFAULT_PORT which is
7824             defined in port.h, in setDefaultOptions() linkOptions is removed
7825             from initialization assignment, since now it is a set,
7826             parseCmdLine uses setParseWithComma for linkOptions, in
7827             linkEdit() linkOptions are accessed with new function indexSet()
7828             which returns the i'th item of a set variable. See SDCCset.c, in
7829             linkEdit() when calling buildCmdLine(), added linkOptions as
7830             last argument. Now users can pass arguments to gplink via the
7831             -Wl option, main() uses pic16glue() to glue up pic16 programs
7832         * src/SDCCpeeph.c: various changes to support pic16
7833         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7834             return the i'th item of the set
7835         * src/SDCCset.h: added function prototype for indexSet()
7836         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7837         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7838         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7839             added macro DEFAULT_PORT
7840         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7841         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7842             generated
7843         * src/pic16/glue.c: commented out some error producing lines
7844         * src/pic16/main.c: __config directives are commented out to stop
7845             gpasm complaining and test the linkage with gplink, _linkCmd and
7846             _asmCmd changed to be more gplink and gpasm friendly
7847         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7848             produced an error when parsed, peep rule 12 is added to utilize
7849             movff, but it is commented out since the pCode does not support
7850             yet a command with 2 address arguments
7851
7852 2003-05-18    <johan AT balder>
7853
7854         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7855         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7856 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7857
7858         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7859   Added feature to script commands from file.
7860
7861 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7862
7863         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7864         * src/SDCCutil.c: include ctype.h for win32
7865
7866 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7867
7868         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7869
7870 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7871
7872         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7873   Fixed so you can set breakpoints prior to run, run does not stop
7874   on entry now.  Add tbreak.  Other enhancements and fixes for use
7875   with ddd.
7876
7877 2003-05-12  Borut Razem <borut.razem AT siol.net>
7878
7879         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7880
7881 2003-05-11  Borut Razem <borut.razem AT siol.net>
7882
7883         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7884         the path of bin directory, so that PATH is the only env. variable, which has to be set
7885         in case of standard installation.
7886         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7887         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7888         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7889
7890 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7891
7892         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7893         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7894         temp files are in the port dir; clean the gen/test directory when
7895         generating new test.c
7896         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7897         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7898         * support/regression/tests/zeropad.c: added
7899
7900 2003-05-09    <johan AT balder>
7901
7902         * src/SDCCglue.c: fixed bug #597940
7903
7904 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7905
7906         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7907   cache sfr, optimize next,step, fix off by one sourceline,
7908   support ddd list function.
7909         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7910
7911 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7912
7913         * support/regression/HTMLgen.py: added compare_s2f()
7914         * support/regression/Makefile: redo 1.27
7915         * support/regression/generate-cases.py: redo 1.5
7916
7917 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7918
7919         * support/regression/tests/float.c: workaround 33 bit hex constant
7920         * support/regression/tests/simplefloat.c: fix division for host
7921
7922 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7923
7924         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7925         that tame's the PIC's over-aggressive optimizer.
7926
7927 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7928
7929          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7930          support for MSVC.
7931
7932 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7933
7934         Initial support for DS80C400. "Hello world" runs on TINIm400
7935         (with polled I/O).
7936
7937 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7938
7939          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7940          * Some notes on ddd usage added in debugger/README
7941          Martin Helmling adding more features and fixes for ddd GUI debugger.
7942          Code added for nexti, stepi, up, down, and other adjustments.
7943
7944 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7945
7946         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7947         * src/pic/peeph.def Added two rules to optimize carry manipulation
7948         * src/pic/* removed debug printfs
7949
7950 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * debugger/mcs51/cmd.c: added header newalloc.h
7953
7954 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * as/Makefile: new EXEEXT
7957         * as/z80/Makefile: remove trailing slash of BUILDIR
7958         * as/z80/clean.mk: new EXEEXT
7959         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7960         * support/cpp2/Makefile.in: new EXEEXT
7961         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7962
7963 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7966         EXEEXT was introduced to fix all related problems with targets
7967         "clean", "install" and "uninstall"; a couple of further flaws
7968         especially with "clean" have been fixed too
7969         * as/mcs51/Makefile.in
7970         * as/mcs51/clean.mk
7971         * as/z80/Makefile
7972         * Makefile
7973         * clean.mk
7974         * debugger/mcs51/Makefile.in
7975         * debugger/mcs51/clean.mk
7976         * link/z80/Makefile
7977         * link/z80/Makefile.in
7978         * link/z80/clean.mk
7979         * link/Makefile
7980         * packihx/Makefile.in
7981         * packihx/clean.mk
7982         * sim/ucsim/Makefile
7983         * sim/ucsim/clean.mk
7984         * sim/ucsim/avr.src/Makefile.in
7985         * sim/ucsim/avr.src/clean.mk
7986         * sim/ucsim/s51.src/Makefile.in
7987         * sim/ucsim/s51.src/clean.mk
7988         * sim/ucsim/xa.src/Makefile.in
7989         * sim/ucsim/xa.src/clean.mk
7990         * sim/ucsim/z80.src/Makefile.in
7991         * sim/ucsim/z80.src/clean.mk
7992         * sim/ucsim/main_in.mk
7993         * sim/ucsim/packages_in.mk
7994         * sim/ucsim/gui.src/Makefile.in
7995         * sim/ucsim/gui.src/serio.src/Makefile.in
7996         * sim/ucsim/gui.src/serio.src/clean.mk
7997         * src/Makefile.in
7998         * src/clean.mk
7999         * support/cpp2/Makefile.in
8000         * support/cpp2/clean.mk
8001         * support/makebin/Makefile
8002         * support/makebin/clean.mk
8003         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8004         * doc/sdccman.lyx: --program-suffix no longer needed
8005
8006 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8007
8008          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8009          Martin Helmling added support for ddd GUI debugger.
8010          Code added to display assembly, set variables, and other commands
8011          to interface to ddd.
8012
8013 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * as/Makefile: fix target clean
8016         * as/clean.mk: fix target clean
8017         * as/z80/clean.mk: fix target clean
8018
8019 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8020
8021         * Makefile.common.in: added  AT EXEEXT AT
8022         * configure.in: removed all mingw32 stuff
8023         * configure: rebuilt from configure.in
8024         * doc/sdccman.lyx: updated section "installation"
8025         * support/scripts/sdcc_mingw32: adapted to configure
8026         * support/scripts/sdcc_cygwin_mingw32: added
8027
8028 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8029
8030         * src/pic Added object file support for the PIC port
8031         * src/pic Applied patch from Craig Franklin (this started the object file support)
8032         * src/regression Updated the PIC regression tests for object files
8033
8034 2003-04-20  Borut Razem <borut.razem AT siol.net>
8035
8036         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8037           lklex.c: In function `getfid':
8038           lklex.c:203: warning: array subscript has type `char'
8039         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8040           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8041         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8042           stack handling macros
8043
8044 2003-04-19  Borut Razem <borut.razem AT siol.net>
8045
8046         * "handling space characters in file path" task:
8047         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8048         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8049         * support/Util/MySystem.h: make it self-sufficient
8050         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8051           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8052           handling space characters in file path
8053         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8054           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8055         * support/Util/MySystem.c: handling space characters in executable's path
8056
8057 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * as/z80/Makefile: fix permanent rebuild of z80
8060         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8061         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8062
8063 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8064
8065         * src/SDCCopt.c: add special case optimization to replace modulo by
8066           a power of two with a bitwise AND.
8067
8068 2003-04-18    <johan AT balder>
8069
8070         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8071
8072 2003-04-17    <johan AT balder>
8073
8074         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8075         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8076
8077 2003-04-13  Borut Razem <borut.razem AT siol.net>
8078
8079         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8080         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8081           fixed mingw problem in adl_NORMALIZE_PATH
8082
8083 2003-04-12  Borut Razem <borut.razem AT siol.net>
8084
8085         * fixed "#pragma SAVE/RESTORE can not be nested":
8086         * src/SDCC.lex: reworked pragma handling functions
8087         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8088         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8089
8090 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8091
8092         * src/SDCCutil.c (pathEquivalent): defined but not used
8093         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8094         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8095         * configure: rebuilt from configure.in
8096         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8097         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8098         * device/include/Makefile.in: replace sdcc_datadir
8099         * device/lib/Makefile.in: replace sdcc_datadir
8100         * Makefile.common.in: add LDFLAGS from configure
8101         * packihx/Makefile.in: use LDFLAGS
8102         * src/Makefile.in: use LDFLAGS
8103         * support/cpp2/Makefile.in: add LDFLAGS from configure
8104         * support/makebin/Makefile: use LDFLAGS
8105         * .version: bumped version number to 2.3.5
8106
8107 2003-04-12  Borut Razem <borut.razem AT siol.net>
8108
8109         * completed "different paths" task:
8110         * src/SDCCmacro.c: fixed bug in handling quotes
8111         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8112         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8113
8114 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8115
8116         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8117
8118 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8119
8120         * ds390/gen.c ds390/peeph.def: fix bug 706781
8121
8122 2003-04-11  Borut Razem <borut.razem AT siol.net>
8123
8124         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8125
8126 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8127
8128         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8129         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8130          set - this bit used to not be set...).
8131         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8132           bad code in PIC Port
8133         * src/regression/and2.c added to test bug 609268
8134         * src/regression/Makefile added and2.c to regression test
8135
8136
8137 2003-04-08    <johan AT CP255758-A>
8138
8139         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8140         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8141         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8142
8143 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8144
8145         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8146         fix bug #487815
8147         * support/cpp2/Makefile.in: fix bug #487815
8148         * configure: rebuilt from configure.in
8149         * Makefile.common.in: docdir changed, new path suffixes
8150         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8151         * sdcc_vc_in.h: reflect changes from sdccconf.h
8152         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8153         * src/SDCCutil.h: remove BINDIR hack
8154         * doc/sdccman.lyx: update new path hierarchy
8155
8156 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8157
8158         * src/SDCCpeeph.c: added okToRemoveSLOC test
8159
8160 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8161
8162         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8163
8164 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8165
8166         * src/SDCCpeeph.c: added labelIsReturnOnly test
8167         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8168
8169 2003-04-05    <johan AT balder>
8170
8171         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8172         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8173         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8174         * src/SDCCast.c: fixed a warning
8175         * src/SDCCast.h: fixed a warning
8176         * src/SDCCicode.c (operandFromAst): fixed a warning
8177
8178 2003-04-04    <johan AT balder>
8179
8180         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8181         * src/SDCCast.c (decorateType): fixed bug #715076
8182         * src/SDCC.y: fixed bug #702907
8183
8184 2003-04-03    <johan AT balder>
8185
8186         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8187         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8188         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8189         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8190         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8191
8192 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8193
8194         * _decdptr.c: fix return values
8195         * _gptrget.c: fix return values
8196         * _gptrgetc.c: fix return values
8197         * _gptrput.c: fix return values
8198         * _mulint.c: fix return values
8199         * as/z80/Makefile: fix 'make -j' problem
8200
8201 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8202
8203         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8204         * configure.in: big cleanup, updated to autoconf 2.5x
8205         * configure: rebuilt from configure.in
8206         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8207         * sdcc_vc_in.h: reflect changes from sdccconf.h
8208         * doc/Makefile: fixed a flaw in "make install"
8209
8210 2003-04-02    <johan AT balder>
8211
8212         * src/ds390/gen.c (genCmp): no comments
8213         * src/mcs51/gen.c (genCmp): no comments
8214         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8215         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8216
8217 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * support/regression/generate-cases.py: place generated file in given sub directory
8220         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8221         * support/regression/Makefile: improvements for 'make -j';
8222         side effect: it's simpler and faster now
8223
8224 2003-03-31  Borut Razem <borut.razem AT siol.net>
8225
8226         * src/z80/main.c: link-{port} and as-{port} defined without path
8227         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8228
8229 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8230
8231         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8232
8233 2003-03-30  Borut Razem <borut.razem AT siol.net>
8234
8235         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8236           changed type of list parameter to set
8237         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8238         * src/port.h: changed type of do_assemble() parameter to set
8239         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8240           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8241           definition of "cppoutfilename" macro with NULL value in preProcess()
8242         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8243         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8244         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8245           replaced with set *binPathSet
8246         * shash_add() deallocates the item, if allready exsists, before adding the new one
8247         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8248
8249 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8250
8251         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8252           a nested for loop bug in the PIC port
8253         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8254           for loops
8255
8256 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8257
8258         * support/Util/dbuf.h: remove C++ stuff to make it portable
8259
8260 2003-03-28  Borut Razem <borut.razem AT siol.net>
8261
8262         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8263           literal strings in stringLiteral()
8264         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8265         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8266           to the project
8267
8268 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8269
8270         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8271
8272 2003-03-26    <johan AT balder>
8273
8274         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8275         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8276         * src/SDCCast.c (decorateType): fixed " -v < 3"
8277
8278 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8279
8280         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8281         Added Lenny Story's debug infrastructure changes:
8282         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8283         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8284         * src/cdbFile.c: added
8285         * src/SDCCdebug.c: added
8286         * src/SDCCdebug.h: added
8287         * src/SDCCast.c (createFunction)
8288         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8289         * src/SDCCmain.c (parseCmdLine, main)
8290         * src/SDCCmem.c (redoStackOffsets)
8291         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8292         * src/SDCCsymt.h
8293         * src/common.h
8294         * src/avr/gen.c (genAVRCode)
8295         * src/ds390/gen.c (gen390Code)
8296         * src/mcs51/gen.c (gen51Code)
8297         * src/pic/gen.c (genpic14Code)
8298         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8299         * src/xa51/gen.c (genXA51Code)
8300         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8301
8302 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8303
8304         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8305         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8306
8307 2003-03-22    <johan AT balder>
8308
8309         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8310
8311 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8312
8313         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8314         * doc/cdbfileformat.lyx: added, written by Lenny Story
8315         * doc/Makefile: added cdbfileformat.lyx
8316         * doc/clean.mk: added cdbfileformat.lyx
8317
8318 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8319
8320         * src/mcs51/peeph.def: fix bug #705773
8321
8322 2003-03-20    <johan AT balder>
8323
8324         An sfr/sbit can have an "at #" AND an initializer
8325         * src/SDCCsymt.c (checkSClass):
8326         * src/SDCCmem.c (allocGlobal):
8327         * src/SDCCmem.c (allocLocal):
8328         * src/SDCCast.c (createBlock):
8329
8330 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8331
8332         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8333
8334 2003-03-16    <johan AT balder>
8335
8336         Undid the hackup of const and volatile, the problem is much bigger
8337         * src/SDCC.y:1.65
8338         * src/SDCCast.c:1.171
8339         * src/SDCCglue.c:1.138
8340         * src/SDCCicode.c:1.146
8341         * src/SDCCsymt.c:1.150
8342         * src/SDCCval.c:1.65
8343
8344 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8347         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8348
8349 2003-03-13    <johan AT balder>
8350
8351         Hackup const and volatile modifiers in type chains a bit:
8352         * src/SDCC.y:1.63
8353         * src/SDCCast.c:1.169
8354         * src/SDCCglue.c:1.136
8355         * src/SDCCicode.c:1.143
8356         * src/SDCCsymt.c1.146
8357         * src/SDCCsymt.h1.59
8358         * src/SDCCval.c:1.63
8359
8360 2003-03-12    <johan AT balder>
8361
8362         * src/SDCCBBlock.h: more LRH debugging junk
8363         * src/SDCCcflow.h: more LRH debugging junk
8364         * src/SDCCloop.c: more LRH debugging junk
8365         * src/SDCC.y (struct_declaration): fixed bug #697590
8366         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8367         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8368         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8369
8370 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8371         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8372         test function names must now match exactly).
8373         * src/SDCCcse.c: added special case in findCheaperOp to allow
8374         extending a short integer. Makes less awful code for bug 700121 test case.
8375
8376 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8377
8378         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8379         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8380
8381 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8382
8383         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8384         actually called (operandsNotEqual() was called for all
8385         operandsNotEqualX tests).
8386
8387 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8388
8389         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8390         with shorter literals. Fixes bug 700121.
8391
8392 2003-03-11    <johan AT balder>
8393
8394         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8395
8396 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8399         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8400
8401 2003-03-10  Borut Razem <borut.razem AT siol.net>
8402
8403         * src/SDCCmain.c: pipe preprocessor's output
8404         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8405         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8406         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8407         which closes all pipes in pipeSet set
8408         * src/SDCCset.c: free deleted item in function deleteSetItem()
8409         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8410         moved from z80 to src subproject
8411         * .version: increased version number to 2.3.4
8412
8413 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8414
8415         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8416         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8417         * support/regression/ports/xa51/spec.mk: fix typo
8418
8419 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8420
8421         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8422
8423 2003-03-09  Borut Razem <borut.razem AT siol.net>
8424
8425         * src/SDCCmain.c: pipe preprocessor's output
8426         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8427         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8428         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8429         which closes all pipes in pipeSet set
8430         * src/SDCCset.c: free deleted item in function deleteSetItem()
8431         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8432         moved from z80 to src subproject
8433
8434 2003-03-09  Borut Razem <borut.razem AT siol.net>
8435
8436         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8437         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8438         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8439         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8440         * src/SDCCglobl.h: unification of WIN32 native definitions
8441
8442 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8443
8444         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8445
8446 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8447
8448         * src/configure.in:   check for endianess (even while cross-compiling)
8449         * src/configure:      check for endianess (even while cross-compiling)
8450         * src/configure_in.h: check for endianess (even while cross-compiling)
8451         * src/avr/gen.c:        remove old endianess stuff
8452         * src/mcs51/gen.c:      remove old endianess stuff
8453         * src/ds390/gen.c:      remove old endianess stuff
8454         * src/pic/gen.c:        remove old endianess stuff
8455         * src/pic/genarith.c:   remove old endianess stuff
8456         * src/pic/glue.c:       fix endianess check
8457         * src/pic16/gen.c:      remove old endianess stuff
8458         * src/pic16/genarith.c: remove old endianess stuff
8459         * src/pic16/glue.c:     fix endianess check
8460         * src/xa51/gen.c:       remove old endianess stuff
8461         * src/z80/gen.c:        fix endianess check
8462         * src/SDCCglue.c:       fix endianess check
8463         * src/ds390/peeph.def: fix bug 700036
8464
8465 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8468         * src/configure: find appropriate data-types on host for SDCC's int and long
8469         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8470         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8471         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8472
8473 2003-03-07    <johan AT balder>
8474
8475         Just a big NOOP:
8476                 some minor cleanups before the big shot
8477                 OP_DEFS and OP_USES now use Kevin's protection
8478                 new option --nolabelopt
8479
8480         * src/SDCCBBlock.c:
8481         * src/SDCCast.c,:
8482         * src/SDCCcflow.c:
8483         * src/SDCCcse.c:
8484         * src/SDCCicode.c:
8485         * src/SDCCicode.h:
8486         * src/SDCClabel.c:
8487         * src/SDCCloop.c:
8488         * src/SDCCmain.c:
8489         * src/ds390/ralloc.c:
8490         * src/mcs51/ralloc.c:
8491         * src/pic/ralloc.c:
8492         * src/xa51/ralloc.c:
8493         * src/z80/ralloc.c:
8494
8495 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8496
8497         * src/pic/pcode.c (get_op): fix 64 bit warnings
8498         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8499         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8500         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8501         * support/regression/tests/malloc.c: fix 64 bit warnings
8502
8503 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8504
8505         * src/mcs51/gen.c (genMinus): fixed bug 696436
8506
8507 2003-03-02  Borut Razem <borut.razem AT siol.net>
8508
8509         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8510
8511 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8512
8513         * configure.in: test for mkstemp
8514         * sdccconf_in.h: add HAVE_MKSTEMP
8515
8516 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8517
8518         * device/include/ctype.h: removed warning while using --stack-auto
8519         * device/include/malloc.h: removed warning while using --stack-auto
8520         * device/include/string.h: removed warning while using --stack-auto
8521
8522 2003-02-23  Borut Razem <borut.razem AT siol.net>
8523
8524         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8525         because NDEBUG is defined (see man assert)
8526         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8527
8528 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8529
8530         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8531         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8532
8533 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8534
8535         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8536         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8537
8538 2003-02-18    <johan AT balder>
8539
8540         * as/mcs51/asmain.c (asmbl): module can start with a digit
8541         * as/z80/asmain.c (asmbl): module can start with a digit
8542
8543 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8544
8545         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8546         * src/asm.c: fix pipe() for Mingw32
8547
8548 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8549
8550         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8551         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8552         make -V work again; --c1mode reads now from stdin
8553         * doc/sdccman.lyx: added --c1mode
8554         * support/Util/SDCCerr.c: new messages for c1 mode
8555         * support/Util/SDCCerr.h: new messages for c1 mode
8556         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8557
8558 2003-02-15    <johan AT balder>
8559
8560         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8561
8562 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8563
8564         * doc/sdccman.lyx: Environment variables, -o and other minor things
8565
8566 2003-02-14    <johan AT balder>
8567
8568         * src/xa51/main.c: before anyone really tries to use it :)
8569
8570         * Install doc's in share/sdcc/doc
8571         * removed some obsolete files
8572         * Do a proper make distclean and uninstall
8573         M Makefile.common.in
8574         R sdccbuild.sh
8575         M as/Makefile
8576         M device/include/Makefile.in
8577         M device/lib/Makefile.in
8578         M doc/sdccman.lyx
8579         M link/Makefile
8580         M sim/ucsim/doc/Makefile.in
8581         M src/clean.mk
8582         R src/avr/peeph.rul
8583         R src/xa51/peeph.rul
8584         M support/cpp2/Makefile.in
8585         M support/makebin/Makefile
8586
8587
8588 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8589
8590         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8591
8592 2003-02-10  Borut Razem <borut.razem AT siol.net>
8593
8594         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8595         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8596         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8597         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8598         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8599         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8600         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8601         src/z80/Makefile.bcc: Borland Makefile cleanup
8602         * as/z80/Makefile.bcc: Added Borland Makefile
8603         * support/cpp2/borland.h: Removed
8604
8605 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8606
8607         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8608         * src/SDCC.lex: new pragma NOIV
8609         * src/SDCCglobl.h: new pragma NOIV
8610         * src/SDCCmem.c: new pragma NOIV
8611
8612 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8613
8614         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8615
8616 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8617
8618         * src/SDCCmain.c: signal handling is switched off by --debug
8619         * doc/Makefile: small fix for install; use clean.mk again
8620         * doc/clean.mk: clean *.pdf and *.html too
8621
8622 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8623
8624         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8625         * device/lib/printfl.c: fix a ds390 bug by making it portable
8626         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8627         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8628         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8629         * debugger/mcs51/cmd.c: converted multi-line string literals
8630         * sim/ucsim/globals.cc: converted multi-line string literals
8631         * src/SDCCmain.c: introduced signal handler to remove temp files
8632         * doc/Makefile: small tweaks, implement clean
8633         * doc: removed generated files
8634
8635 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8636
8637         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8638         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8639         Address Record is not correctly generated for DS390."
8640
8641 2003-02-02  Borut Razem <borut.razem AT siol.net>
8642
8643         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8644         * as/mcs51/asm.h: fixed compilation with Borland C
8645         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8646         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8647         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8648         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8649         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8650         src/z80/Makefile.bcc: delete $(LIB) only if exist
8651         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8652
8653 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         * device/include/malloc.h: introduced NULL
8656         * device/include/string.h: introduced NULL
8657         * device/include/stdlib.h: introduced NULL
8658         * device/lib/_memcpy.c: removed NULL
8659         * device/lib/_strcat.c: removed NULL
8660         * device/lib/_strchr.c: removed NULL
8661         * device/lib/_strcmp.c: removed NULL
8662         * device/lib/_strcpy.c: removed NULL
8663         * device/lib/_strcspn.c: removed NULL
8664         * device/lib/_strlen.c: removed NULL
8665         * device/lib/_strncat.c: removed NULL
8666         * device/lib/_strncmp.c: removed NULL
8667         * device/lib/_strncpy.c: removed NULL
8668         * device/lib/_strpbrk.c: removed NULL
8669         * device/lib/_strrchr.c: removed NULL
8670         * device/lib/_strspn.c: removed NULL
8671         * device/lib/_strstr.c: removed NULL
8672         * device/lib/_strtok.c: removed NULL
8673         * device/lib/malloc.c: removed NULL, include own header
8674
8675 2003-02-02    <johan AT balder>
8676
8677         * 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
8678         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8679         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8680         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8681         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8682         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8683
8684 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8685
8686         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8687         area 'DATA'"
8688
8689 2003-02-01    <johan AT balder>
8690
8691         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8692
8693 2003-01-31    <johan AT CP255758-A>
8694
8695         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8696
8697 2003-01-30    <johan AT balder>
8698
8699         * src/SDCCBBlock.c: automatic bug detection
8700         * src/SDCCicode.c: automatic bug detection
8701
8702 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8703
8704         * src/SDCCglobl.h:   now --xram-size 0 works
8705         * src/SDCCmain.c:    now --xram-size 0 works
8706
8707 2003-01-29    <johan AT balder>
8708
8709         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8710
8711 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8712
8713         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8714         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8715         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8716         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8717         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8718         * src/SDCCmain.c:    Added options --xram-size and --code-size
8719
8720 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8721
8722         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8723         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8724
8725 2003-01-27    <johan AT balder>
8726
8727         * src/SDCC.y: fixed bug #613764
8728
8729 2003-01-26    <johan AT balder>
8730
8731         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8732         * src/SDCCsymt.h: fixed bug #673374
8733         * src/SDCCglue.c: fixed bug #661910
8734         * src/SDCCast.c: fixed bug #458099 and 673374
8735
8736 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8737
8738         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8739         * as/mcs51/strcmpi.h: added
8740         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8741         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8742         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8743         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8744         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8745         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8746         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8747         * as/mcs51/Makefile.aslink: new module strcmpi
8748         * as/mcs51/Makefile.asx8051: new module strcmpi
8749         * as/mcs51/Makefil.bcc: new module strcmpi
8750         * as/mcs51/Makefile.in: new module strcmpi
8751         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8752
8753 2003-01-26    <johan AT balder>
8754
8755         * src/SDCCglue.c: reverted back to 1.124
8756         * src/SDCCast.c: reverted back to 1.156
8757         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8758
8759 2003-01-25    <johan AT balder>
8760
8761         * src/SDCCglue.c: A better fix for bug #661910
8762         * src/SDCCast.c: A better fix for bug #661910
8763         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8764
8765 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8766
8767         * src/Makefile.in: remove spawn.o
8768         * src/SDCCmain.c: remove spawn.h
8769         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8770         * src/spawn.c: removed
8771         * src/spawn.h: removed
8772         * support/regression/ports/ds390/spec.mk: link with -r
8773
8774 2003-01-24    <johan AT CP255758-A>
8775
8776         * src/ds390/gen.c (aopOp): fixed bug #667458
8777         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8778         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8779         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8780
8781 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8782
8783         * src/mcs51/peeph.def: better assembler identation by Frieder
8784         * src/mcs51/gen.c: better assembler identation by Frieder
8785
8786 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8787
8788         * as/z80/string.h: removed for gcc 3.2
8789         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8790         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8791
8792 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8793
8794         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8795         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8796         * support/regression/Makefile: separate temp files for ports
8797         * support/regression/generate-cases.py: separate temp files for ports
8798         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8799         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8800
8801 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8802
8803         * moved tinitalk to device/examples/ds390
8804
8805 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8806
8807         * as/mcs51/lkmem.c: rflag is for DS390
8808         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8809         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8810                          (linkEdit): move mem- and map-files the same way as ihx-files
8811         * src/z80/main.c (_setDefaultOptions): removed --generic
8812         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8813         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8814         * src/pic/glue.c (picglue): --c1mode works again
8815         * src/pic16/glue.c (pic16glue): --c1mode works again
8816         * src/asm.c (printCLine): fix #660034
8817
8818 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8819
8820         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8821         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8822         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8823         * as/mcs51/lkmem (summary): better fix for sp problem
8824         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8825         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8826         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8827                                               remove --stack-after-data
8828
8829 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8830
8831         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8832         * src/SDCCutil.c (join): ugly bug: missing '\0'
8833         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8834
8835 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8836
8837         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8838         * src/port.h: typo
8839         * src/pic/main.c (_asmCmd): gpasm supports -o
8840         * src/z80/main.c: more general macros
8841         * device/lib/Makefile.in: remove intermediate files
8842
8843 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8844
8845         * .version: Bumped version number to 2.3.3
8846         * src/SDCCBBlock.c: new option -o
8847         * src/SDCCglobl.h: new option -o
8848         * src/SDCCglue.c: new option -o
8849         * src/SDCCmain.c: new option -o
8850         * src/asm.c: new option -o
8851         * src/ds390/main.c: new option -o
8852         * src/pic/glue.c: new option -o
8853         * src/pic/pcode.c: new option -o
8854         * src/pic/ralloc.c: new option -o
8855         * src/pic16/glue.c: new option -o
8856         * src/pic16/pcode.c: new option -o
8857         * src/pic16/ralloc.c: new option -o
8858         * src/z80/main.c: new option -o
8859         * device/lib/Makefile.in: use -o
8860         * support/regression/ports/ds390/spec.mk: use -o
8861         * support/regression/ports/gbz80/spec.mk: use -o
8862         * support/regression/ports/mcs51/spec.mk: use -o
8863         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8864         * support/regression/ports/z80/spec.mk: use -o
8865         * support/regression/ports/ucz80/spec.mk: use -o
8866         * support/regression/ports/xa51/spec.mk: use -o
8867         * support/regression/fwk/lib/timeout.c: fix usage string
8868
8869 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8870         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8871
8872 2003-01-07    <johan AT balder>
8873
8874         * src/SDCCast.c (decorateType): fixed bug #600035
8875
8876 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8877         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8878         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8879         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8880         * src/pic/pcode.c: outcommented unused variable to remove warnings
8881         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8882
8883 2003-01-06    <karl AT turbobit.com>
8884         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8885    regression tests.
8886
8887 2003-01-06    <johan AT balder>
8888
8889         * src/SDCCicode.c: fixed array add
8890
8891 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8892         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8893         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8894
8895 2003-01-04    <johan AT balder>
8896
8897         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8898
8899 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8900         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8901
8902 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8903         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8904         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8905
8906 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8907         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8908
8909 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8910         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8911
8912 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8913         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8914
8915 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8916
8917     * in \sdcc\as\mcs51\ changed these files in order to create an
8918     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8919     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8920     following files to include the previous two files: aslink.dsp,
8921     Makefile.aslink, Makefile.bcc, and Makefile.in.
8922
8923     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8924     .adb instead of .cdb
8925
8926 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8927
8928         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8929         value from option --iram-size.
8930
8931 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8932
8933         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8934         dram[] array.
8935
8936 2002-09-18    <wiml AT hhhh.org>
8937
8938         * SDCClrange.h: exposed setFromRange() and setToRange()
8939         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8940           packRegsForAccUse() (bug 542397)
8941         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8942           multiple times and emitting the fetch operations more than once
8943           added aopGetUsesAcc() function to allow binary operators to
8944           fetch their operands in the correct order; made genMinus() emit
8945           compact code for X = LITERAL - Y
8946
8947 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8948         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8949         sprintf() in line 1267.
8950
8951 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8952         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8953         like ports.
8954
8955 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8956         Changes to aslink (All the changes are marked with 'JCF'):
8957
8958         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8959         summary().
8960
8961         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8962         area BSEG.  Also moves, if possible, the DATA area down into the internal
8963         ram so more space is available.
8964
8965         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8966         sflag.
8967
8968         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8969         not bytes.  Function summary() which creates a memory usage summary
8970         file with extension .mem.  Reports of overlaping stack and small stack
8971         size.  If the space for the stack is less than 16 bytes aslink trows a
8972         warning.
8973
8974         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8975         the 8051.  Option 'y' for memory summary output file.
8976
8977         Changes to sdcc (All the changes are marked with 'JCF'):
8978
8979         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8980
8981         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8982         overlaying area for it (uses RegBankUsed[4]).
8983
8984         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8985         bank zero as used by default.  By default aslink locates the stack
8986         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8987         the creation of the .mem file.  Delegates the allocation of data area
8988         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8989         the begining of the stack area to aslink.
8990
8991         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8992         glue() in SDCCglue.c creates an area for it.
8993
8994 2002-09-03  Borut Razem <borut.razem AT siol.net>
8995         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8996         sdcc/src/pic/glue.c:
8997         introduced atexit() handler for teporay files removal in case of
8998         errors, assertions, ...
8999
9000 2002-08-29  Borut Razem <borut.razem AT siol.net>
9001         * sdcc/support/cpp2/auto-host_vc_in.h:
9002         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9003         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9004         Maybe there is a similar problem with BORLANDC? It should be checked!
9005
9006         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9007         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9008         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9009         was not executed, and the compiler (cl) launched a warning:
9010         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9011
9012 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9013         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9014
9015 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9016         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9017
9018         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9019           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9020           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9021           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9022           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9023           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9024           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9025         - added Release configuration in VS projects
9026         - review of compiler an linker options
9027         - VC .exe files are generated in bin_vc directory, not to interfere
9028           with binaries generated from other projects (cygwin, mingw, bcc ...)
9029
9030         * sdcc/src/yacc.dsp: added
9031
9032         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9033         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9034         and insert the version number definitions from .version
9035
9036         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9037
9038         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9039         added - genarate auto-host.h using auto-host_vc_in.h as template
9040
9041         * sdcc/sdcc_vc.h,
9042         removed from CVS, generated automatically
9043
9044 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9045         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9046
9047 2002-08-11  Borut Razem <borut.razem AT siol.net>
9048         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9049
9050 2002-08-10  Borut Razem <borut.razem AT siol.net>
9051         * src/SDCCmain.c (main):
9052         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9053         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9054         The consequence was that some temporary files were not removed.
9055
9056         * src/SDCCglue.c:
9057         unification of code in functions tempfilename() and tempfile():
9058         function tempnam() is defined in Visual Studio 6.0 and .NET
9059
9060         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9061
9062         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9063           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9064         - removed compiler command line option /WX: Treats all warnings as errors
9065         - update a list of source files, included into the project
9066
9067         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9068           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9069         changed project type to Generic Project so that can be correcly converted to VS.NET project
9070
9071         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9072
9073         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9074
9075         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9076
9077         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9078         added return 0 statements after assert() to make compiler happy
9079
9080         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9081         added newline in the def file to keep MSC compiler satisfied
9082
9083         * sdcc/src/z80/gen.c:
9084         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9085           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9086         - solved MSC error in function aopDump()
9087
9088         * sdcc_vc.h: define PREFIX as "\\sdcc"
9089
9090 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9091         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9092
9093 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9094         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9095         - Rewrote the register banking algorithm.
9096         - Added pCode live-range analysis to registers (for now, only non-used and
9097         singly-used registers optimized away)
9098
9099         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9100
9101         * 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.
9102
9103 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9104         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9105
9106 2002-04-22  Michael Hope  <michaelh AT vroom>
9107
9108         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9109
9110         * configure.in (DD_COPT): Added include support required for gbdk.
9111
9112         * .version: Bumped version number just to increase it.
9113
9114         * src/SDCCmain.c: Added -nostdinc to the default options.
9115
9116 2002-04-15  Michael Hope  <michaelh AT vroom>
9117
9118         * device/lib/z80/printf.c (sprintf): Added.
9119
9120         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9121
9122         * src/z80/peeph.def: Added transpose redundent load rule.
9123
9124         * src/z80/main.c: Added force callee saves for jaune.
9125
9126         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9127
9128         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9129
9130 2002-03-28  Johan Knol  <johan AT balder>
9131
9132         * src/SDCCval.c: fixed bug #532436
9133
9134 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9135         * /src/port.h:
9136         Added "char *Processor" field to the port structure.
9137
9138         * /src/SDCCmain.c:
9139         Added -p option. Allows port dependent processor to be specified.
9140
9141         * all ports:
9142         Initialized the new field char *Processor field to NULL in all ports
9143
9144         * /src/pic/*:
9145         Compiler generated registers for interrupt context saving
9146         were not getting allocated.
9147
9148 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9149
9150         * /src/SDCCast.c:
9151         Fixed left shift. Will promote the left side of a left shift
9152         if a) left shifting more than size of operand or b) when assigned
9153         to something size > size of left side
9154
9155 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9156         * src/pic/*
9157         tons of changes. Register allocation has been
9158         rewritten. Added customization for the various PICs. Flow
9159         analysis is restructured. ...
9160
9161         * src/pic/device.h:
9162         Added
9163
9164         * src/pic/device.c:
9165         Added. device.c is a PIC port hack to accomodate variations
9166         in PIC devices.
9167
9168 2002-03-13  Michael Hope  <michaelh AT vroom>
9169
9170         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9171
9172 2002-03-04  johanknol  <johanknol AT manik>
9173
9174         * /src/SDCCval.c: fixed
9175
9176         const unsigned char arr[][2] = { { 0, 1 } };
9177         t18.c:1: error: Initializer element is not constant
9178
9179 2002-03-04  bela  <bela AT manik>
9180
9181         * /device/include/mcs51reg.h:
9182         ds89c420 register definition update
9183
9184 2002-03-03    <johan AT FRIJA>
9185
9186         * support/Util/SDCCerr.c: did something, but don't no why anymore
9187
9188         * support/regression/tests/bug-524691.c: made it a little less shy
9189
9190         * src/SDCCast.c (decorateType): fixed bug #524697
9191
9192         * src/SDCCast.c: made some lineno improvements
9193
9194         * src/SDCCval.c (getNelements): changed warning to error
9195
9196         * src/SDCCglue.c (printIvalArray): changed warning to error
9197
9198         * src/SDCCicode.c: fixed a warning for mingw
9199
9200         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9201
9202         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9203
9204 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9205
9206         * src/ds390/peeph.def:
9207         Added some more peephole rules
9208
9209         * src/ds390/gen.c: Various fixes & enhancements
9210
9211         * src/SDCClrange.c, src/SDCClrange.h:
9212         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9213
9214         * src/ds390/ralloc.c:
9215         various fixes & enhancements (ds390) specific
9216
9217         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9218         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9219         from rallocs.
9220
9221         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9222
9223 2002-03-02    <johan AT FRIJA>
9224
9225         * src/SDCCast.c (decorateType): fixed bug #524708
9226
9227         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9228
9229         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9230
9231 2002-03-01  Michael Hope  <michaelh AT vroom>
9232
9233         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9234
9235         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9236
9237 2002-03-01    <johan AT FRIJA>
9238
9239         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9240
9241         * src/SDCCast.c (decorateType): fixed bug #524209
9242
9243         * src/SDCCval.c (valNot): fixed bug #524195
9244
9245 2002-02-26    <johan AT balder>
9246
9247         * src/xa51/gen.c: fixed a warning
9248
9249         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9250
9251         * src/SDCCast.c (decorateType): fixed bug #522534
9252
9253 2002-02-23    <johan AT balder>
9254
9255         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9256
9257 2002-02-22    <johan AT balder>
9258
9259         * src/SDCCast.c: fixed bug #514865
9260
9261         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9262
9263 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9264
9265         * sdcc/src/SDCCloop.c:
9266         Previous fix was not good. basic blocks that have "break" or "return" are
9267         not really partof a loop , but live ranges used in these blocks should
9268         be live thru the entire loop, so set partOfLoop but don't add them to
9269         loop region
9270
9271 2002-02-21    <johan AT FRIJA>
9272
9273         * src/SDCCcse.c: fixed bug #514308
9274
9275 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9276
9277         * src/SDCCloop.c:
9278         Fixed BUG #519583. If a conditional block ended in a return/break
9279         statement inside a loop, it was not being considered part of the loop.
9280
9281         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9282
9283 2002-02-10  Karl Bongers <karl AT turbobit.com>
9284
9285         * debugger/*:
9286         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9287         with lots of comments and notes.
9288
9289         * device/examples/test2.c:
9290         Fix bug, "red" variable not being initialized(compiler complained).
9291
9292         * device/examples/Makefile, examples/test3.c:
9293         Add Makefile in device/examples folder, compiles test3.c
9294         for use as a multiple module SDCDB test case.
9295
9296         * sim/ucsim/cmd.src/cmdset.cc:
9297         Took out debug printfs in ucsim "next" command.
9298
9299         * sim/ucsim/xa.src:
9300         Karl and Johan start ucsim XA support.  Most dissassembly working,
9301         about 75% emulation done(plenty of work remaining).
9302
9303         * sim/ucsim/z80.src:
9304         Add Z80 support to ucsim, add test-ucz80 regression test,
9305         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9306         Notice z80 compiler fails on examples/test3.c/crc code.
9307
9308 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9309
9310         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9311         Added support for --parms-in-bank1
9312
9313         * src/ds390/peeph.def:
9314         added a few more peephole optimzations
9315
9316         * src/ds390/main.c:
9317         1) added __builtin_inp & __builtin_outp used to read in data of given length
9318            from a memory mapped port
9319         2) added __builtin_memcmp
9320         3) added __builtin_swapw swap bytes of a short
9321
9322         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9323         1) handle multiple send & receives from register bank1
9324         2) ralloc can now allocate DPTR1 to some liveRanges
9325
9326         * src/SDCCsymt.c, src/SDCCsymt.h:
9327         changes to handle multiple sends & receives
9328
9329         * src/SDCCptropt.h:
9330         added some pointer arithmetic optimization
9331
9332         * src/SDCCptropt.c:
9333         added some pointer arithmetic optimizations but not stable yet so not
9334         called from anywhere (will get this working shortly)
9335
9336         * src/SDCCopt.c: fixed for multiple sends & receives
9337
9338         * src/SDCCmain.c:
9339         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9340         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9341            set preprocessor defines (depending on options)
9342
9343         * src/SDCCicode.c, src/SDCCicode.h:
9344         changes made to handle multiple sends & receives
9345
9346         * src/SDCCglobl.h:
9347         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9348
9349         * src/SDCCcse.c, src/SDCCcse.h:
9350         added function findbackward def (to be used in upcoming optimization)
9351
9352         * src/SDCCcflow.c, src/SDCCcflow.h:
9353         added function returnAtEnd - to determine if a basic block terminates with
9354         a RETURN iCode
9355
9356         * src/SDCCast.c, src/SDCCast.h:
9357         added option parms-in-bank1
9358
9359         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9360         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9361         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9362         adjusted for --parms-in-bank1 option
9363
9364         * device/include/string.h:
9365         donot redefine "reentrant" keyword
9366
9367         * device/include/ds80c390.h: Added some more SFRs
9368
9369 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9370
9371         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9372
9373 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9374
9375         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9376
9377 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9378
9379         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9380
9381 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9382
9383         * Added --xram-movc option
9384
9385 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9386
9387         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9388
9389 2002-01-11  Johan Knol
9390
9391         * Added math lib of Jesus Calvino-Fraga
9392
9393 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9394
9395         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9396         * support/regression/Makefile: new target test-mcs51-stack-auto
9397         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9398
9399 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9400
9401         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9402
9403 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9404
9405         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9406
9407 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9408
9409         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9410
9411         * src/SDCCglue.h: add definition for printIvalChar()
9412
9413 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9414
9415         * src/SDCCast.c: fix #498138 by Johan
9416
9417         * src/SDCCglue.c: fix #498138 by Johan
9418
9419 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9420
9421         * support/regression/Makefile: fix clean
9422
9423         * support/regression/ports/ds390/support.c: fix transmission of last character
9424
9425 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9426
9427         * /sdcc/src/ds390/gen.c:
9428         a) improved computing address of stack variable
9429         b) took out some #if 0 code
9430         c) improved parmBytes adjustment
9431         d) improved genPlusIncr & genMinusIncr
9432         e) genCmp could generate bad code (when left assigned to DPTR)
9433         f) Fixed bug in hasInc
9434
9435         * /sdcc/src/ds390/ralloc.c:
9436         a) packRegsForSupport could mess up live information (Fixed)
9437         b) packRegsDPTRuse could be incorrect for left & right shift
9438
9439         * /sdcc/src/mcs51/ralloc.c:
9440         packRegsForSupport could mess up the live information (Fixed)
9441
9442         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9443
9444         * /sdcc/src/SDCCast.c:
9445         can reverse a loop even if function call is present as long
9446         as the loop control variable is local & is not passed as parameter
9447
9448 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9449
9450         * /sdcc/ChangeLog: *** empty log message ***
9451
9452         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9453         More builtin function additions for TININative
9454
9455         * /sdcc/src/ds390/ralloc.c:
9456         Had broken the regression testsuite
9457
9458         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9459
9460         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9461         Added funcattr hasStackParms will be set for reentrant functions when there
9462         are paramteres on the stack, this helps in minimizing frame pointer generation
9463         typeFromStr can handle function pointers now
9464
9465         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9466         *** empty log message ***
9467
9468 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9469
9470         * /src/ds390/gen.c, /src/ds390/main.c:
9471         More builtin function additions for TININative
9472
9473         * /src/ds390/ralloc.c:
9474         Had broken the regression testsuite
9475
9476         * /src/SDCCast.c: Fixed a bug in dumptree
9477
9478         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9479         Added funcattr hasStackParms will be set for reentrant functions when there
9480         are paramteres on the stack, this helps in minimizing frame pointer generation
9481         typeFromStr can handle function pointers now
9482
9483         * /doc/builtins.txt, /doc/TININative.txt:
9484         *** empty log message ***
9485
9486
9487 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9488
9489         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9490         ALPHA version for -mTININative
9491
9492         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9493         updated to reflect changes in the port structure
9494
9495         * /src/port.h:
9496         added function do_assemble (similar to do_link) if non-null this function
9497         will be called to do assembly (-mTININative) requires a multi command
9498         assembly
9499         added function genAssemblerEnd will be called to generate assembler Epilogue
9500
9501         * /src/SDCCsymt.c:
9502         added _JavaNative to debug info printing
9503
9504         * /src/SDCCmain.c: added option --tini-libid
9505         added port->do_assemble function (-mTININative) has a multi command assemble
9506
9507         * /src/SDCCglue.c: Disabled "constExpr" check
9508         added port->genAssemblerEnd function
9509
9510         * /src/SDCCglobl.h: Added option --tini-libid value
9511
9512         * /src/SDCCast.h:
9513         tookout optimizeCompare from the header (has no external references)
9514
9515         * /src/SDCCast.c: made one more function "static"
9516
9517 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9518
9519         * src/z80/mappings.i: Added z80asm support.
9520
9521         * src/z80/main.c: Added z80asm support on --asm=z80asm
9522
9523         * src/z80/gen.c: Fixed asm portability issues.
9524
9525         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9526
9527         * src/SDCCglue.c (printExterns): Added global/extern split.
9528
9529 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9530
9531         * support/regression/Makefile: added test for mcs51 model large
9532
9533         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9534
9535         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9536
9537 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9538
9539         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9540
9541 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9542
9543         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9544
9545         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9546
9547 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9548
9549         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9550
9551         * support/regression/tests/simplefloat.c: Port to mcs51.
9552
9553 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9554         * support/regression/tests/bug-485362.c: Added.
9555
9556         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9557
9558         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9559
9560         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9561
9562         * src/z80/gen.c (aopDump): Added a dump function.
9563
9564 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9565         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9566
9567         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9568
9569         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9570
9571         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9572
9573         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9574
9575         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9576
9577         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9578
9579         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9580
9581         * support/regression/ports/ds390/support.c: Use tinibios.
9582
9583         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9584
9585 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9586
9587         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9588         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9589
9590         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9591
9592         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9593
9594 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9595
9596         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9597
9598         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9599         (packRegsForIYUse): Created and optimised.
9600
9601 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9602
9603         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9604 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9605
9606         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9607
9608         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9609
9610         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9611
9612 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9613
9614         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9615
9616         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9617
9618 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9619
9620         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9621
9622         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9623
9624         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9625
9626 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9627
9628         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9629         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9630         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9631
9632         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9633
9634         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9635         (genNotFloat): Added.
9636         (genUminusFloat): Added.
9637
9638         * device/lib/z80/Makefile: Added floating pt stubs.
9639
9640         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9641
9642         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9643
9644         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9645
9646 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9647
9648         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9649
9650         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9651
9652         * sdcc/support/regression/Makefile: Add port ds390.
9653
9654         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9655
9656         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9657
9658         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9659
9660         * sdcc/support/regression/ports/ds390/support.c: Added.
9661
9662         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9663
9664         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9665
9666         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9667
9668 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9669
9670         * device/include/malloc.h: Added z80 and gbz80 support.
9671
9672         * device/lib/gbz80/heap.s: Added.
9673
9674         * device/lib/z80/heap.s: Added.
9675
9676         * device/lib/malloc.c: Added z80 and gbz80 support.
9677
9678         * support/regression/tests/malloc.c (testMalloc): Added.
9679
9680         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9681
9682         * support/regression/tests/bug-478094.c: Added.
9683
9684         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9685
9686 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9687
9688         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9689
9690         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9691
9692         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9693
9694         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9695
9696         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9697
9698 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9699
9700         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9701
9702 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9703
9704         * support/regression/tests/bug-477927.c: Added.
9705
9706         * src/z80/peeph.def: Added minor rules.
9707
9708         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9709
9710         * src/z80/peeph.def: Added jump optimisation modification.
9711
9712 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9713
9714         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9715
9716 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9717
9718         * support/regression/tests/funptrs.c: Added.
9719
9720 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9721
9722         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9723
9724 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9725
9726         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9727
9728         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9729
9730         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9731         (movLeft2ResultLong): Created.
9732
9733         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9734         (joinPushes): Added.  Joins two char pushes into a word push.
9735
9736 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9737
9738         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9739
9740         * support/makebin/Makefile (install): Added creation of dest dir.
9741
9742 2001-10-24 Karl Bongers <karl AT turbobit.com>
9743
9744         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9745
9746 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9747
9748         * src/z80/ralloc.c: Turned off faulty pack for one use.
9749
9750         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9751
9752         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9753
9754 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9755
9756         * support/regression/Makefile: Improved clean
9757
9758         * support/regression/ports/gbz80/spec.mk: Added clean
9759
9760         * support/regression/ports/host/spec.mk: Added clean
9761
9762         * support/regression/ports/z80/spec.mk: Added clean
9763
9764         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9765
9766         * support/regression/ports/mcs51/timeout.c: little improvements
9767
9768 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9769
9770         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9771
9772         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9773
9774         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9775
9776 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9777
9778         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9779
9780         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9781
9782 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9783         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9784
9785         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9786
9787         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9788
9789         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9790
9791         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9792
9793         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9794
9795         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9796
9797         * support/regression/tests/longor.c: Added.
9798
9799 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9800
9801         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9802
9803         * as/mcs51/aslink.h: define PATH_MAX
9804
9805         * as/mcs51/asm.h: define PATH_MAX
9806
9807         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9808
9809         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9810
9811         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9812
9813         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9814
9815         * src/SDCCglobl.h: define PATH_MAX
9816
9817         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9818
9819         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9820
9821 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9822
9823         * src/z80/gen.c (gencjneshort): Fixed
9824
9825         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9826
9827 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9828
9829         * support/regression/tests/bug-469671.c: Added.
9830
9831         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9832
9833 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9834
9835         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9836
9837         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9838
9839 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9840
9841         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9842
9843         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9844
9845         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9846
9847         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9848
9849         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9850
9851         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9852
9853         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9854
9855 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9856
9857         * 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.
9858
9859         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9860
9861         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9862
9863 2001-10-07    <johan AT FRIJA>
9864
9865         * device/lib/gets.c (gets): fixed the return value.
9866
9867 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9868         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9869
9870         * 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.
9871
9872         * 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.
9873
9874         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9875
9876         * src/pic/gen.c: Removed Safe_strdup.
9877
9878         * configure.in: Added option to enable libgc support.
9879
9880         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9881         (bitVectUnion): Optimised.
9882         (bitVectIntersect): Optimised.
9883         (bitVectBitsInCommon): Optimised.
9884         (bitVectCplAnd): Optimised.
9885
9886         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9887
9888 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9889
9890         * src/SDCCmain.c: distinguish between assembler debug and plain options
9891
9892         * src/avr/main.c:   remove standard assembler options
9893
9894         * src/ds390/main.c: remove standard assembler options
9895
9896         * src/mcs51/main.c: remove standard assembler options
9897
9898         * src/port.h: removed "PENDING" comment
9899
9900 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9901
9902         * src/device/lib/_mulint.c  : new, with assember functions
9903
9904         * src/device/lib/_mullong.c : new, with assember functions
9905
9906         * src/device/lib/_divuint.c : with assember functions
9907
9908         * src/device/lib/_divsint.c : with assember functions
9909
9910         * src/device/lib/_divulong.c: with assember functions
9911
9912         * src/device/lib/_divslong.c: with assember functions
9913
9914         * src/device/lib/_moduint.c : with assember functions
9915
9916         * src/device/lib/_modsint.c : with assember functions
9917
9918         * src/device/lib/_modulong.c: with assember functions
9919
9920         * src/device/lib/_modslong.c: with assember functions
9921
9922         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9923
9924         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9925
9926         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9927                                       replaced _mululong.c and _mulslong.c by _mullong.c
9928
9929 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9930
9931         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9932
9933 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9934
9935         * src/SDCCglue.c: test, if win32api is available for MINGW
9936
9937 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9938
9939         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9940         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9941         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9942         * support/regression/ports/host/spec.mk: removed GENERIC
9943         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9944         * support/regression/ports/z80/spec.mk: removed GENERIC
9945
9946 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9947
9948         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9949
9950         * support/regression/tests/bug-467035.c: Created.
9951
9952 2001-10-01    <johan AT FRIJA>
9953
9954         * src/SDCC.y: fixed bug #466586 part 1
9955
9956 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9957
9958         * SDCCicode.c: z80 has no generic pointers
9959         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9960
9961 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9962
9963         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9964
9965 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9966
9967         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9968
9969         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9970
9971 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9972
9973         * configure.in: Fixed up so that ucsim is only configured once.
9974
9975         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9976
9977         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9978         (getPathDifference): As above.
9979
9980         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9981
9982         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9983
9984 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9985         * .version: Updated to 2.3.1
9986
9987         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9988         Added copyright header.
9989
9990         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9991         (assemble): Added support for macro based assembler commands.
9992         (linkEdit): Added support for macro based linker commands.
9993         (preProcess): Changed the pre-processor to use macros.
9994         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9995         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9996
9997         * device/lib/z80/crt0.s: Added module name for debugging.
9998
9999 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10000
10001         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10002
10003         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10004
10005         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10006
10007         * src/Makefile.in: Added SDCCmacro and SDCCutil
10008
10009 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10010
10011         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10012
10013 2001-09-16    <johan AT FRIJA>
10014
10015         * 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.
10016
10017 2001-09-15    <johan AT FRIJA>
10018
10019         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10020         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10021
10022 2001-09-11    <johan AT FRIJA>
10023
10024         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10025
10026 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10027
10028         * support/regression/tests/bug-460444.c: Added test case.
10029
10030         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10031         (genCast): Added justification for all of the asserts.
10032
10033 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10034
10035         * support/regression/support.c: _xdata replaced by xdata
10036
10037         * support/regression/spec.mk: removed _generic
10038
10039 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10040
10041         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10042
10043         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10044         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10045
10046         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10047
10048         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10049
10050         * support/regression/tests/bug-460010.c: Added test case.
10051
10052         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10053
10054 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10055
10056         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10057
10058         * support/regression/testfwk.c: removed workaround for bug #436344
10059
10060         * support/regression/tests/bp.c: use less memory with mcs51
10061
10062         * support/regression/tests/bug-441448.c: use less memory
10063
10064         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10065
10066         * support/regression/collate-results.py: typo
10067
10068 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10069
10070         * support/regression/tests/fetchoverlap.c: Added new test case.
10071
10072         * support/regression/tests/bp.c: Added new test case.
10073
10074         * support/regression/tests/bug-448984.c: Added new test case.
10075
10076         * support/regression/tests/pow2shifts.c: Added new test case.
10077
10078         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10079         (genlshTwo): Fixed right shift for count > 8.
10080
10081         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10082
10083 2001-09-08    <johan AT FRIJA>
10084
10085         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10086
10087 2001-09-07    <johan AT FRIJA>
10088
10089         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10090
10091         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10092
10093 2001-09-06    <johan AT FRIJA>
10094
10095         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10096         * bernhard noted me at this: "() equals to (void)" (1.38)
10097
10098 2001-09-05    <johan AT FRIJA>
10099
10100         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10101
10102 2001-09-04    <johan AT FRIJA>
10103
10104         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10105
10106
10107 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10108
10109         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10110
10111 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10112
10113         * link/z80/aslink.h: Fixed path for PATH_MAX
10114
10115 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10116
10117         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10118
10119         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10120
10121         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10122
10123         * 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.
10124
10125 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10126
10127         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10128         (genCmp): Fixed up genCmp for the GB with longs.
10129
10130         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10131
10132         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10133
10134         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10135
10136         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10137
10138 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10139
10140         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10141
10142 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10143
10144         * 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.
10145
10146         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10147
10148 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10149
10150         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10151
10152         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10153
10154 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10155
10156   * sim/ucsim/configure:    little improvement of Cygwin-detection
10157   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10158   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10159   * support/regression/tests/bug-221100.c: small changes for mcs51
10160   * support/regression/tests/bug-221168.c: small changes for mcs51
10161   * support/regression/tests/bug-227710.c: small changes for mcs51
10162   * support/regression/tests/staticinit.c: small changes for mcs51
10163   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10164   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10165   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10166
10167 $Revision$