* src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
[fw/sdcc] / ChangeLog
1 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
4
5 2005-11-11 Raphael Neider <rneider AT web.de>
6
7         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
8         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
9           compute pointer's type from operand,
10           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
11           improved single bit reads, fixes bug #1353379
12
13 2005-11-09 Borut Razem <borut.razem AT siol.net>
14
15         * support/scripts/sdcc.nsi: added lib/pic to the package
16
17 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
18
19         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
20
21 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
22
23         * support/regression/tests/bug1348008.c: added
24         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
25         * support/regression/tests/bug1337835.c: updated comment
26
27 2005-11-06 Borut Razem <borut.razem AT siol.net>
28
29         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
30           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
31           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
32           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
33           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
34           dynamic construction of cl_error_class and derivates - 2.nd try
35
36 2005-11-05 Borut Razem <borut.razem AT siol.net>
37
38         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
39           bug, which caused Bus Errors on sparc solaris
40
41 2005-11-04 Borut Razem <borut.razem AT siol.net>
42
43         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
44           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
45           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
46           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
47           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
48           and derivates to resolve the initialization problem on OSX
49
50 2005-11-02 Borut Razem <borut.razem AT siol.net>
51
52         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
53           corrected typo - #include <winsock2.h>
54
55 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
56
57         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
58           (_asxxxx_mapping): added org directive for future enhancements
59
60 2005-11-01 Borut Razem <borut.razem AT siol.net>
61
62         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
63           enabled sockets on WIN32
64         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
65
66 2005-10-31 Borut Razem <borut.razem AT siol.net>
67
68         * support/regression/generate-cases.py: escape backslashes in {testcase}:
69           WIN32 backslash path delimiters should be escaped when used in C strings
70         * support/regression/tests/bitfields.c: exclude failing assertions for
71           __CYGWIN32__ and __MINGW32__ hosts
72
73 2005-10-30 Borut Razem <borut.razem AT siol.net>
74
75         * src/SDCCutil.c: corrected double comparison typo
76
77 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
78
79         * device/lib/medium/Makefile: added for new memory model medium
80         * device/include/asm/mcs51/features.h: updated for medium/pdata
81         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
82           added Multiply & Accumulate sbit's and MAC0_PAGE define
83         * device/include/mcs51/c8051f300.h: added sfr16 definitions
84         * device/include/mcs51/c8051f310.h: added sfr16 definitions
85         * device/lib/_mullong.c: update for medium model
86         * device/lib/incl.mk: added medium model
87         * doc/sdccman.lyx: documented medium model
88         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
89         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
90         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
91         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
92           (allocParms): set SCLS and OCLS to pdata for medium model
93         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
94           for pdata,
95           (powof2): return <0 if not power of 2
96         * src/avr/gen.c (genBitWise): use updated powof2
97         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
98           (shiftR2Left2Result): small optimization in setup, save acc when storing,
99           (shiftLLeftOrResult): use B if necessary
100         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
101         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
102         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
103         * support/regression/Makefile.in: added test-mcs51-medium
104         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
105
106 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
107
108         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
109         specifier unsigned
110         * device/lib/time.c (mktime): fixed bug 1334315
111
112 2005-10-28 Raphael Neider <rneider AT web.de>
113
114         * device/include/pic/p16f_common.inc: added common declarations
115         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
116
117 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
118
119         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
120           (aopPutUsesAcc): added to predict accumulator use,
121           (assignResultValue): save acc if necessary,
122           (genMinusDec): store result if indirectly addressed,
123           (genDivOneByte):  save acc if necessary,
124           (movLeft2Result): bugfix if left already in acc,
125           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
126             attention to accumulator use (esp. pdata),
127           (genReceive): receive pdata correctly
128         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
129         * src/SDCCicode.h: added isOperandInPagedSpace prototype
130
131 2005-10-27 Raphael Neider <rneider AT web.de>
132
133         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
134
135 2005-10-27 Raphael Neider <rneider AT web.de>
136
137         * .version: changed version to 2.5.4
138         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
139         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
140           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
141             arithmetics support routines
142         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
143         * device/lib/Makefile.in: also create installdir for pic
144
145         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
146           pic14 port as well
147         * src/pic/device.c (dump_sfr): rewritten to delegate register
148           placement to the linker (use `extern sym' rather than sym EQU addr),
149           (validAddress): fixed to check last specified address
150         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
151           (popGetLit): truncate literal value to 8 bit,
152           (popGet): moved assert to more appropriate place
153           (popGetExternal): create pCode operand from and mark the according
154             symbol as being `extern'
155           (popGetAddr): added sanity check on immediate's offset, provide
156             GPOINTER tag on demand
157           (aopPut): fixed for immediates,
158           (mov2w_op): move operand's address or contents to WREG (depending on
159             operand type), safer variant of mov2w,
160           (movwf,call_libraryfunc): NEW, handy abbreviations,
161           (get_argument_pcop,get_return_val_pcop,pass_argument,
162           get_returnvalue): interface for accessing function parameters and
163             return values,
164           (assignResultValuei,genRet): use new parameter/return value interface
165           (pic14_getDataSize): back to old version handling generic pointers,
166           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
167             provided implementation and/or fixed old one,
168           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
169             calls, removed legacy 8051 reference code
170           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
171           (loadSignToC): NEW, move the operands sign bit to CARRY,
172           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
173             genRightShiftSigned, accepts negative shift counts,
174           (setup_fsr): load FSR and adjust IRP (indirect memory access),
175           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
176             generic pointers, __data pointers and __code pointers,
177           (genUnpackBits,genPackBits): rewritten to work with generic pointers
178             and signed bitfields, limit bitfields to 8 bit,
179           (genDataPointerGet): fixed number of bytes read,
180           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
181           (genPointerGet,genPointerSet): fixed handling of __code pointers,
182             pointers to constant data are no longer assumed to point to __code
183             space, removed invalid pointer types,
184           (bitpatternFromVal): retrieve the PICs representation of an integer
185             or float literal,
186           (genDataPointerSet): fixed assigning to po_immediate operands,
187           (genGenPointerSet): implemented as library call,
188           (genIfx): fixed incorrect condition,
189           (genAddrOf): limit generic pointers' addresses to 2 bytes,
190             provide GPOINTER tag according to destination's storage class,
191           (genCast): added code to handle casting to generic pointers, added
192             sign-/zero extension of the result
193           (aop_isLitLike,op_isLitLike): fixed handling of immediates
194         * src/pic/gen.h: added macros to access IRP bit in STATUS register
195         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
196           extend the result
197         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
198           address/register resides in the shared banks
199           (emitSymbolToFile): improved to handle global and `pinned' symbols,
200             put all variables into separate sections (have the linker arrange
201             them)
202           (picglue): put init code and interrupt handlers in separate sections
203         * src/pic/main.c: added port specific options table, modified to PORT
204           structure to make GPOINTERs 3 byte, added pic14_options
205           (_pic14_do_link): private linking routine (update paths to libraries,
206             add libsdcc.lib by default)
207         * src/pic/main.h: declare pic14_options
208         * src/pic/pcode.c: fixed instructions i/o relations,
209           (RegCond): reverted to correct version,
210           (newpCodeOpLit): truncate literals to 8 bit,
211           (genericPrint): added debug output,
212           (getRegFromInstruction): fixed for various operand types, simplified
213           (BuildFlow): fixed broken handling of isntructions with labels
214           (LinkFlow): start at last instruction in flow (skip trailing comments),
215             pass the flow on to the next instruction after CALL
216           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
217           (insertPCodeInstruction): fixed inserting after a skip instruction,
218           (DoBankSelect): fixed for labeled instructions
219           (OptimizepBlock): honor --nopeep switch
220           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
221         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
222         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
223           (pCodeOptime2pCodes): allow disabling this optimization via
224             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
225             but is still buggy), started implementation of a dataflow based
226             pCode optimization (CSE + dead code elimination)
227           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
228         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
229           names are independant of the stack location and therefore portable across
230           devices
231
232 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
233
234         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
235           (selectSpil): fixed bug 1337835 by not spilling bit variables
236         * support/regression/tests/bug1337835.c: added test for this bug
237         * src/mcs51/peeph.def: restart after rule 3.c,
238           addded rules 263.x to optimize loading constants
239
240 2005-10-26 Raphael Neider <rneider AT web.de>
241
242         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
243         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
244           (genAssign): emit warning when casting literals to generic pointer
245             type, also applies when taking the address of a fixed variable,
246           (genCast): improved casting to generic pointers
247         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
248           extern variables, added verbose error message
249         * device/include/pic16/{string.h,errno.h}: added #pragma library c
250
251 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
252
253         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
254         carry must be complemented too
255         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
256         could be emitted by genMinus
257         * src/SDCCval.c (constVal): fixed bug 1305065
258
259 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
260
261         * src/SDCCast.c (addCast): added promotion for bit variables
262         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
263         promotion casts + optimisation
264         (optimizeGetWord): fix warning 'i' might be used uninitialized
265         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
266         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
267
268 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
269
270         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
271         all chars are promoted to int; promotion should be handled in SDCCast.c
272
273 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
274
275         * device/lib/_strcmp.c: Fixed bug 1326457
276
277 2005-10-11 Raphael Neider <rneider AT web.de>
278
279         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
280         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
281
282 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
283
284         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
285         * support/regression/tests/sfr16.c: added test for the sfr32 bug
286
287 2005-10-04 Raphael Neider <rneider AT web.de>
288
289         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
290           device/lib/pic16/pics.all: added pic18f1320
291         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
292
293 2005-09-30 Raphael Neider <rneider AT web.de>
294
295         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
296         * src/pic16/devices.inc: NEW, provides device descriptions
297         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
298
299 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
300
301         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
302           GETHBIT
303
304 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
305
306         * doc/sdccman.lyx: updated Highest Order Bit documentation,
307           documented Any Order Bit, Higher Order Byte and Higher Order Word
308         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
309         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
310           (optimizeGetAbit): new, to get any bit, not only the high bit,
311           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
312           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
313           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
314           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
315             RIGHT_OP: also try GETBYTE, GETWORD optimization,
316             GETABIT, GETBYTE, GETWORD: decorate them,
317           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
318           (ast_print): added GETABIT, GETBYTE, GETWORD
319         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
320         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
321           (geniCodeBinary): new generic binary icode,
322           (ast2iCode): added GETABIT, GETBYTE, GETWORD
323         * src/port.h: updated comment for PORT.hasExtBitOp
324         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
325           (genGetByte): new, to get a single byte,
326           (genGetWord): new, to get a word from a long,
327           (gen51Code): added GETABIT, GETBYTE, GETWORD
328         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
329
330 2005-09-23 Raphael Neider <rneider AT web.de>
331
332         * configure.in, configure: have device/lib/pic configured
333         * device/lib/Makefile.in: added model-pic14
334         * device/lib/clean.mk: added pic/ to clean rule
335         * device/lib/pic: added rudimentary pic14 library providing support
336           functions for multiplication/division/generic pointer access
337         * src/SDCCopt.c (convilong): mark support functions as extern
338           for pic14 port as well
339         * src/pic/gen.c (genMult): added assertions,
340           (genpic14Code): emit warning on unhandled iCodes
341         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
342         * src/pic/pcode.c (pCodeOpCopy),
343         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
344           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
345           SFR_REGISTER}), made safe for future extensions
346         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
347           instructions even if preceeded by SKIP instructions (also remove
348           them); removed unused code
349         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
350           prevents leaving parts of the structure uninitialized after copying
351
352 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
353
354         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
355           ago by me
356         * support/regression/tests/addsub.c: added test for the bug
357
358 2005-09-21 Raphael Neider <rneider AT web.de>
359
360         * device/include/pic16/pic18f1220.h,
361           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
362         * device/lib/pic16/Makefile.rules: added missing opening paren
363         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
364           are provided in genutils.c,
365           (genUminusFloat,genUminus,genCmpEq): added asserts on different
366           operand/result sizes,
367           (genCmp): assert on NULL pointers first, then check deref'ed values
368         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
369           result size
370
371 2005-09-18 Raphael Neider <rneider AT web.de>
372
373         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
374           as these are now unused,
375           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
376         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
377           local, avoids uninitialized pointer dereference on r->name
378         * src/pic16/ralloc.c (newReg): fixed indentation
379
380 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
381
382         * src/SDCCval.c (constVal): fixed bug 730366
383         * support/Util/SDCCerr.c,
384         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
385
386 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
387
388         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
389
390 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
393
394 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
395
396         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
397           (hex2dec): made hex_digit unsigned char, removed ascii dependance
398         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
399           (hex2dec): made hex_digit unsigned char, removed ascii dependance
400         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
401         * packihx/packihx.c (hexDigit): made c unsigned char
402         * as/mcs51/lklibr.c (fndsym),
403         * link/z80/lkgb.c (gb),
404         * link/z80/lklibr.c (fndsym),
405         * link/z80/lkrloc.c (relr),
406         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
407         * src/SDCC.lex (checkCurrFile, process_pragma),
408         * src/SDCCglue.c (spacesToUnderscores),
409         * src/SDCCmain.c (setParseWithComma, processFile),
410         * src/asm.c (tvsprintf, printCLine),
411         * src/avr/gen.c (emitcode, aopPut),
412         * src/ds390/gen.c (emitcode),
413         * src/hc08/gen.c (emitcode, emitinline),
414         * src/mcs51/gen.c (emitcode, genInline),
415         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
416           tokenizeLineNode),
417         * src/pic/ralloc.c (debugLog),
418         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
419           tokenizeLineNode),
420         * src/pic16/ralloc.c (debugLog),
421         * src/z80/main.c (_process_pragma):
422            made all ctype.h function calls safe
423         * src/SDCCopt.c: include math.h for fabs
424         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
425           and used them throughout the code to make ctype.h function calls safe
426         * src/ds390/main.c (asmLineNodeFromLineNode),
427         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
428         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
429            unsigned char*
430         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
431           (newpCodeAsmDir): made ctype.h function calls safe
432         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
433           pic16_emitcode):  made lbp unsigned char*
434         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
435           (pic16_newpCodeAsmDir): made ctype.h function calls safe
436         * src/xa51/gen.c (emitcode),
437         * src/z80/gen.c (_emit2): made lbp unsigned char*
438         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
439            char*
440
441 2005-09-05 Raphael Neider <rneider AT web.de>
442
443         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
444           access bank splitpoint
445
446 2005-09-05 Raphael Neider <rneider AT web.de>
447
448         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
449
450 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
451
452         * .version: changed to version 2.5.3
453         * doc/sdccman.lyx: changed version to 2.5.3,
454           documented --codeseg and --constseg and pragma codeseg and constseg,
455           documented bit parameters (reentrant) and bit returning
456         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
457            currFunc->recvSize, but is this ok for all ports?
458           (ast2iCode): result of ~ on unsigned char must be cast to int for
459            bool to work
460         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
461           function pointers in bit space
462         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
463           (processFuncArgs): call port.reg_parm() with reentrancy info
464         * src/port.h,
465         * src/avr/main.c,
466         * src/ds390/main.c,
467         * src/hc08/main.c,
468         * src/pic/main.c,
469         * src/pic16/main.c,
470         * src/xa51/main.c,
471         * src/z80/main.c: port.reg_parm prototype extended with
472           "bool reentrant" parameter
473         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
474           options.stackAuto for allocating bit register parameters
475         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
476           (genSend): set BitBankUsed if it is,
477           (selectRegBank): factored out of genCall for use in genPcall,
478           (genCall): removed redundant dtype assignmen, use selectRegBank,
479           (genPcall): handle returning in Carry properly, save in F0 if needed,
480           (genReceive): handle bit register parameters
481         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
482           (mcs51_assignRegisters): enable bit registers for all reentrant
483            functions and don't set BitBankUsed unconditionally
484         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
485         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
486         * support/regression/tests/funptrs.c: added tests for BOOL and for return
487
488 2005-08-27 Borut Razem <borut.razem AT siol.net>
489
490         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
491         ppc-osx (Darwin) does not support -u option. It seems that it is
492         supported only on Linux - GNU cp
493
494 2005-08-25 Borut Razem <borut.razem AT siol.net>
495
496         * sim/ucsim/gui.src/serio.src/Makefile.in,
497           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
498           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
499           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
500           install and strip, since the strip at /usr/ccs/bin should be used
501           on solaris
502
503 2005-08-24 Borut Razem <borut.razem AT siol.net>
504
505         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
506
507 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
508
509         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
510         ffffffffu
511
512 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
513
514         * as/mcs51/aslink.h: completed lkrloc.c prototypes
515         * as/mcs51/lkmain.c (link_main): fixed warning
516         * device/include/stdbool.h: ds390 has no advanced bit support yet
517         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
518         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
519         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
520           and updated their macros
521         * src/SDCCval.c (constVal): updated comment for renamed b_long
522
523 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
524
525         * as/mcs51/asdata.c: changed ctype['['] to BINOP
526         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
527           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
528           (oprio): set priority for '['
529         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
530            and adb_24_bit
531         * as/mcs51/asm.h: added defines R_BIT and S_BIT
532         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
533         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
534         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
535           added overlayable BIT_BANK area
536         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
537           (summary2): explain 'T' in legenda
538         * as/mcs51/lkrloc.c: replaced old K&R style,
539           (relr): added R_BIT processing,
540           (errmsg): added "Bit-addressable relocation error",
541           (adb_bit): added for converting from byte- to bit-addressable space,
542           (adb_24_bit): added for converting from byte- to bit-addressable space
543         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
544            used in reentrant functions now even as return value
545         * device/lib/_gptrput.c (_gptrput): removed obsolete code
546         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
547           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
548         * src/SDCCglobl.h: added indicator BitBankUsed
549         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
550            the bit registers b0-b7
551         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
552           (geniCodeCast): fixed bug 1263853,
553           (geniCodeLogicAndOr): put result in bool or char,
554           (geniCodeReceive): added parameter func for accessing the return type,
555           (geniCodeFunctionBody): pass func to geniCodeReceive
556         * src/SDCCmain.c: added indicator BitBankUsed
557         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
558         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
559           (checkSClass): don't put automatic bool/bit on stack,
560           (checkFunction): removed check on function cannot return bit
561         * src/SDCCsymt.h: added newBoolLink prototype
562         * src/mcs51/gen.c (rb1regs): added bit registers,
563           (movc): created for assigning to carry,
564           (pushReg, popReg): created for pushing registers,
565           (sameRegs): check both AOP_REG and AOP_CRY types,
566           (aopOp): handle bit registers,
567           (aopPut): optimization no self-assign,
568           (saveRegisters): push reg->base (bits) only once for bit registers,
569            and use pushReg,
570           (unsaveRegisters): pop reg->base only once and use popReg,
571           (assignResultValue): added parameter func and return in carry for bits,
572           (genIpush): optimization no reload in A if not changed,
573           (genSend): bit parameters in reentrant functions are passed in bit
574            registers by first assigning to bits in B, then save registers and
575            copy B to bits,
576           (genCall): handle returning in Carry properly, save it in F0 if needed,
577           (genPcall): updated assignResultValue call, this is not safe yet for bit
578            returning function !!!
579           (genFunction): don't generate equ's for bit registers and use pushReg,
580           (genEndFunction): take care of bit returning functions and use popReg,
581           (genRet): return bit in Carry,
582           (genIfx): optimize bit registers and other directly addressable bits,
583           (genReceive): updated assignResultValue call
584         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
585           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
586            registers when using stack-auto
587         * src/mcs51/ralloc.c (_G): added allBitregs,
588           (regs8051): added the bit registers,
589           (createStackSpil): use macro IS_BIT,
590           (getRegBit): added to allocate a bit register, else spill,
591           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
592           (updateRegUsage): factored out to ease stepping while debugging,
593           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
594            also allocate bit registers,
595           (fillGaps): handle bit registers,
596           (findAllBitregs): added to create bit vector with all bit registers,
597           (mcs51_allBitregs): returns this bit vector,
598           (mcs51_assignRegisters): when using stack-auto use bit registers for
599            passing parameters and creating local variables
600         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
601
602 2005-08-22 Borut Razem <borut.razem AT siol.net>
603
604         * device/lib/Makefile.in: replaced find option -or with -o
605           to make it run on solaris
606
607 2005-08-22 Raphael Neider <rneider AT web.de>
608
609         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
610           fixes #1265442 (crash on Solaris)
611
612 2005-08-20 Borut Razem <borut.razem AT siol.net>
613
614         * configure, configure.in: added tests for libsocket and libnsl libraries,
615           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
616           from support/regression/Makefile.in
617         * support/regression/Makefile.in: added
618         * device/lib/pic16/Makefile.common.in: force make to use bash shell
619         * sim/ucsim/libtool: regenerated on sparc-solaris
620         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
621           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
622           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
623           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
624           sparc-solaris, which doesn't use GNU ld linker
625         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
626         * as/Makefile: find on sparc-solaris does not support -maxdepth option
627
628 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
629
630         * src/mcs51/peeph.def: updated comments
631
632 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
633
634         * device/lib/_gptrget.c,
635         * device/lib/_gptrput.c: slightly shorter
636         * doc/sdccman.lyx: incremented version
637         * src/mcs51/peeph.def: moved peephole comments to the line of first
638           change to better keep line correlation, reanimated 186.e
639         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
640
641 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
642
643         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
644           David Saxton with quotes around file name.
645
646 2005-08-15 Borut Razem <borut.razem AT siol.net>
647
648         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
649           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
650           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
651           make tests run on x86_64 platform
652
653 2005-08-13 Raphael Neider <rneider AT web.de>
654
655         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
656           as it might be executed DURING a build (parallel make is wonderful)
657
658 2005-08-13 Raphael Neider <rneider AT web.de>
659
660         * device/lib/Makefile.in (port-specific-objects-pic16):
661           revert to cp $(PORT)/bin/*.* $(PORTDIR)
662         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
663           dependency
664         * device/lib/pic16/Makefile.rules: build subdirs before creating
665           the library, removed builddir rule, create $(builddir) early in
666           recurse rule, use empty recurse rule for leaf directories
667         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
668           mkdir errors (race condition), removed duplicate suffix "hex"
669           from clean rules
670         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
671         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
672           prevents mkdir -p from aborting on Alpha
673
674 2005-08-12 Raphael Neider <rneider AT web.de>
675
676         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
677           db-statements in order to allow for arrays of pointers in code
678           sections to be placed without interspersed 0-padding, fixes
679           bug #1256215
680         * (emitStatistics): fixed division by zero for pic18f1220
681         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
682           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
683         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
684         * (pic16_pCodeConstString): keep track of already emitted string
685           literals to prevent "duplicate definitions of symbol _str_NR"
686         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
687           debug message
688         * device/lib/Makefile.in: ignore failing PIC16 library builds
689         * device/lib/pic16/Makefile: do not build if gputils are missing
690         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
691
692 2005-08-10 Raphael Neider <rneider AT web.de>
693
694         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
695           my last commit)
696
697 2005-08-10 Raphael Neider <rneider AT web.de>
698
699         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
700           Rokas' patch to add the new fixed point type "__fixed16x16"
701         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
702           functions for __fixed16x16 arithmetics
703         * device/lib/pic16: reimplemented the build system to support
704           a separate build directory, better handling of libio (create
705           the library in a separate subdir for each architecture) and
706           easier configuration (centralized in Makefile.common)
707
708 2005-08-07 Raphael Neider <rneider AT web.de>
709
710         * src/pic16/gen.c (genrshTwo): fixed sign extension
711         * src/pic16/device.c: added pic18f2320, 4220 and 4320
712         * device/include/pic16/pic18f2220.h: changed some bit definitions,
713           added T0CONbits
714         * device/include/pic16/pic18f4220.h: NEW, header for
715           pic18f4220 and pic18f4320
716         * device/include/pic16/pic18fregs.h: added new devices,
717           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
718         * device/include/pic16/signal.h: resolved name clashes
719           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
720           to also allow testing for interrupt enable bits, added
721           comments on how to use the macros
722         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
723         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
724           register definitions for the devices
725         * device/lib/pic16/pics.all: added new devices
726         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
727           allocated memory
728         * device/lib/pic16/libc/stdlib/memfree: do not count
729           the block header as free memory
730         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
731           simplified and added missing end-of-blocklist-marker
732           (reported by Peter Onion, fixes #1252814)
733         * (_mergeHeapBlock): fixed loop condition
734         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
735           len==0, restructured code
736         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
737           up a bit, reduced bitfield accesses, prevent endless loops
738           in case of heap corruption
739         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
740           "unreferenced arguments/must return a value" warnings
741         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
742           replaced BAUDREG with SPBRG
743         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
744           device/lib/pic16/debug/gstack/gstack.c: replaced
745           _naked, _asm, _endasm with __naked, __asm, __endasm
746
747 2005-08-05 Raphael Neider <rneider AT web.de>
748
749         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
750           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
751
752 2005-08-05 Borut Razem <borut.razem AT siol.net>
753
754         * device/lib/Makefile.in: added missing ';'
755         * configure: removed ^M characters
756
757 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
758
759         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
760           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
761           License
762
763 2005-08-04 Borut Razem <borut.razem AT siol.net>
764
765         * configure.in: pic16 libraries build 2nd try - enable running
766           configure in device/lib/pic16
767         * configure: regenerated from configure.in
768         * device/lib/Makefile.in: create $(PORT)/bin directory
769
770 2005-08-03 Raphael Neider <rneider AT web.de>
771
772         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
773           to get/set values via pointers
774         * (genUnpackBits,genPackBits): changed detection of
775           ptr->bitfield vs. sym.bitfield, fixed access via generic
776           pointers, removed dead (wrong) code for multibyte bitfields
777         * (genNearPointerGet, genGenPointerGet): removed useless code,
778           fixed bitfield detection, fixes #1250594
779         * (genNearPointerSet): removed useless code
780         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
781           and introduced macro pic16_emitpcode that conditionally emits
782           the origin of the following pCode (useful for debugging SDCC)
783         * src/pic16/pcode.c: changed (and disabled) some debug outputs
784         * (createDefmap): fixed handling of LFSR for --optimize-df
785
786 2005-08-02 Borut Razem <borut.razem AT siol.net>
787
788         * device/lib/Makefile.in: pic16 libraries build enabled since
789           gputils-0.13.2 are now localy installed at sourceforge's compile farm
790
791 2005-08-02 Raphael Neider <rneider AT web.de>
792
793         * src/pic16/gen.c (genPackBits): removed deprecated warning
794         * (genGenPointerSet): fixed bitfield detection
795
796 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
797
798         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
799
800 2005-07-31 Raphael Neider <rneider AT web.de>
801
802         * device/lib/pic16/libdev/pic18f458.c,
803           device/include/pic16/pic18f458.h: added missing T0CONbits
804
805 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
806
807         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
808
809 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
810
811         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
812
813 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
814
815         * device/include/mcs51/at89c51ed2.h: added.
816
817 2005-07-23 Raphael Neider <rneider AT web.de>
818
819         * src/pic/gen.h: added emitpcode macro for debugging
820         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
821           and replace by macro adding debug information on demand
822         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
823         * (gencjne): tried to fix; replaced with correct (slower) code
824         * (gen{Unp,P}ackBits): fixed single bit access
825         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
826         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
827           previous instruction
828         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
829           register has to be handled with care (forbidding movement
830           of assignments/uses, removing assignments completely, ...)
831         * (pCodeOptime2pCodes): make use of regIsSpecial
832         * added lots of debugging output (commented out)
833         * src/pic/rallloc.c (deassignLRs): prevent operand registers
834           from being reused as result UNLESS it is known to work
835
836 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
837
838         * support/Util/dbuf.h: include <stddef.h> for size_t
839         * .version: changed to version 2.5.2
840
841 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
842
843         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
844
845 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
846
847         * src/hc08/gen.c (genMinus): fixed bug #1241835,
848           (genModOneByte): removed needless psha/pula
849
850 2005-07-22 Raphael Neider <rneider AT web.de>
851
852         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
853           have PIC14 handled like PIC16, fixes broken pic14 linker calls
854         * src/pic/gen.c (resolveIfx): do not "invent" labels
855         * (genSkipc): changed to positive logic
856         * (genSkipCond): removed as no longer needed
857         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
858           backport from PIC16
859         * (genLeftShift): check operands are in different registers
860         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
861           INCF does not update CARRY...
862         * src/pic/main.c: fixed _linkCmd
863         * src/pic/pcode.c (unlinkpCode): added inactive code
864         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
865           alive (do not assign result and operand overlapping registers)
866
867 2005-07-22 Raphael Neider <rneider AT web.de>
868
869         * src/pic/device.c (dump_sfr): replaced register declaration with
870           call to emitSymbolToFile() to avoid duplicate symbols
871         * (assignRelocatableRegisters): do not declare external symbols
872         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
873           right (take size of type, not etype)
874         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
875         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
876         * (packRegsForAccUse): disabled assignment of WREG as
877           the result reg to prevent occurence of just fixed #1235003,
878           fixes #1242954
879         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
880           symbols (avoids duplicate symbols in .asm file)
881         * (pic14emitRegularMap): use emitSymbolToFile()
882         * src/pic/gen.c (aopOp): fixed spillLocation handling
883         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
884         * (genDataPointerSet): removed unneccessary variables/output
885
886 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
887
888         * as/mcs51/lkarea.c: enlarged codemap for banked memory
889         * device/lib/mcs51/crtbank.asm: added # to 0x0F
890
891 2005-07-21 Raphael Neider <rneider AT web.de>
892
893         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
894           architecture cannot handle them efficiently, fixes bug #1235003
895         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
896           check for empty sets before using them (fixes bug #1232190)
897
898 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
901           (lnksect2): generate warnings for memory overlap
902         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
903           constseg to set the name of these segments so you can instruct the linker
904           to place them in banks
905         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
906         * src/SDCCglobl.h: added MODEL_HUGE to enum,
907           added code_seg and const_seg to options
908         * src/SDCCglue.c (emitMaps): use options.const_seg,
909           (createInterruptVect): put interrupt vectors in segment HOME,
910           (glue): put HOME before static segment and put the main glue in HOME,
911           (glue): use options.code_seg
912         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
913         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
914           these segments so you can instruct the linker to place them in banks
915           (linkEdit): use code_loc for HOME segment which should be the first
916           segment in code memory now
917         * src/SDCCmem.c: fixed more stuff like bug 1238386
918         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
919           (changePointer): don't change function pointers to code pointers for
920           banked functions,
921           (compareType): added exceptional check for banked function pointers
922         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
923         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
924           after static in code memory
925         * src/mcs51/gen.c: added aopLiteralLong prototype,
926           (aopForSym): use getSize for functions,
927           (genCall): generate banked calls over one trampoline __sdcc_banked_call
928           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
929           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
930           the segment,
931           (genPcall): use call for literal function pointers and generate banked
932           calls over the one trampoline so there's only one place for the user to
933           modify according to his/hers hardware,
934           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
935           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
936         * src/mcs51/main.c: added keyword banked,
937           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
938         * support/Util/SDCCerr.c,
939         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
940           needed for passing the bank and address to the trampoline
941         * device/lib/mcs51/crtbank.asm: added for bankswitching
942         * device/lib/mcs51/Makefile: added crtbank
943
944 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
945
946         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
947           for fields at offset 0 of a struct or union as reported
948           on 2005-07-07 in the developer mailing list.
949
950 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
951
952         * src/SDCCmem.c: fixed bug 1238386
953
954 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
955
956         * src/mcs51/peeph.def: added labelrefcounting for peepholes
957           (patch #1144962), added peephole 300, enabled 259.x
958         * doc/sdccman.lyx: removed screenshot and provided link instead
959
960 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
961
962         * doc/sdccman.lyx: added section about debugging with ddd
963         * doc/figures/ddd_example.eps: screenshot of debugging session
964
965 2005-07-04 Raphael Neider <rneider AT web.de>
966
967         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
968           like CODE pointers, fixes #1115683
969         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
970           call, fixes bugs #1232211, #1228110,
971           fixed wrong casts to pCodeFlow from pCodeInstructions
972
973 2005-07-04 Raphael Neider <rneider AT web.de>
974
975         * src/pic/gen.c (popGet): changed assert to allow for
976           bit operands
977         * (popGetAddr): changed signature to provide
978           an additional index, patched all call sites
979         * (genCmpEq): handle literal-like operands correctly
980         * (genAddrOf): added sanity checks on __code/__data pointers
981         * (genAssign): added handling of symbols from __code section
982         * (gencjne): do not generate code for comparisons whose result
983           is neither stored nor used, fixes bug #1171114
984         * (AccLsh, AccRsh): operate on operand instead of WREG
985         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
986           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
987           by known count
988         * rewrote complete shift-by-literal logic, commented unused
989           functions out
990         * (genConstPointerGet): get multiple bytes (if result size > 1),
991           fixed handling of non-immediate addresses
992         * (genPointerGet): handle CODE pointers like CONST pointers
993         * (genpic14Code): insert C-SRC lines as Cource-pCodes
994         * ({aop,op}_isLitLike): NEW, single place to decide whether an
995           operand is to be treated as a literal or not
996         * (mov2w,genPcall,genCmpEq),
997           src/pic/genarith.c: use aop_isLitLike() to decide between
998           literal/register contents
999         * (addSign): added missing offset
1000         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1001           only emit comment in debug-mode,
1002           use {aop,op}_isLitLike throughout the file
1003         * src/pic/glue.c: fix initializers for pointers (work in progress)
1004         * src/pic/pcode.c (get_op): honor index on _const symbols
1005         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1006         * (dumppBlock): added pCode size estimation
1007         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1008           check for IS_SYMOP before OP_SYMBOL'ing
1009         * fixed indentation, compacted switch-statements
1010         * (allocReg): find free register and allocate it instead of
1011           allocating new registers all the time
1012         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1013           registers as its operands (necessary only for multibyte GETs)
1014
1015 2005-07-01 Raphael Neider <rneider AT web.de>
1016
1017         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1018           debugging .asm-output macros FENTRY + FEXIT
1019         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1020           way... I wonder...
1021         * (emitpComment): NEW, printf to pCode
1022         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1023           offset handling
1024         * (popGetAddr): NEW, variant of popGet to access an immediates
1025           high(er) bytes instead of the n'th byte of memory they reference,
1026           replaced popGet with popGetAddr where neccessary
1027         * (genDataPointerGet): reactivated and fixed implementation
1028         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1029           accesses
1030         * (genDataPointerSet): fixed multibyte assignments
1031         * (genpic14Code): fixed --i-code-in-asm handling
1032         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1033         * (genPlus): fixed index-out-of-bounds error
1034         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1035         * src/pic/ralloc.c: added debugging output macro FENTRY2
1036         * (spillThis): fixed indentation, enbraced for-body for clarity
1037         * (rematStr): commented out as now unused
1038         * (regTypeNum): commented out special spill case (overwrites
1039           arbitrary values)
1040         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1041
1042 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1043
1044         * doc/sdccman.lyx: documented sfr16/sfr32,
1045           added example for using storage class with function pointers
1046         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1047
1048 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1049
1050         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1051         * device/lib/_itoa.c,
1052         * device/lib/_ltoa.c: optimized codesize
1053         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1054           but don't know how to suppress the double warning.
1055         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1056         * support/Util/SDCCerr.c,
1057         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1058
1059 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1062           fixed old K&R prototypes
1063         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1064         * device/lib/_gptrget.c,
1065         * device/lib/_gptrgetc.c,
1066         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1067           also new versions for small generic pointers and banked generic pointers
1068         * src/port.h: added const_name
1069         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1070         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1071         * src/SDCCcse.c (findPrevIc): check all associative operators
1072         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1073         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1074         * src/SDCCmem.c: updated comments,
1075           set far-space to 0 for pdata, results in optimized code
1076         * src/SDCCmem.h: added macro CONST_NAME
1077         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1078           moving the info into the highest bits, see also gptrget/gptrput
1079         * src/src.dsp: added sdcc.ico to project files
1080         * src/avr/gen.c (genCast): fixed bug 0x%d
1081         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1082         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1083           relation between ptr_type and DCL_TYPE,
1084           (genCast): fixed bug 0x%d
1085         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1086           (CODE)" for const_name
1087         * src/hc08/gen.c (genCast): fixed bug 0x%d
1088         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1089           (hc08_port): added "CONST (CODE)" for const_name
1090         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1091           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1092           between ptr_type and DCL_TYPE,
1093           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1094           operand* and took AOP() inside function so sfr-ness can be checked,
1095           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1096           new prototype,
1097           (genFunction, genEndFunction): optimized stack setup,
1098           (genMinus): optimized for literals with ending zeroes (in bytes),
1099           (genCast): fixed bug 0x%d
1100         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1101           (mcs51_port): added "CONST (CODE)" for const_name
1102         * src/mcs51/peeph.def: made rule 226 more generic
1103         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1104         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1105         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1106         * src/z80/main.c (z80_port): added NULL for const_name,
1107           (gbz80_port): added NULL for const_name
1108         * support/regression/tests/bug663539.c,
1109         * support/regression/tests/sfr16.c: new tests
1110
1111 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1112
1113         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1114
1115 2005-06-24 Raphael Neider <rneider AT web.de>
1116
1117         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1118           corrected typos...
1119         * device/include/pic16/signal.h: added USBIF
1120           and SIG_USB
1121
1122 2005-06-24 Raphael Neider <rneider AT web.de>
1123
1124         * device/lib/pic16/libdev/pic18f2455.c,
1125           device/include/pic16/pic18f2455.h: NEW
1126         * device/include/pic16/pic18fregs.h,
1127           device/lib/pic16/pics.all,
1128           src/pic16/device.c: added 18f2455
1129         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1130           device/include/pic16/{pic18f[68][567].h,usart.h}:
1131           replaced MULTIPLE_USARTS define with more relaible
1132           compatibility sfrs (for USART access)
1133
1134 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1135
1136         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1137           and the output asm file line is printed on two lines.
1138
1139 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1140
1141         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1142           BGT, BLE, BHI, and BLS instructions
1143         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1144           genCmpEq): removed
1145         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1146           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1147           fixes bug #1216342
1148         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1149
1150 2005-06-15 Raphael Neider <rneider AT web.de>
1151
1152         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1153         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1154         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1155           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1156           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1157
1158 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1159
1160         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1161           Marcel Telka in bug #1215704
1162
1163 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1164
1165         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1166           located in shared memory bank.
1167
1168 2005-05-31 Raphael Neider <rneider AT web.de>
1169
1170         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1171           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1172           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1173
1174 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * device/lib/_strncpy.c: fixed the fix
1177
1178 2005-05-26 Raphael Neider <rneider AT web.de>
1179
1180         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1181           initializers with \0, bug #1208187
1182         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1183           intializers with \0, bug #1208187
1184
1185 2005-05-26 Raphael Neider <rneider AT web.de>
1186
1187         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1188           initializers with \0, bug #1208187
1189         * src/pic16/main.c (_process_pragma): added sanity checks
1190           for stack position and size, emit warnings when appropriate
1191
1192 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1193
1194         * device/lib/_strncpy.c: fixed not filling with \0
1195
1196 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1197
1198         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1199           createFunction),
1200         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1201           compound_statement),
1202         * src/SDCCsymt.h,
1203         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1204
1205 2005-05-24 Raphael Neider <rneider AT web.de>
1206
1207         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1208
1209 2005-05-24 Raphael Neider <rneider AT web.de>
1210
1211         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1212           TRISE definitions, closes bug #1162453
1213
1214 2005-05-22 Raphael Neider <rneider AT web.de>
1215
1216         * src/pic16/main.c (_process_pragma): check for missing
1217           arguments to pragmas code and udata
1218         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1219           consistency fixes to match other headers (thanks to Jim Paris)
1220         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1221
1222 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1223
1224         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1225
1226 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1227
1228         * support/regression/tests/bug1198642.c: new test
1229         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1230         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1231         * support/scripts/resource.h,
1232         * support/scripts/resource.rc,
1233         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1234         * support/scripts/sdcc.ico: added 32x32 icon
1235
1236 2005-05-18 Raphael Neider <rneider AT web.de>
1237
1238         * device/lib/pic16/libdev/pic18f*.c,
1239         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1240           keywords to "__sfr" and "__at (X)"
1241         * device/include/pic16/pic18fregs.h: added pic18f4520
1242         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1243           #1203088 (MPLAB compatibility)
1244
1245 2005-05-17 Raphael Neider <rneider AT web.de>
1246
1247         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1248         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1249         * device/lib/pic16/pics.all: added new devices
1250         * src/pic16/device.c: added support for pic18f4520
1251
1252 2005-05-16 Raphael Neider <rneider AT web.de>
1253         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1254         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1255         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1256           convenience function for bit access
1257
1258 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1259
1260         * device/lib/printf_large.c: fixed bug 1193299
1261         * support/regression/tests/bug1057979.c: added test %3.3s
1262
1263 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1264
1265         * device/include/mcs51/8051.h,
1266         * device/include/mcs51/8052.h: made parseable with lint
1267         * device/include/mcs51/lint.h: added include file for (sp)lint
1268         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1269         * doc/cdbfileformat.lyx,
1270         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1271
1272 2005-05-14 Raphael Neider <rneider AT web.de>
1273
1274         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1275         * device/lib/pic16/libc/stdlib/itoa.c (new)
1276         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1277         * device/lib/pic16/libio/Makefile: exclude subdir according to
1278           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1279         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1280         * src/pic16/gen.c (genFunction): prevent annoying warning
1281         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1282           nameclashes on BeOS
1283         * support/cpp2/cppmain.c (cpp_output_string): new
1284         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1285           fixes bug 1116802
1286
1287 2005-05-13 Borut Razem <borut.razem AT siol.net>
1288
1289         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1290
1291 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1292
1293         * .version: changed to version 2.5.1; back to bleeding edge development
1294
1295 2005-05-11 Borut Razem <borut.razem AT siol.net>
1296
1297         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1298           generate PDF version 1.3 documents
1299
1300 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1301
1302         * .version: changed to version 2.5.0
1303
1304 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1305
1306         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1307
1308 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1309
1310         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1311         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1312         well as many smaller updates.
1313         * .version: changed to version 2.5.0-pre1
1314
1315 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1316
1317         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1318
1319 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1320
1321         * support/regression/tests/bug1185672.c: added
1322         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1323           bug 1185672
1324         * src/mcs51/gen.c (genCall): added comments, made it look safer
1325         * src/mcs51/gen.c (genEndFunction): simplified
1326
1327 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1328
1329         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1330
1331 2005-04-14 Borut Razem <borut.razem AT siol.net>
1332
1333         * fixed bug 1045046 - SIGSEGV with really simple code?:
1334           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1335           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1336
1337 2005-04-14 Borut Razem <borut.razem AT siol.net>
1338
1339         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1340           src/pic16/device.h: temporarily disabled experimental #inline pragma
1341           for 2.5.0 release
1342
1343 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1344
1345         * device/include/z80/stdio.h,
1346         * device/include/z80/string.h: removed these highly incomplete files so
1347           SDCC can use the default ones in device/include/
1348
1349 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1350
1351         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1352         gcc warning.
1353         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1354         fix sdcpp warnings.
1355
1356 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1357
1358         * device/include/malloc.h: removed redundant __reentrant prototypes
1359         * device/lib/_mullong.c: added working xstack variant in asm (C version
1360           doesn't pass regression tests)
1361         * device/lib/bpx.c: used __data and made bpx char for mcs51
1362         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1363           (createFunction): fixed bug with xstackPtr
1364         * src/SDCCcse.c: corrected comments
1365         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1366           (killDeadCode, eBBlockFromiCode): removed unused code
1367         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1368           corrected comments
1369         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1370           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1371           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1372           (genModOneByte): fixed warning in MSVC
1373         * src/mcs51/main.c (): added comments
1374         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1375
1376 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1377
1378         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1379
1380 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1381
1382         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1383
1384 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1385
1386         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1387         characters arrays of larger size than the declared one.
1388
1389 2005-04-10 Borut Razem <borut.razem AT siol.net>
1390
1391         * src/pic/gen.c (genInline),
1392           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1393           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1394           (findNextInstruction), (findPrevInstruction),
1395           (findInstructionUsingLabel),
1396           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1397         * src/pic/pcode.c (findLabel): added missing '\n'
1398         * src/src.dsp: added SDCCdwarf2.c to the project
1399
1400 2005-04-09 Borut Razem <borut.razem AT siol.net>
1401
1402         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1403
1404 2005-04-08 Raphael Neider <rneider AT web.de>
1405
1406         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1407           into the chain after a given one) and mergeDefmapSymbols (combine
1408           defmap entries for each symbol per pcode)
1409         * (createDefmap): have defmap entries merged in the end
1410         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1411           a symbol before replacing one access type's symbol, merge symbols in
1412           the end (replacement symbol might already have an entry)
1413         * (assignValnums): keep reference to written WREG intact
1414
1415 2005-04-08 Raphael Neider <rneider AT web.de>
1416
1417         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1418           Alpha)
1419
1420 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1421
1422         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1423         bytes
1424
1425 2005-04-07 Raphael Neider <rneider AT web.de>
1426
1427         * device/include/pic16/usart.h: added compatibility defines for
1428           devices with more than one USART
1429         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1430
1431 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1432
1433         * device/lib/Makefile.in: updated for port specific include
1434
1435 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1436
1437         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1438
1439 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1440
1441         * device/include/8051.h,
1442         * device/include/8052.h,
1443         * device/include/at89S8252.h,
1444         * device/include/at89c55.h,
1445         * device/include/at89x051.h,
1446         * device/include/at89x51.h,
1447         * device/include/at89x52.h,
1448         * device/include/mcs51reg.h,
1449         * device/include/reg51.h,
1450         * device/include/reg764.h,
1451         * device/include/regc515c.h,
1452         * device/include/sab80515.h: (re)moved these 12 files
1453         * device/include/mcs51/8051.h,
1454         * device/include/mcs51/8052.h,
1455         * device/include/mcs51/at89S8252.h,
1456         * device/include/mcs51/at89c55.h,
1457         * device/include/mcs51/at89x051.h,
1458         * device/include/mcs51/at89x51.h,
1459         * device/include/mcs51/at89x52.h,
1460         * device/include/mcs51/mcs51reg.h,
1461         * device/include/mcs51/reg51.h,
1462         * device/include/mcs51/reg764.h,
1463         * device/include/mcs51/regc515c.h,
1464         * device/include/mcs51/sab80515.h: and added them here
1465
1466 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1467
1468         * device/include/stdarg.h: changed SDCC specific keywords to double
1469           underlined form.
1470         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1471           mcs51 and ds390.
1472         * device/include/hc08/mc68hc908gp32.h,
1473         * device/include/hc08/mc68hc908jb8.h,
1474         * device/include/hc08/mc68hc908jkjl.h,
1475         * device/include/hc08/mc68hc908qy.h: fixed comments
1476         * device/include/mcs51/README: updated
1477         * device/include/mcs51/c8051f120.h: added PINRSF
1478         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1479         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1480           amidst code. Also inline is not supported.
1481
1482 2005-04-06 Raphael Neider <rneider AT web.de>
1483
1484         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1485         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1486           callers stack/frame pointers
1487
1488 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1489
1490         * device/include/pic16/usart.h: added, missing in previous commit,
1491         * device/include/pic16/adc.h: fixed typo,
1492         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1493         commit,
1494         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1495         <p18fxxx.inc>
1496         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1497         uninitialized because a bug appears with gplink
1498         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1499         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1500         complains for unrecognised option
1501
1502 2005-04-05 Raphael Neider <rneider AT web.de>
1503
1504         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1505           structs as well (using memcpy)
1506         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1507           on ISRs (GOTO has no label)
1508         * src/pic16/device.h: added OF_OPTIMIZE_DF
1509         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1510           new data flow analysis/optimization
1511         * src/pic16/pcode.c: added (prototypes for and implementation of)
1512           dataflow analysis functions, fixed pCodeInstructions' inCond and
1513           outCond values, made RCALL a branch instruction
1514         * (pic16_unlinkpCode): keep C line if possible
1515         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1516           C line moved if possible
1517         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1518         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1519           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1520         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1521           new flow)
1522         * (pic16_getJumptabpCode): NEW, needed in...
1523         * (LinkFlow): fixed handling of jumptables, calls and conditional
1524           branches
1525         * (pic16_InsertCommentAfter): NEW
1526         * (pic16_pCodeReplace): made verbose and flow preserving
1527         * (AnalyzeFlow): added call to data flow analysis
1528         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1529         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1530         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1531
1532 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1533
1534         * src/SDCCast.c (decorateType): fixed bug #1105626
1535
1536 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1537
1538         * device/include/asm/pic16/features.h,
1539         * pic18f*.h headers,
1540         * device/include/pic16/adc.h,
1541         * device/include/pic16/delay.h,
1542         * device/include/pic16/i2c.h,
1543         * device/include/pic16/malloc.h,
1544         * device/include/pic16/stdio.h,
1545         * device/include/pic16/stdlib.h,
1546         * device/include/pic16/string.h,
1547         * device/lib/pic16/libc/stdio/printf_tiny.c,
1548         * device/lib/pic16/libc/stdio/printf_small.c,
1549         * device/lib/pic16/libc/stdio/strmgpsim.c,
1550         * device/lib/pic16/libc/stdio/strmmssp.c,
1551         * device/lib/pic16/libc/stdio/strmusart.c,
1552         * device/lib/pic16/libc/stdio/vfprintf.c,
1553         * device/lib/pic16/libc/stdlib/ltoa.c,
1554         * device/lib/pic16/libc/stdlib/putchar.c,
1555         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1556         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1557         * device/lib/pic16/libc/stdlib/memchrram.c,
1558         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1559         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1560         * device/lib/pic16/libio/adc/adcbusy.c,
1561         * device/lib/pic16/libio/adc/adcread.c,
1562         * device/lib/pic16/libio/adc/adcsetch.c,
1563         * device/lib/pic16/libio/usart/ubaud.c,
1564         * device/lib/pic16/libio/usart/ubusy.c,
1565         * device/lib/pic16/libio/usart/udrdy.c,
1566         * device/lib/pic16/libio/usart/uopen.c,
1567         * device/lib/pic16/libio/usart/uputc.c,
1568         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1569         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1570         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1571         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1572         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1573         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1574         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1575         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1576         specific keywords to double underlined form,
1577         * device/lib/pic16/libc/Makefile.rules,
1578         * device/lib/pic16/libsdcc/Makefile.rules,
1579         * device/lib/pic16/libm/Makefile,
1580         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1581         to compile with C standard set in Makefile.common
1582         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1583         rand.c and crc.c in compilation process,
1584         * device/lib/pic16/libsdcc/int/divuint.c,
1585         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1586         `c' from signed to unsigned,
1587         * device/lib/pic16/startup/crt0.c,
1588         * device/lib/pic16/startup/crt0i.c,
1589         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1590         keywords to double underlined form, bug fixes in _do_cinit function
1591         which prevented the correct initialization of the .idata segment,
1592         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1593         core to enter a infinite loop
1594         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1595
1596 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1597
1598         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1599
1600 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1601
1602         * device/include/Makefile.in: add support for hc08 subdirectory
1603         * device/include/hc08/: new subdirectory
1604         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1605         Lucas Loizaga, thanks!
1606         * device/include/hc08/mc68hc908qy.h,
1607         * device/include/hc08/mc68hc908gp32.h,
1608         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1609         their own directory. Changed internal macro names to use the compiler
1610         reserved namespace. Changed SDCC specific keywords to double
1611         underlined form.
1612         * device/include/math.h,
1613         * device/include/malloc.h,
1614         * device/include/stdarg.h,
1615         * device/include/stdbool.h
1616         * device/include/string.h,
1617         * device/include/tinibios.h,
1618         * device/include/ds400rom.h,
1619         * device/include/8051.h,
1620         * device/include/8052.h,
1621         * device/include/80c51xa.h,
1622         * device/include/at89c55.h,
1623         * device/include/at89S8252.h,
1624         * device/include/at89x51.h,
1625         * device/include/at89x52.h,
1626         * device/include/ds80c390.h,
1627         * device/include/reg764.h,
1628         * device/include/regc515c.h,
1629         * device/include/sab80515.h,
1630         * device/include/mcs51/c8051f000.h,
1631         * device/include/mcs51/c8051f018.h,
1632         * device/include/mcs51/c8051f020.h,
1633         * device/include/mcs51/c8051f040.h,
1634         * device/include/mcs51/c8051f060.h,
1635         * device/include/mcs51/c8051f120.h,
1636         * device/include/mcs51/c8051f300.h,
1637         * device/include/mcs51/c8051f310.h,
1638         * device/include/mcs51/c8051f320.h,
1639         * device/include/mcs51/c8051f330.h,
1640         * device/include/mcs51/c8051f350.h,
1641         * device/include/z180.h: Changed SDCC specific keywords to double
1642         underlined form.
1643
1644 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1645
1646         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1647         18F4455,
1648         * (pic16_assignConfigWordValue): disable testing of configuration
1649         register value with config mask,
1650         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1651         function with port->fun_prefix,
1652         * (genFunction): when generating a naked interrupt function never
1653         create an absolute segment placed in interrupt vector address, place
1654         the actual interrupt function at IVA instead, when an interrupt
1655         function is generated with unspecified interrupt then do not create
1656         the absolute section,
1657         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1658         code for generating a call to generic pointer get/put function with
1659         a call to function pic16_callGenericPointer(),
1660         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1661         the call to the generic pointer get/put functions with prefixing the
1662         function name with port->fun_prefix,
1663         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1664         * src/pic16/main.c (_process_pragma): prefix function with
1665         port->fun_prefix,
1666         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1667         calling assembler, old 18Fxxxx macro is deprecated,
1668         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1669         PC_ASMDIR in while condition,
1670         * (findInstruction): add PC_ASMDIR in while condition,
1671         * (buildCallTree): prefix main with port->fun_prefix,
1672         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1673         identifier for variable with banked access in instructions BTFSS,
1674         BTFSC, BCF, BSF, BTG
1675         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1676         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1677         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1678         perform optimization when enviroment variable NO_REG_OPT is set,
1679         * (insideLRBlock): NEW, return 1 if register is inside an
1680         INF_LOCALREGS block,
1681         * (RemoveRegFromLRBlock): remove a register that is completely
1682         eliminated by register optimization, but it is still left in local
1683         register store/restore in/from stack block,
1684         * (Remove2pcodes): after removing register, check to see if it
1685         should be removed from local register store/restore in/from stack
1686         block,
1687         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1688         DUMMY_READ_VOLATILE,
1689
1690         * device/include/pic16/adc.h: minor prototype modifications and
1691         update,
1692         * device/include/pic16/malloc.h: added GPL notice various
1693         modifications,
1694         * device/include/pic16/stdint.h: NEW, standard header for ints
1695         * device/include/pic16/delay.h: NEW, header for delay functions,
1696         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1697         delay1mtcy,
1698         * device/include/pic16/signal.h: NEW, header providing helper macros
1699         for implementing signal handlers,
1700         * device/include/pic16/stdio.h: added prototypes for functions,
1701         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1702         prototypes for stdin and stdout, added macro PUTCHAR to
1703         automatically implement putchar function prototype,
1704         * device/include/pic16/usart.h: modified and updated USART library,
1705         * device/lib/pic16/libio/adc/,
1706         * device/lib/pic16/libio/i2c: some modifications to improve library
1707         performance,
1708         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1709         family of functions,
1710         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1711         family of functions and other sources,
1712         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1713         of the PIC18Fxx[28] devices,
1714         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1715         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1716         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1717         _do_cinit function, because the previous failed when local variables
1718         where not placed in the same memory bank,
1719         * device/lib/pic16/libsdcc/char/: various modifications to improve
1720         library performance,
1721         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1722         information on the new functions of the c library and more...
1723
1724 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1725
1726         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1727
1728 2005-03-26 Raphael Neider <rneider AT web.de>
1729
1730         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1731           if condition == CARRY)
1732         * (genCmp): adapted to new genSkipc semantics
1733         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1734           on rIfx (genCmp was broken)
1735
1736 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1737
1738         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1739         * src/z80/main.c (_keywords[]),
1740         * src/SDCCglobal.h (struct options),
1741         * src/SDCC.y,
1742         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1743         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1744         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1745         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1746         always available in leading double underscore form. The C99 support is
1747         mostly missing, but it's a start.
1748         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1749         reserved identifier "__data".
1750
1751 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1752
1753         * src/mcs51/peeph.def: fixed bug 1170013
1754
1755 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * device/include/mcs51reg.h: fixed bug 842007
1758
1759 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1760
1761         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1762         last time.
1763
1764 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1765
1766         * src/port.h (struct PORT),
1767         * src/avr/ralloc.c (avr_assignRegisters),
1768         * src/avr/main.c,
1769         * src/ds390/ralloc.c (ds390_assignRegisters),
1770         * src/ds390/main.c,
1771         * src/hc08/ralloc.c (hc08_assignRegisters),
1772         * src/hc08/main.c,
1773         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1774         * src/mcs51/main.c,
1775         * src/pic/ralloc.c (pic14_assignRegisters),
1776         * src/pic/main.c,
1777         * src/pic16/ralloc.c (pic16_assignRegisters),
1778         * src/pic16/main.c,
1779         * src/xa51/ralloc.c (xa51_assignRegisters),
1780         * src/xa51/main.c,
1781         * src/z80/ralloc.c (z80_assignRegisters),
1782         * src/z80/ralloc.h,
1783         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1784         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1785         * src/SDCCcse.h,
1786         * src/SDCCdflow.c (computeDataFlow),
1787         * src/SDCCdflow.h,
1788         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1789         * src/SDCCloop.h,
1790         * src/SDCCcflow.c (*),
1791         * src/SDCCcflow.h,
1792         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1793         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1794         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1795         immedDom() returning wrong block; probably fixes bug #1160833)
1796
1797 2005-03-20 Borut Razem <borut.razem AT siol.net>
1798
1799         * support/scripts/inc2h.pl: WIN32 port
1800
1801 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1802
1803         * device/lib/makefile.in: added abs.c and labs.c
1804
1805 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1806
1807         * device/include/stdint.h: added
1808         * device/lib/abs.c: added
1809         * device/lib/labs.c: added
1810         * device/include/stdlib.h: added abs() and labs() prototypes
1811         * device/lib/libsdcc.lib: added abs and labs
1812         * device/include/float.h,
1813         * device/lib/_fsmul.c,
1814         * device/lib/printf_fast.c,
1815         * device/lib/printf_tiny.c: updated comments
1816
1817 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1818
1819         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1820         bug #1164313
1821
1822 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1823
1824         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1825         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1826
1827 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1828
1829         * device/lib/printf_large.c: removed inline assembly for portability and
1830           readability. Use printf_fast if speed or size are more important.
1831         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1832         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1833
1834 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1835
1836         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1837         prevent compiler warning
1838
1839 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1840
1841         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1842         moved to level 0 and declared as static. Also they are explicit
1843         placed in access bank. This was necessery because some times they
1844         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1845         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1846         optimizations. Currently only compare to unsigned char is implemented,
1847         * src/pic16/gen.c: added fReturnIdx array,
1848         * (struct resolvedIfx) is moved to gen.h and made public,
1849         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1850         * (aopForSym): added an optimization to directly store in stack of
1851         the operand of a SEND iCode,
1852         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1853         but as registers instead (AOP_REG) using the fReturnIdx array,
1854         * (pic16_freeAsmop): remove the freed register from the
1855         _G.sregsAlloc field,
1856         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1857         a compare of 'WREG',
1858         * (pic16_popGetTempRegCond): changed function prototype, now
1859         function takes also a bitVector argument v which holds the current
1860         set of registers that are allocated for stack access by aopForSym,
1861         registers allocated in aopForSym for accessing stack symbols are not
1862         any more part of the functions usedRegs field,
1863         * (genCall): some times aopOp is called for a stack variable to be
1864         send, aopForSym might perform the push, if this is true make sure
1865         that genCall doesn't push the variable twice by testing _G.resDirect,
1866         * (genFunction): changed testing for unspecified interrupt number
1867         from 256 to INTNO_UNSPEC,
1868         * modified selection scheme of frame pointer generation. Previously
1869         if function did use local registers a frame pointer was generated,
1870         now a frame pointer is generated only if function has arguments
1871         (that need PLUSW2 register access), or has stack arguments, or the
1872         compiler is not instructed to omit the frame pointer,
1873         * (genEndFunction): before restoring local registers that were saved
1874         in the function preamble, also restore the registers that *might*
1875         have been allocated for stack access,
1876         * (genRet): removed some old comments,
1877         * (genCmp, the active (RN's) version): added a call to the
1878         pic16_genCmp_special function to perform the compare with a more
1879         robust and optimized way,
1880         * (genInline): a feature has been added in inline code generation,
1881         which allows a wildcard variable substitution when writing inline
1882         assembly. Code is incomplete and experimental therefore undocumented,
1883         * (genCast): changed order of aopOp for result and right to allow
1884         aopForSym to directly load the result if possible,
1885         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1886         perform an optimized compare on some selected special occasions,
1887         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1888         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1889         generate an IVT any more,
1890         * src/pic16/main.c (pic16_optionsTable): added command line option
1891         --optimize-cmp,
1892         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1893         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1894         macros,
1895         * src/pic16/NOTES: Raphael Neider added in list of active developers
1896         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1897         jumptable_end to prevent bug #,
1898         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1899         inCond and outCond fields,
1900         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1901         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1902         turn off register spilling,
1903         * (packRegsForOneUse): synced with other ports' versions although it
1904         is not used currently,
1905         * (pic16_packRegisters): added an optimization while reading
1906         structure bitfields, some registers may be saved (malloc code is
1907         decreased by 80 bytes)
1908
1909 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1910
1911         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1912         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1913         this can be optimized more?
1914
1915 2005-03-10 Raphael Neider <rneider AT web.de>
1916
1917         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1918           genNearPointerGet): (hopefully) fixed access to bitfields via
1919           pointers (p->bitN = x; and x = p->bitN; failed)
1920
1921 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1922
1923         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1924
1925 2005-03-09 Raphael Neider <rneider AT web.de>
1926
1927         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1928
1929 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1932         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1933           (regTypeNum): set REG_BIT type if necessary
1934         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1935         * support/regression/tests/critical.c: check bug 1144613
1936
1937 2005-03-02 Raphael Neider <rneider AT web.de>
1938
1939         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1940
1941 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1942
1943         * src/avr/ralloc.c (serialRegAssign),
1944         * src/ds390/ralloc.c (serialRegAssign),
1945         * src/hc08/ralloc.c (serialRegAssign),
1946         * src/mcs51/ralloc.c (serialRegAssign),
1947         * src/pic/ralloc.c (serialRegAssign),
1948         * src/pic16/ralloc.c (serialRegAssign),
1949         * src/xa51/ralloc.c (serialRegAssign),
1950         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1951
1952 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1953
1954         * src/SDCCast.c (decorateType): fixed bug 1124787
1955
1956 2005-02-20 Hubert Sack <sack AT digiplan.de>
1957         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1958
1959         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1960         patch #1121755
1961
1962 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1963
1964         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1965         to keep the correct label reference count when adding/removing references
1966         to labels. A peephole file using this is appended to patch #1144962.
1967
1968 2005-02-14 Raphael Neider <rneider AT web.de>
1969
1970         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1971         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1972         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1973           retrievals of result operand's value on assignment
1974
1975 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1976
1977         * device/include/pic16/string.h: modified prototype for memccpy()
1978         to memccpy(void *, void *, char, size_t)
1979         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1980         check whether to omit frame pointer or not,
1981         * (genInline): convert all occurences of "\n" to LF in inline
1982         assembler blocks, this helps formatting the inline text,
1983         * (pic16_loadFSR0): modified prototype,
1984         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1985         removed some 8051 legacy code,
1986         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1987         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1988         before allocating temporary registers in functions,
1989
1990 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1991
1992         * support/regression/tests/bitvars.c: corrected the "fix"
1993
1994 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1995
1996         * support/regression/tests/bitvars.c,
1997         * support/regression/tests/bitwise.c,
1998         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1999
2000 2005-02-10 Raphael Neider <rneider AT web.de>
2001
2002         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2003           different size for Alpha
2004         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2005
2006 2005-02-09 Raphael Neider <rneider AT web.de>
2007
2008         * src/SDCC.lex(doPragma) : save and restore warning options as well
2009           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2010         * have #pragma less_pedantic set the errorlevel to WARNING
2011           (fixes #1117001)
2012         * (cloneOptimize) : fixed wrong malloc's size
2013         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2014           facilitate correct handling of #pragma (save|restore)
2015
2016 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2017
2018         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2019
2020 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2021
2022         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2023
2024 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2025
2026         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2027
2028 2005-02-02 Raphael Neider <rneider AT web.de>
2029
2030         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2031         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2032         * (pic16_storeForReturn): fixed to allow returning function pointers
2033         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2034         * device/include/pic16/{stddef.h,stdbool.h}: added
2035
2036 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2037
2038         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2039
2040 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2041
2042         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2043         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2044          appeared to be required
2045
2046 2005-01-31 Borut Razem <borut.razem AT siol.net>
2047
2048         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2049           include/mcs51 and include/z80 directories to the package
2050
2051 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2052
2053         * src/hc08/gen.c (genFunction): fixed bug #1112752
2054
2055 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2056
2057         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2058
2059 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2060
2061         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2062
2063 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2064
2065         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2066
2067 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2068
2069         * device/include/c8051fxxx.h: removed these 6 files
2070         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2071
2072 2005-01-26 Raphael Neider <rneider AT web.de>
2073
2074         * src/pic16/gen.c (genAssign): fixed assignment from longs
2075           in codespace (were cut to three bytes)
2076         * (genDummyRead): implemented (except for CODESPACE...),
2077           fixed bug #1108575
2078         * src/pic16/glue.c (emitStatistics): beautified
2079         * device/lib/pic16/libm/Makefile: added include path
2080
2081 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2082
2083         * src/z80/gen.c (aopPut): fixed bug #1103902
2084
2085 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2086
2087         * device/lib/expf.c: fixed bug #1095792
2088
2089 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2090
2091         * device/lib/pic16/libm: added Math library sources
2092
2093 2005-01-24 Raphael Neider <rneider AT web.de>
2094
2095         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2096           to enable upcast to pCodeOpReg2 (there is no type tag to
2097           differenciate the two and pic16_popGet2p cast into PCOR2)
2098         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2099           (sizeof(sectNames) changed to sizeof(sectName))
2100           Both patches fix segfaults under MinGW.
2101
2102 2005-01-23 Raphael Neider <rneider AT web.de>
2103
2104         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2105           Safe_[mc]?alloc()'ed variables
2106         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2107           of (byte sized) temporaries (assign them to WREG for now)
2108         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2109           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2110           this might fix SIGSEGVs on MinGW...
2111         * src/SDCCopt.c (killDeadCode): restored original behaviour
2112           (volatile operands might get thrown away though)
2113
2114 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2115
2116         * src/pic16/gen.c: fixed bug #1106975,
2117         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2118         pointer update, INTCON is saved, global interrupts are disabled and
2119         restored after updateing TOS.
2120         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2121         * added function attribute 'shadowregs' to take advantage of shadow
2122         registers,
2123         * added function attribute 'wparam' as an alternative to the wparam
2124         pragma,
2125         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2126         user declares a non-ISR function as 'shadowregs',
2127         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2128
2129 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2130
2131         * .version: bumped version number to 2.4.8
2132         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2133         pic16 port,
2134         * device/lib/pic16/libio/i2c/: I2C module support library,
2135         * device/include/pic16/i2c.h: I2C support library header,
2136         * device/lib/pic16/libc/stdio/: standard IO support sources,
2137         * (printf_small.c): printf_small() source, supports float print,
2138         * (printf_tiny.c): printf_tiny() source, does not support floats,
2139         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2140         enable global optimizations for entire library source, other
2141         Makefiles in the source tree are also modified to reflect this,
2142         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2143         function,
2144         * doc/sdccman.lyx: updated to reflect new changes,
2145         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2146         sym->onStack if-case,
2147         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2148         sbit, idata, _idata, xdata, _xdata,
2149         * added pragma library, to link an external library, (see doc),
2150         * removed command line options, --pomit-config-words, --pomit-ivt,
2151         --pleave-reset-vector,
2152         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2153         when calling assembler to reflect memory model used, also define
2154         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2155         reflect stack model used,
2156         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2157         on stack return NULL,
2158
2159 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2160
2161         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2162           of the operands is volatile. Fixes #1020220
2163
2164 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2165
2166         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2167         * (OptimizeRegUsage): make sure that there is really no other flow where
2168           the first pCode is used
2169
2170 2005-01-22 Raphael Neider <rneider AT web.de>
2171
2172         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2173           to fix #1106967 (pCode->seq are not set up correctly)
2174
2175 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2176
2177         * src/SDCCglue.c (glue): make sure code area is declared before the
2178         static initialization area.
2179
2180 2005-01-21 Raphael Neider <rneider AT web.de>
2181
2182         * device/lib/Makefile.in: fixed test for pic16 install dir
2183         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2184           optimizations
2185         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2186           added --optimize-goto compiler switch and pragma wparam documentation
2187         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2188         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2189           and PRODH closing bug #1071770 (peephole optimizer)
2190
2191 2005-01-19 Raphael Neider <rneider AT web.de>
2192
2193         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2194           cmdLine buffers (used when calling sdcpp...) are large enough
2195           (MAX_PATH=256 truncates arguments leading to system halts when
2196           used in MinGW...)
2197         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2198         * (genUminus): rewritten to for efficiency
2199         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2200           used uninitialized in some cases)
2201         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2202           copy the third byte from the int -- now assumes 0x80 (data memory)
2203         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2204           operands (genAddLit expects the iCode's operands to swapped as
2205           well), fixed leftover bytes (crashed for short left operands)
2206         * (pic16_genMinusDec): performance improvements, removed false
2207           PIC14 emitSKPNCs
2208         * (pic16_genMinus): fixed to cope with differently sized operands
2209         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2210           for --obanksel > 1
2211         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2212         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2213           new banksel optimization
2214         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2215           analysis for temporary registers (segfaults...)
2216         * src/pic16/peeph.def: added rule
2217
2218 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2219
2220         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2221         which converts a float number to its ASCII representation
2222         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2223         functions to convert the fractional and integer part of a float to ASCII,
2224         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2225         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2226         ram
2227         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2228         _STATMEM macros,
2229         * device/include/pic16/adc.h: added GPL info,
2230         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2231         a pCodeOp as tested operand,
2232         * (genNearPointerGet): optimized bit testing, does not use
2233         intermediate register for bit value, test directly instead with
2234         BTFSS, BTFSC, works only for single bits,
2235         * (genpic16Code): dump the name of the iCode in the asm,
2236         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2237         renamed to pic16_decodeOp,
2238         * (serialRegAssign): do not allocate a temporary register for iCode
2239         sequences that test a single bit for 1/0
2240
2241 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2242
2243         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2244         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2245         access stack and frame pointers. They are initially assigned to
2246         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2247         accessing SFRs. Updated all occurences of modification of stack or
2248         frame pointer in gen.c and pcode.c,
2249         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2250         assigning of a literal value to pointers,
2251         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2252         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2253         selected
2254
2255 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2256
2257         * doc/sdccman.lyx: update documentation about stack pragma, added
2258         some info for stack memory models
2259
2260 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2261
2262         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2263
2264 2005-01-08 Raphael Neider <rneider AT web.de>
2265
2266         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2267           udata sections to fix bug #1097823
2268
2269 2005-01-05 Raphael Neider <rneider AT web.de>
2270
2271         * src/pic16/gen.c (genGenericShift): added handling of differently
2272           sized left operand and result
2273
2274 2005-01-04 Raphael Neider <rneider AT web.de>
2275
2276         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2277         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2278           to hold the condition bit)
2279         * added new version of genCmp (old code available via #define)
2280         * added new version of genShiftLeft/genShiftRight in a generic
2281           way, now supports shifting by negative values
2282         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2283           shiftCount (expected by genGenericShift)
2284         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2285         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2286           dump
2287         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2288           is an invalid literal too...)
2289
2290 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2291
2292         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2293         from Raphael Neider,
2294         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2295         for 8-bit literals. This fixes some literal operands which are sign
2296         extended to 16-bits ints when instruction needs only 8-bits.
2297
2298 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2299
2300         * device/lib/logf.c: added mcs51 assembly version
2301         * device/lib/expf.c: added mcs51 assembly version
2302         * device/lib/_logexpf.c: new shared asm code for expf and logf
2303         * device/include/math.h: add defines for assembly math library
2304         * device/lib/Makefile.in: build new _logexpf.c
2305         * device/lib/libfloat.lib: use new _logexpf.c
2306
2307 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2308
2309         * src/pic/device.c
2310         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2311           device types which have less than 0x7f registers.
2312
2313 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2314
2315         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2316
2317 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2318
2319         * device/lib/printf_fast.c: only build on supported arch.
2320         * device/lib/printf_tiny.c: only build on supported arch.
2321         * device/lib/printf_fast_f.c: only build if asm float lib
2322         * device/lib/_fsget1arg.c: only build if asm float lib
2323         * device/lib/_fsget2args.c: only build if asm float lib
2324         * device/lib/_fsnormalize.c: only build if asm float lib
2325         * device/lib/_fsreturnval.c: only build if asm float lib
2326         * device/lib/_fsrshift.c: only build if asm float lib
2327         * device/lib/_fsswapargs.c: only build if asm float lib
2328         * device/include/stdio.h: don't provide print_fast,
2329           print_fast_f, print_tiny prototypes if --xstack used
2330
2331 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2332
2333         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2334         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2335           to the SOURCES
2336
2337 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2338
2339         * device/lib/printf_fast_f.c: same as printf_fast, but
2340           with floating point enabled
2341         * device/lib/printf_fast.c: minor tweaks
2342         * device/include/stdio.h: add printf_fast_f
2343
2344 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2345
2346         * src/SDCCmain.c: make --float-reent default for mcs51
2347         * device/lib/_fsadd.c: added mcs51 assembly version
2348         * device/lib/_fssub.c: added mcs51 assembly version
2349         * device/lib/_fsmul.c: added mcs51 assembly version
2350         * device/lib/_fsdiv.c: added mcs51 assembly version
2351         * device/lib/_fseq.c: added mcs51 assembly version
2352         * device/lib/_fsneq.c: added mcs51 assembly version
2353         * device/lib/_fsgt.c: added mcs51 assembly version
2354         * device/lib/_fslt.c: added mcs51 assembly version
2355         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2356         * device/lib/Makefile.in: add _fscmp to build
2357         * device/lib/libfloat.lib: add _fscmp to build
2358
2359 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2360
2361         * device/lib/_fs2slong.c: added mcs51 assembly version
2362         * device/lib/_fs2sint.c: added mcs51 assembly version
2363         * device/lib/_fs2schar.c: added mcs51 assembly version
2364         * device/lib/_fs2ulong.c: added mcs51 assembly version
2365         * device/lib/_fs2uint.c: added mcs51 assembly version
2366         * device/lib/_fs2uchar.c: added mcs51 assembly version
2367         * device/lib/_slong2fs.c: added mcs51 assembly version
2368         * device/lib/_sint2fs.c: added mcs51 assembly version
2369         * device/lib/_schar2fs.c: added mcs51 assembly version
2370         * device/lib/_ulong2fs.c: added mcs51 assembly version
2371         * device/lib/_uint2fs.c: added mcs51 assembly version
2372         * device/lib/_uchar2fs.c: added mcs51 assembly version
2373         * device/include/float.h: added #define to select asm vs c
2374
2375 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2376
2377         * device/lib/printf_fast.c: improvements to float output
2378         * device/include/float.h: add defines for assembly float library
2379         * device/lib/_fsget1arg.c: receive 1 float arg
2380         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2381         * device/lib/_fsnormalize.c: normalize a float
2382         * device/lib/_fsreturnval.c: return float, various helper routines
2383         * device/lib/_fsrshift.c: right shift a float's mantissa
2384         * device/lib/_fsswapargs.c: swap 2 floats
2385         * device/lib/Makefile.in: build these 6 new files for mcs51
2386         * device/lib/libfloat.lib: add these 6 files to the library
2387
2388 2004-12-26 Borut Razem <borut.razem AT siol.net>
2389
2390         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2391           built by gcc 3.4.2
2392
2393 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2394
2395         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2396           and fully reentrant and register bank neutral.
2397         * device/lib/printf_fast.c: added float (not enabled by default),
2398           added compact/slower integer (also not enabled by default),
2399           improved size/speed of fast integer code, other minor changes
2400         * device/include/stdio.h, device/lib/Makefile.in,
2401           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2402
2403 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2404
2405         * src/pic16/pcode.c: declaring variables other than at the start of a
2406           block is not supported in C by VC6.
2407
2408 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2409
2410         * applied a previous patch from Raphael Neider that wasn't included
2411         in the previous commits, which fixes infinite loops within jumptable
2412         improvements,
2413         * made some fixes that previous patches introduced
2414
2415 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2416
2417         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2418         that fixes an issue with AOP_PCODE asmop's offset,
2419         * (pic16_popCopyReg): update instance field too,
2420         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2421         function of pic port,
2422         * (genCmp, genAnd, genAssign),
2423         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2424
2425 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2426
2427         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2428         variables initial values to idata section,
2429         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2430         variables in some functions. This utilizes parmBytes field of iCode
2431         structure to hold the offset of the variable in stack. (might be
2432         able to use the stack field too?)
2433         * applied patch from Raphael Neider # ### , # ###
2434         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2435         variable initial values in idata section,
2436         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2437         for static variables with initial value
2438         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2439         applied fix in while loop from Raphael Neider.
2440
2441 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2442
2443         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2444         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2445         * src/ds390/ralloc.c (serialRegAssign): spill bits
2446         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2447         * support/Util/SDCCerr.c,
2448         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2449         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2450         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2451
2452 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * device/include/sdcc-lib.h: inserted LGPL, added includes
2455           asm/ds390/features.h and asm/mcs51/features.h
2456         * device/include/asm/default/features.h,
2457         * device/include/asm/gbz80/features.h,
2458         * device/include/asm/z80/features.h: added empty _AUTOMEM
2459           and _STATMEM
2460         * device/include/asm/ds390/features.h,
2461         * device/include/asm/mcs51/features.h: added files with defines for
2462           _AUTOMEM and _STATMEM indicating automatic and static storage class
2463         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2464         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2465         * src/SDCCicode.c (geniCodeCast),
2466         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2467         * src/SDCCloop.c (loopInduction): removed unused variable lr
2468         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2469           to convertToFcall to include char modulo (RFE 1065037), added check
2470           if left operand is unsigned and use abs of literal value
2471         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2472           as it doesn't work after conversion from peephole.def to peephole.rul
2473         * src/mcs51/gen.c (toBoolean): added check for size,
2474           (genModOneByte): optimized code for signed char modulo a literal
2475           power of 2 (thanks to Hubert Sack),
2476           (genRRC): removed unnecessary "clr c",
2477           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2478         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2479           jump optimization,
2480           swapped rules 256.c and 256.d,
2481           extended 256.d by using new multiple checks (thanks Erik),
2482           added rules 256.e and 256.f,
2483           updated rule 261.a and 261.b to new generated code
2484         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2485
2486 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2487
2488         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2489           induction related bugs, including first part of bug #1074377
2490
2491 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2492
2493         * applied patch from bug-report #1076292,
2494         * applied patches for genAnd and Goto-optimizations for Raphael
2495         Neider,
2496         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2497         dump a less iCode information,
2498         * src/pic16/device.h (pic16_options_t): added field debgen,
2499         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2500         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2501         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2502         puclic,
2503         * (various functions): added macros FENTRY and FENTRY2 to functions,
2504         to emit function prologue,
2505         * (various functions): fixed indentation,
2506         * (genNearPointerGet): fixed loading of FSR0,
2507         * (genPackBits): applied patch from Raphael Neider to fix updating
2508         of FSR0 and touching only the modified bits,
2509         * src/pic16/genarith.c (various functions): added macros FENTRY to
2510         emit function prologue in comments,
2511         * src/pic16/pcode.h: added functions debugf2, debugf3,
2512         * src/pic16/ralloc.c: partial fix for packForPush caused
2513         segmentation fault,
2514
2515 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2516
2517         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2518           <stsp AT users.sourceforge.net> with reversed byte order
2519         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2520
2521 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2522
2523         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2524           bug #1074377
2525         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2526         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2527
2528 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2529
2530         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2531
2532 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2533
2534         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2535           conditions,
2536           (setFromConditionArgs): friendly operand parser for peephole rules,
2537           (operandBaseName, operandsNotRelated): new peephole condition
2538           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2539           architecture specific register naming into account, handles n-way
2540           comparisons, and supports quoted literals
2541         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2542
2543 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2544
2545         * src/mcs51/peeph.def: fixed bug #1076940
2546
2547 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2548
2549         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2550
2551 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2552
2553         Adding support for replacing ljmps with sjmps in jumptables
2554         generated for switch statements. For now you need to set the
2555         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2556         Now 4 algorithms for mcs51 jumptable generation are used:
2557         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2558         addresses loaded pc-relative for up to 112 cases and stack-pushing
2559         target addresses loaded with offset from dptr for up to 256 cases.
2560
2561         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2562         * src/mcs51/main.c: adapted constants for switch table generation
2563         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2564
2565 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2566
2567         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2568         * support/regression/tests/bug1057979.c: added test for bug 1073386
2569
2570 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2571
2572         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2573         compilers
2574
2575 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2576
2577         * src/pic16/device.h,
2578         * src/pic16/genarith.c,
2579         * src/pic16/glue.c,
2580         * src/pic16/main.c,
2581         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2582
2583 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2584
2585         Large cummulative patch for pic16 port.
2586         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2587         to call when a stack overflow occurs,
2588         * (malloc.h): added CVS Id tag,
2589         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2590         variable,
2591         * added libc directory. The current version of LibC contains string
2592         functions, ctype functions and macros and some functions of the
2593         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2594         be extensively tested in the future. Standard disclaimer here.
2595         Library is not automatically build yet. But one can build it by
2596         invoking 'make' inside the libc directory.
2597         * added ADC library under libio. Preliminary version yet.
2598
2599         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2600         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2601         aopForRemat() now and not by pic16_aopOp(),
2602         * (pic16_popGetTempReg): removed warning messgae when allocating
2603         temporary registers, its a buggy feature and will be removed,
2604         * (pic16_popGet): set register instance field in AOP_CRY,
2605         * (pic16_outBitC): fixed for results in size greater than 1,
2606         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2607         * (pic16_storeForReturn): optimized return of 0,
2608         * (genCmp): experimental code for new genCmp which uses PIC18's
2609         special compare&skip instructions. Initial tests fail some times
2610         with variables grater than 1 byte in size, so new code is disabled,
2611         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2612         a single bit,
2613         * (genCast): began a fix to optimize the casting of a bit to another
2614         bit, now assigning a bitfield to another bitfield will fail, sorry,
2615         * src/pic16/main.c: disabled the use of lr-support feature,
2616         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2617         * added some function prototypes, added function _debugf prototype,
2618         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2619         bits with offset (case PO_GPR_BIT),
2620         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2621         command line,
2622         * (isBankInstruction): modified to return 0 for no banking instruction,
2623         and 1 for banking instruction,
2624         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2625         caused stop processing pCodes after a inline assembly block,
2626         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2627         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2628         registers when it shouldn't,
2629         * src/pic16/ralloc.c (allocReg): add preliminary support for
2630         supporting a limited set of temporary registers,
2631
2632 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2633
2634         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2635           genDataPointerSet): ensure assignments always copy in MSB to LSB
2636           order,
2637           (loadRegFromAop): recognize CLRH optimization,
2638           (genFunction): optimize RECEIVE iCodes in reentrant functions
2639
2640 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2641
2642         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2643           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2644           selected.
2645         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2646         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2647           contiguous with data
2648
2649 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2650
2651         * device/lib/_gptrget.c (_gptrget),
2652         * device/lib/_gptrgetc.c (_gptrgetc),
2653         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2654           instead of sjmp to ret
2655         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2656           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2657
2658 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2659
2660         * .version: bumped version to 2.4.7
2661         * device/lib/_gptrget.c (_gptrget): is now _naked
2662         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2663         * device/lib/_gptrput.c (_gptrput): is now _naked
2664         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2665           (createFunction): fixed xstack
2666         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2667         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2668           or bit either,
2669           (geniCodeCritical): store original interrupt state in an iTemp bit
2670           var unless stack-auto
2671         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2672         * src/SDCCmain.c (setIncludePath): added include/target to search path
2673         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2674         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2675           prototype,
2676           (processFuncArgs): put bit vars in bit area
2677         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2678           unsaveRBank): fixed xstack,
2679           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2680           (genFunction, genEndFunction): fixed xstack,
2681           (genAssign): optimization don't walk backwards through mem
2682         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2683         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2684         * support/regression/Makefile: also make library (for stack-auto) when
2685           making "all" and added "test-mcs51-xstack-auto"
2686         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2687         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2688         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2689         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2690         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2691           make-library by MAKE_LIBRARY
2692         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2693           regression tests for xstack
2694         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2695         * support/regression/tests/critical.c: test for critical on mcs51
2696
2697 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2698
2699         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2700           built version of sdcc instead of installed version
2701
2702 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2703
2704         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2705         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2706           vprintf.c now
2707         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2708         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2709           WARNING: remove device/lib/build/z80/printf.o by hand when
2710           updating from previous build!
2711         * device/lib/z80/printf.c: updated comment
2712         * support/regression/tests/bug1057979.c: test all ports now
2713         * support/regression/tests/bug1065458.c: file added
2714
2715 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2716
2717         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2718           *_start and *_end symbols for static functions
2719
2720 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2721
2722         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2723           and search crt0.o in all library paths,
2724           (setIncludePath): proper handling of --nostdinc,
2725           (setLibPath): proper handling of --nostdlib
2726         * support/regression/Makefile,
2727         * support/regression/ports/ds390/spec.mk,
2728         * support/regression/ports/gbz80/spec.mk,
2729         * support/regression/ports/hc08/spec.mk,
2730         * support/regression/ports/mcs51/spec.mk,
2731         * support/regression/ports/mcs51-large/spec.mk,
2732         * support/regression/ports/mcs51-stack-auto/spec.mk,
2733         * support/regression/ports/z80/spec.mk: use include and lib files from
2734           built version of sdcc instead of installed version
2735         * doc/sdccman.lyx: fixed typo in --nostdinc
2736
2737 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2738
2739         * src/pic/pcode.c,
2740         * src/pic/device.c,
2741         * src/pic/ralloc.c,
2742         * src/pic/gen.c : added support to generate code for struct bit fields.
2743
2744 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2745
2746         * as/xa51/xa_version.h,
2747         * device/include/errno.h,
2748         * device/include/regc515c.h,
2749         * device/lib/_itoa.c,
2750         * device/lib/_ltoa.c,
2751         * device/lib/ser_ir_cts_rts.c,
2752         * sim/ucsim/xa.src/glob.cc,
2753         * sim/ucsim/xa.src/inst_gen.cc,
2754         * sim/ucsim/xa.src/xa_bit.cc,
2755         * sim/ucsim/xa.src/xa_sfr.cc,
2756         * sim/ucsim/z80.src/inst_dd.cc,
2757         * sim/ucsim/z80.src/inst_fdcb.cc,
2758         * support/scripts/keil2sdcc.pl,
2759         * src/pic16/pic16.dsp,
2760         * src/pic16/pic16a.dsp: corrected cvs line endings
2761         * device/lib/printf_large.c: fixed bug 1057979
2762         * src/pic16/gen.c: fixed non-C standard code
2763         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2764         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2765         * support/regression/ports/mcs51/support.c: reload T1 asap
2766         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2767           pdata use and clear idata startup behaviour
2768         * support/regression/tests/bug1057979.c: added
2769
2770 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2771
2772         * device/examples/ds390/ow390/ad26.h,
2773         * device/examples/ds390/ow390/cnt1d.h,
2774         * device/examples/ds390/ow390/crcutil.c,
2775         * device/examples/ds390/ow390/ownet.h,
2776         * device/examples/ds390/ow390/owsesu.c,
2777         * device/examples/ds390/ow390/swt12.h,
2778         * device/examples/ds390/ow390/swtoper.c,
2779         * device/examples/ds390/ow390/temp10.h,
2780         * device/examples/ds390/ow390/thermodl.c,
2781         * device/examples/ds390/tinitalk/tinitalk.dsp,
2782         * device/examples/ds390/tinitalk/tinitalk.dsw,
2783         * device/examples/mcs51/clock/hw.h,
2784         * device/examples/mcs51/simple2/go.bat,
2785         * device/examples/serialcomm/windows/serial.h,
2786         * device/examples/xa51/dummy.c,
2787         * device/examples/xa51/hello.c,
2788         * device/include/80c51xa.h,
2789         * device/include/at89x051.h: corrected cvs line endings
2790
2791 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2792
2793         * src/pic16/main.c (options): added command line --gstack, to trace
2794         stack over/under flows,
2795         * added pragma 'wparam' to allow passing first byte of function
2796         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2797         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2798         call to __gstack_test function and sets up the symbol as extern,
2799         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2800         * popaop): added call to pic16_testStackOverflow,
2801         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2802         wparamList list,
2803         * (genCall, genPcall): now all parameters are passed via stack
2804         except in functions that are pass to wparam pragma in which WREG is
2805         used too,
2806         * (genPcall): REENTRANT flag is checked to see if variable prototype
2807         contains reentrant keyword, don't call a non-reentrant function, via
2808         a reentrant function pointer or vice versa, functions are never
2809         passed via WREG,
2810         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2811         D.Winkler,
2812         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2813         SIGSEGV when accessing a NULL register stucture,
2814         * (pic16_printGPointerType): modified to handle UPPER modifier for
2815         function initializers, changed prototype of function to simpler one,
2816         * (pic16_printIvalFuncPtr): check to see if function is already
2817         added in externs list,
2818         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2819         optimized a move from W to SFR with a move to the same register
2820         later after a CALL,
2821         * device/lib/pic16/debug: NEW directory, contains debug features
2822         which are enabled when linking with libdebug.lib, currently command
2823         line option --gstack enables stack pointer tracing for over/under
2824         flow, corresponding sources are in debug/gstack
2825
2826 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2827
2828         * doc/sdccman.lyx: updated SDCC version,
2829         * (PIC16 port): update list of command line options,
2830         * src/pic16/device.h (structure pic16_options_t): added field gstack
2831         to enable stack overflow tracing on push/pops,
2832         * src/pic16/device.c (statistics structure): added statistics
2833         structure,
2834         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2835         pic16_dump_int_registers): increase statistics counters for each
2836         * variable which is encountered
2837         * (pic16_dump_usection): emit each .udata variable to its own udata
2838         section,
2839         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2840         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2841         parameters via stack, otherwise use old scheme,
2842         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2843         assembler output file,
2844         * src/pic16/main.c: added command line options --gstack to enable
2845         push/pop tracing for stack overflow,
2846         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2847         instructions): added size of each instruction,
2848         * (pic16_countInstruction): estimate size of instructions in
2849         the_pFile list, inline assembly blocks are not counted,
2850         * (pic16_FixRegisterBanking): trace previous register usage, when
2851         banksel optimizations is greater than 0, don't emit a redudant
2852         banksel directive,
2853
2854 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2855
2856         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2857         * src/pic16/ralloc.c : applied same fix for pic16.
2858         * src/pic/gen.c : tidied it up a little.
2859
2860 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2861
2862         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2863         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2864
2865 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2866
2867         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2868
2869 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2870
2871         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2872         non-reentrant function __modsint in the interrupt function (thus
2873         corrupting math operations during serial I/O)
2874         * device/lib/ser_ir.c: as above, changed buffersize
2875         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2876         256.c,d for zeroing
2877         * doc/Makefile: added option -t for rsync
2878
2879 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2880
2881         * src/SDCCast.h (struct ast),
2882         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2883
2884 2004-10-20 Borut Razem <borut.razem AT siol.net>
2885
2886         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2887         package
2888
2889 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2890
2891         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2892         makefile targets,
2893         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2894         support functions to replace long sequences of MOVFF's from access
2895         bank registers to stack and vice versa,
2896         * src/pic16/device.h: added new field opt_flags, where optimization
2897         flags can be set to enable certain features,
2898         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2899         * pBlock, (genFunction, genEndFunction): surroung loop for
2900         saving/loading used registers in stack with PC_INFO pCodes,
2901         INF_LREGS. Code in between can then be optimized by pCode optimizer
2902         to support function calls,
2903         * (genDataPointerSet): fixed bug which loaded float fields in
2904         structures with corrupt data,
2905         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2906         in a standard way debug info on stderr. Feature used for developing
2907         and debugging only,
2908         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2909         obsolete chunks of code,
2910         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2911         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2912         * pic16/src/pcode.c (pic16_newpCodeInfo,
2913         * (pic16_newpCodeOpLocalRegs),
2914         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2915         feature,
2916         * (pic16_pCodeConstString): printing of the initial value of a
2917         symbol as a comment is inhibited since parsing was already done by
2918         copyStr and output is corrupt,
2919         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2920
2921 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2922
2923         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2924
2925 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2926
2927         * as/mcs51/lkarea.c: removed old K&R style,
2928           (lnksect): changed check on boundary error,
2929           (lnksect2): changed check on boundary error,
2930           (lnksect2): extend XSTK to end of page if size = 1
2931         * as/mcs51/lkmain.c: removed old K&R style,
2932           (Areas51): create l_IRAM symbol
2933         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2934         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2935           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2936         * device/lib/_mullong.c: added version to be compiled with xstack
2937         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2938         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2939         * device/lib/mcs51/crtxstack.asm: fixed comment
2940         * src/SDCCglue.c: maxInterrupts defaults to 0,
2941           (emitMaps): added pdata,
2942           (createInterruptVect): (re)moved default,
2943           (glue): added pdata,
2944           (glue): moved __start__xstack to XSTK with default size 1
2945         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2946           and options.float_rent when options.stackAuto is set,
2947           (linkEdit): only write XDATA_NAME if provided on command line
2948         * src/SDCCmem.h,
2949         * src/SDCCmem.c: added pdata
2950         * src/port.h: added pdata_name to PORT
2951         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2952           (saveRegisters, unsaveRegisters): removed usage of B,
2953           (genMinus): fixed accumulator clash,
2954           (genJumpTab): added comment, this needs another look
2955         * src/mcs51/gen.c: added check for "B in use" paranoia,
2956           added pushB() and popB()
2957         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2958           chance
2959         * src/avr/main.c,
2960         * src/ds390/main.c,
2961         * src/hc08/main.c,
2962         * src/mcs51/main.c,
2963         * src/pic/main.c,
2964         * src/pic16/main.c,
2965         * src/xa51/main.c,
2966         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2967           added PSEG (PAG,XDATA) or NULL to port specifier
2968         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2969         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2970           (_mcs51_genInitStartup): removed __start__xstack equ,
2971           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2972         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2973         * src/z80/gen.c (_rleAppend): fixed warnings
2974         * support/regression/tests/zeropad.c: added pdata test
2975         * .version: bumped to 2.4.6
2976
2977 2004-10-17 Borut Razem <borut.razem AT siol.net>
2978
2979         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2980         as a part of nightly build
2981
2982 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2983
2984         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2985         WREG holds the first byte function parameters,
2986         * (aopForSym): take special case for symbols which are in FARSPACE
2987         but in CODESPACE too,
2988         * (assignResultValue): modified to take into account _G.useWreg,
2989         * (genCall): don't use wreg for parameter passing when function is
2990         declared as reentrant, too, added optimization INCF to stack
2991         pointer when stack parameter count is 1,
2992         * (genFunction, genEndFunction): refurnished and fixed to not using
2993         wreg for passing parameters when function has varargs or is
2994         reentrant, fixed bug with symbol name compare for generating
2995         functions in absolute address,
2996         * (pic16_storeForReturn): refurnished,
2997         * (genCmp): began writing a new version of the function, not ready
2998         yet, therefore it is disabled,
2999         * (genAssign): do not read code memory when assigning a function to
3000         a pointer function,
3001         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3002         array of characters, not pointer,
3003         * (pic16initialComments): in debug mode emit an .ident directive for
3004         the assembler,
3005         * (_process_pragma): emit a new warning type (internal to pic16)
3006         when setting stack to default length, emit a similar warning when
3007         placing a function at absolute address and address is not word aligned
3008         * (_pic16_parseOptions): added 'return TRUE' statement,
3009         * (_pic16_linkEdit): if compiling a source, then add the source's
3010         file object, first in the list of objects to link,
3011
3012 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3013
3014         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3015         * src/pic/main.c : removed VC warning.
3016         * src/pic/gen.c : changed comment.
3017
3018 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3019
3020         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3021         reference to a deprecated symbol _GPTRREG was causing failure to
3022         link. Thanks G. M. Gallant for the info.
3023
3024 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3025
3026         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3027         comments for Bugs item #954788.
3028
3029 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3030
3031         * src/pic16/device.c (pic16_dump_gsection,
3032         * pic16_groupRegistersInSection): handle symbols declared to be in
3033         access bank differently,
3034         * src/pic16/gen.c (struct _G): added field resDirect,
3035         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3036         send values read from stack directly to result and don't allocate
3037         temporary values,
3038         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3039         same registers,
3040         * (pic16_sameRegsOfs): NEW,
3041         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3042         free because they were not allocated from temporary pool,
3043         * pic16_popRegFromString): workaround to fix a problem with
3044         allocating variables twice or never,
3045         * (genGenPointerGet): using PRODL instead of FSR0H,
3046         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3047         instead of FSR0H,
3048         * (genAssign): take advantage of the _G.resDirect flag,
3049         * (genCast): around line 11844, use mov2f instead of directly
3050         MOVFF'ing between operands to account for literal values,
3051         * src/pic16/genutils.c: some new debug functions for gpsim have been
3052         added,
3053         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3054         float with integer part only,
3055         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3056         place variables in access bank
3057         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3058         updated sources to reflect recent changes in gen.c
3059
3060 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3061
3062         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3063         sources that searched for headers in installation path, now the
3064         device/include/pic16 is used,
3065         * src/pic16/glue.c (pic16glue),
3066         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3067         .line directives if not in debug mode, this suppresses assembler's
3068         warnings for ignored directives
3069
3070 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3071
3072         * src/port.h: made reset_regparms prototype void parameter explicit.
3073         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3074         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3075         * doc/sdccman.lyx: documented warning disabling and how to use
3076           printf_large to make it print floats.
3077         * device/include/stdbool.h: NEW
3078         * device/lib/_atof.c,
3079         * device/lib/_divuint.c,
3080         * device/lib/_divulong.c,
3081         * device/lib/expf.c,
3082         * device/lib/printf_large.c,
3083         * device/lib/sincosf.c,
3084         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3085         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3086           a completely reentrant lib.
3087
3088 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3089
3090         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3091         * device/include/pic16/stdio.h: fixed bug with colon
3092
3093 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3094
3095         * device/include/pic16/stdio.h,
3096         * device/include/pic16/stdlib.h,
3097         * device/include/pic16/math.h: NEW
3098         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3099         declared as _naked to reduce overhead
3100         * device/lib/Makefile.in (target port-specific-objects-pic16):
3101         changed * to *.* so to ignore the CVS directory,
3102         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3103         stacked variables back in stack,
3104         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3105         corruption
3106
3107 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3108
3109         * .version: bumped version number to 2.4.5
3110         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3111         * support/Util/SDCCerr.c (messages structure): added entry for
3112         W_POSSBUG2
3113
3114         Large cumulative patch for pic16 port and libraries.
3115         * device/include/pic16/sdcc-lib.h,
3116         * device/include/pic16/stdarg.h,
3117         * device/include/asm/pic16/features.h,
3118         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3119         * device/include/pic16/float.h: changes reentrant keyword with
3120         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3121         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3122         updated target build-libraries to include objects from gptr,
3123         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3124         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3125         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3126         all function headings,
3127         * src/SDCCmain.c: added global parameter userIncDirsSet,
3128         * (parseCmdLine): when option -I is encountered add directory to
3129         userIncDirsSet too,
3130         * src/version.awk: added space between control and long,
3131         * src/pic16/NOTES: added some notes for the port,
3132         * src/pic16/gen.c: added prototype for mov2fp function,
3133         * (fReturnpic16[]): properly named return value registers,
3134         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3135         * (aopForSym): added code to handle symbols with onStack flag set,
3136         symbols onStack are allocated PTRSIZE bytes,
3137         * (aopFreeAsmop): handles special case where asmops are stack objects,
3138         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3139         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3140         added argument lock to trace flaws in allocating temporary registers
3141         when developing port,
3142         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3143         * (pic16_popRegFromString): reenabled allocating a direct register
3144         from string,
3145         * (assignResultValue): various beautifications,
3146         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3147         referenced function argument,
3148         * (genIpush): reenabled to allow stacked arguments, handles only
3149         ic->parmPush iCodes,
3150         * (genCall, genPcall): major changes to allow for variable argument
3151         functions, fixed a bug with falsely restoring stack pointer after
3152         returning from call,
3153         * (genFunction): pending code for critical function,
3154         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3155         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3156         * (genNearPointerGet): fixed bug with indirect reading, was always
3157         reading from INDF0
3158         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3159         pointers,
3160         * (genAddrOf): rewrote code to take address of a stacked function parameter
3161         * (genCast): fixed casting to generic pointer type,
3162         * src/pic16/gen.h: added AOP_STA,
3163         * (struct asmop): added field stk,
3164         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3165         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3166         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3167         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3168         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3169         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3170         generic pointers,
3171         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3172         and library paths,
3173         * (pic16_port structure): generic pointer size is set to 3,
3174         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3175         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3176         compiler warning,
3177         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3178         operand is an iTemp,
3179
3180 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3181
3182         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3183         * debugger/mcs51/simi.c: addapt new syntax of s51
3184
3185 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3186
3187         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3188         * src/pic16/pcode.c: commented out some calls to free() in order to
3189         fix bug #989576,
3190
3191 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3192
3193         * src/SDCCicode.h,
3194         * src/SDCCicode.c (isiCodeInFunctionCall),
3195         * src/avr/ralloc.c (selectSpil),
3196         * src/pic/ralloc.c (selectSpil),
3197         * src/pic16/ralloc.c (selectSpil),
3198         * src/ds390/ralloc.c (selectSpil),
3199         * src/hc08/ralloc.c (selectSpil),
3200         * src/xa51/ralloc.c (selectSpil),
3201         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3202         stack in the middle of a function call sequence (fixes bug #1020268)
3203         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3204         costs associated with the minimum switch case.
3205
3206 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/SDCC.lex: fixed bug #1030549
3209
3210 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3211
3212         * src/SDCCcse.h (struct cseDef),
3213         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3214         over a function call if the CSE is derived from a symbol whose
3215         address has been taken (fixes bug #1029883)
3216         * support/regression/tests/bug-1029883: a new regression test for
3217         this bug
3218
3219 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3220
3221         * src/hc08/gen.c (emitinline): fixed bug #1029778
3222         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3223         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3224         and starts toward RFE #905167)
3225
3226 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3227
3228         * src/pic16/gen.c (mov2f): New function to move an operand to
3229         another without considering if it is a literal or a register,
3230         * (pic16_sameRegs): don't check if they are both AOP_REG,
3231         * (AccRsh): removed andmask=0 lines,
3232         * (genLeftShift): duplicated to be improved in future versions,
3233         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3234         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3235         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3236         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3237         * (insertBankSwitch): fixed inserting banksel directives algorithm
3238         for instructions that follow a skip instruction, this fixes a report
3239         for broken subtraction code generation,
3240         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3241         iCode is a left op, just in case result and right share the same
3242         registers
3243
3244 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * src/hc08/main.c,
3247         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3248         preservation of HX
3249         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3250         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3251         on 2004-09-12; it was buggy
3252
3253 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3254
3255         * src/SDCCsymt.h: removed RESULT_CHECK
3256         * src/SDCCast.c,
3257         * src/SDCCglue.c,
3258         * src/SDCCval.c,
3259         * src/pic/glue.c,
3260         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3261
3262 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3263
3264         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3265         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3266         configuration values no more rejected by compiler, they are assigned
3267         to configuration registers with a warning message instead,
3268         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3269         the for-loop so last conf register is emitted too,
3270         * (_pic16_initPaths): link library libsdcc.lib by default,
3271         * (_hasNativeMulFor): modified test for multiplication according to
3272         Raphael Neider's remarks. Integer multiplication is also done with
3273         support functions,
3274         * device/include/pic16/pic18fregs.h: corrected type error in while
3275         testing and including 18f6720 header file
3276
3277 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3278
3279         * src/pic16/device.h (pic16_options): removed field use_crt,
3280         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3281         until an optimization to handle single bits is added,
3282         * (pic16_loadFSR0): moved before genUnpackBits,
3283         * (genAnd): some white lines removed,
3284         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3285         leave_reset flags in pic16_options when using crt modules,
3286
3287 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3288
3289         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3290           for bugs 898889 & 979599. Also used some safer print instructions.
3291
3292 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3293
3294         * src/pic16/device.h (pic16_options_t): added field use_crt,
3295         crt_name, no_crt,
3296         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3297         catch a probable future bug,
3298         * src/pic16/gen.c: aopIdx function commented out,
3299         * (genAssign): commented out old code which used aopIdx,
3300         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3301         code, added if conditionals to take into account the --use-crt
3302         command line options,
3303         * src/pic16/main.c (pic16_optionsTable): added new command line
3304         options, --use-crt= and --no-crt,
3305         * (_pic16_linkEdit): now the proper crt object is added in the
3306         linker command line except than when --no-crt is specified,
3307         * src/pic16/pcode.c,
3308         * src/pic16/pcode.h: added some structures and functions for a new
3309         optimization scheme to compansate for instruction overhead between
3310         same iCodes, this scheme is currently under development and is not
3311         working in any way,
3312         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3313         to && operator,
3314         * device/lib/pic16/startup/crt0i.c,
3315         * device/lib/pic16/startup/crt0iz.c: added global char variable
3316         __uflags to force the generation of an idata section
3317
3318 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3319
3320         * doc/Makefile,
3321         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3322         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3323
3324 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3325
3326         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3327         Frieder) and clarified the default code optimization mode
3328
3329 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3330
3331         * src/SDCC.lex (doPragma, process_pragma),
3332         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3333         "opt_code_size", and "opt_code_balanced"
3334         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3335         regrouped options by category, added support for category headers
3336         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3337         and "--opt-code-size"
3338         * doc/sdccman.lyx: documented these new options and pragmas
3339         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3340         preference into account
3341
3342 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3343
3344         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3345           geniCodePreDec): Fixed bug 904237 by generating a warning
3346         * src/SDCCerr.h,
3347         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3348
3349 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3350
3351         * src/pic/device.c : When no max ram set validate full memory range.
3352         * src/pic/pcode.c,
3353         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3354
3355 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3356
3357         * device/lib/_gptrget.c,
3358         * device/lib/_gptrput.c: updated comment
3359         * device/lib/calloc.c,
3360         * device/lib/free.c,
3361         * device/lib/malloc.c,
3362         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3363         * src/SDCCcse.c (cseBBlock),
3364         * src/SDCCicode.c (printOperand, geniCodeArray),
3365         * src/SDCCicode.h (struct operand): fixed bug 868103
3366         * support/regression/tests/bug-868103.c: added
3367         * src/SDCCast.c (searchLitOp),
3368         * src/SDCCcse.h (struct cseDef),
3369         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3370         * src/SDCCicode.h (struct operand),
3371         * src/SDCCsymt.h (struct sym_link),
3372         * src/avr/gen.c (hasInc),
3373         * src/ds390/gen.c (hasInc),
3374         * src/hc08/gen.c (genPlusIncr, hasInc),
3375         * src/mcs51/gen.c (hasInc),
3376         * src/pic16/glue.c (pic16_printIvalChar),
3377         * src/pic16/ralloc.c (regWithIdx),
3378         * src/xa51/gen.c (hasInc) : removed warnings
3379         * src/SDCCast.c (createBlock): added comment ???
3380         * src/hc08/ralloc.c: updated comments
3381
3382 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3383
3384         * doc/sdccman.lyx: updated section on switch statements, added
3385         section about semaphore locking
3386         * doc/Makefile: added option -info for latex2html
3387         * device/lib/_gptrget.c,
3388         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3389
3390 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3391
3392         * src/pic/device.h,
3393         * src/pic/device.c,
3394         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3395          maxram is less than 0x100.
3396
3397 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3398
3399         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3400
3401 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3402
3403         * src/port.h,
3404         * src/mcs51/main.c,
3405         * src/ds390/main.c,
3406         * src/z80/main.c,
3407         * src/hc08/main.c,
3408         * src/pic/main.c,
3409         * src/pic16/main.c,
3410         * src/avr/main.c,
3411         * src/xa51/main.c
3412         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3413         a jump table is the best form for a switch statement, including
3414         automatic insertion of missing cases to make the case range
3415         continuous. Developed in collaboration with Frieder Ferlemann.
3416
3417 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3418
3419         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3420         accumulator result if it needs sign extension
3421
3422 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3423
3424         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3425
3426 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3427
3428         * device/lib/gbz80/printf.c,
3429         * device/lib/z80/printf.c: removed define for NULL
3430
3431 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3432
3433         * as/xa51/xa_link.c,
3434         * device/examples/ds390/ow390/ad26.c,
3435         * device/examples/ds390/ow390/cnt1d.c,
3436         * device/examples/ds390/ow390/counter.c,
3437         * device/examples/ds390/ow390/ds2480.h,
3438         * device/examples/ds390/ow390/ds2480ut.c,
3439         * device/examples/ds390/ow390/findtype.c,
3440         * device/examples/ds390/ow390/gethumd.c,
3441         * device/examples/ds390/ow390/owllu.c,
3442         * device/examples/ds390/ow390/ownetu.c,
3443         * device/examples/ds390/ow390/swt12.c,
3444         * device/examples/ds390/ow390/swtloop.c,
3445         * device/examples/ds390/ow390/temp.c,
3446         * device/examples/ds390/ow390/temp10.c,
3447         * device/examples/ds390/ow390/thermo21.c,
3448         * device/examples/ds390/ow390/tinilnk.c,
3449         * device/examples/ds390/ow390/tstfind.c,
3450         * device/examples/serialcomm/windows/serial.cpp,
3451         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3452         * device/include/reg51.h: fixed line endings for cvs
3453
3454 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3455
3456         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3457         packRegsForAccUse, packRegisters): new accumulator register
3458         packing algorithm
3459         * support/regression/ports/hc08/support.c (_putchar): suppress
3460         warning of unused variable
3461         * src/SDCCicode.c: added SWAP entry to codeTable
3462
3463 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3464
3465         * device/lib/sprintf.c: forgot to add this file before previous commit
3466
3467 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3468
3469         * src/pic16/gen.c (genPackBits): added operand right in function
3470         parameters, load result directly if p_type is POINTER (that is
3471         called by genNearPointerSet)
3472         * (genUnPackBits): added operand left in function parameters,
3473         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3474         FSR0 if accessing bitfields,
3475
3476 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3477
3478         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3479           _print_format; updated printf, sprintf, vsprintf
3480         * device/include/asm/default/features.h: corrected comment/define
3481         * device/lib/Makefile.in: added sprintf.c
3482         * device/lib/libsdcc.lib: added sprintf module
3483         * device/lib/printf_large.c,
3484         * device/lib/vprintf.c,
3485         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3486           into these 3 files
3487         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3488         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3489         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3490           hc08 test
3491         * support/regression/tests/zeropad.c: define idata as data for hc08
3492
3493 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3494
3495         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3496         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3497         labels are referenced at least once (even if a reference is not found)
3498         * src/hc08/gen.c (emitcode): set isComment flag for comments
3499         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3500         loads), rules 6a..6b (optimize jumps to return)
3501
3502 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3503
3504         * device/lib/acosf.c (acosf),
3505         * device/lib/asinf.c (asinf),
3506         * device/lib/atanf.c (atanf),
3507         * device/lib/ceilf.c (ceilf),
3508         * device/lib/cosf.c (cosf),
3509         * device/lib/coshf.c (coshf),
3510         * device/lib/cotf.c (cotf),
3511         * device/lib/fabsf.c (fabsf),
3512         * device/lib/floorf.c (floorf),
3513         * device/lib/log10f.c (log10f),
3514         * device/lib/logf.c (logf),
3515         * device/lib/sinf.c (sinf),
3516         * device/lib/sinhf.c (sinhf),
3517         * device/lib/sqrtf.c (sqrtf),
3518         * device/lib/tanf.c (tanf),
3519         * device/lib/tanhf.c (tanhf),
3520         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3521         replaced all instances of "reentrant" in the library functions
3522         defined in math.h with this macro.
3523         * support/regression/tests/float_trans.c: reenabled test for hc08
3524
3525 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3526
3527         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3528         erroneously deleted
3529
3530 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3531
3532         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3533         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3534         multi-byte volatile operands are used
3535         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3536         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3537         initialization to area GSINIT0 so that it would always precede
3538         any static initializers in GSINIT
3539         * support/regression/tests/zeropad.c: fixed idata define for hc08
3540         * support/regression/tests/bug-927659.c,
3541         * support/regression/tests/float_trans.c: disabled tests for hc08
3542         pending missing library routines
3543         * .version: increased version number to 2.4.4 - hc08 port now passes
3544         regression tests
3545
3546
3547 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3548
3549         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3550         * Makefile.common.in,
3551         * as/Makefile,
3552         * as/hc08/Makefile.in,
3553         * as/mcs51/Makefile.in,
3554         * as/z80/Makefile.in,
3555         * debugger/mcs51/Makefile.in,
3556         * device/include/Makefile.in,
3557         * device/lib/Makefile.in,
3558         * doc/Makefile,
3559         * link/Makefile,
3560         * link/z80/Makefile.in,
3561         * packihx/Makefile.in,
3562         * sim/ucsim/main_in.mk,
3563         * sim/ucsim/avr.src/Makefile.in,
3564         * sim/ucsim/doc/Makefile.in,
3565         * sim/ucsim/gui.src/serio.src/Makefile.in,
3566         * sim/ucsim/hc08.src/Makefile.in,
3567         * sim/ucsim/s51.src/Makefile.in,
3568         * sim/ucsim/xa.src/Makefile.in,
3569         * sim/ucsim/z80.src/Makefile.in,
3570         * src/Makefile.in,
3571         * support/cpp2/Makefile.in,
3572         * support/librarian/Makefile,
3573         * support/makebin/Makefile: added DESTDIR to the install path proposed
3574         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3575         * doc/sdccman.lyx: added DESTDIR documentation
3576
3577 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3578
3579         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3580         instruction for interrupt handlers, use fast returns when returning
3581         from high priority interrupts
3582
3583 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3584
3585         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3586         code generation
3587         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3588         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3589         bugs, ported much of Bernhard's code from mcs51
3590         * src/mcs51/gen.c (genSend),
3591         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3592         than one when calling a reentrant function
3593         * device/lib/_mullong.c: defined an alternate struct layout for big
3594         endian ports (hc08)
3595
3596 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3597
3598         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3599         test
3600
3601 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3604         are sane and complete before asking the port its prefered parameter
3605         passing method (fixes bug #1017633)
3606         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3607         and _ret3
3608
3609 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3610
3611         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3612         problem in bitfields >= 8 bits.
3613
3614 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3615
3616         * src/SDCCsymt.c: undid changes that were not meant to be committed
3617
3618 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3619
3620         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3621
3622 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3623
3624         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3625           copied and wrong bit got inverted
3626
3627 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3628
3629         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3630         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3631         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3632         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3633         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3634         assignments to bitfields at known addresses
3635         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3636         reads from bitfields at known addresses
3637         * src/hc08/ralloc.c (packRegisters),
3638         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3639         genhc08Code): optimize pointer get values used as conditionals
3640         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3641         and branch
3642
3643 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3644
3645         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3646         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3647         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3648         as conditionals
3649
3650 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3651
3652         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3653
3654 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3655
3656         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3657         related problems
3658
3659 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3660
3661         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3662
3663 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3664
3665         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3666         mcs51 port
3667
3668 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3669
3670         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3671
3672 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3673
3674         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3675         cases use more compact code.
3676
3677 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3678
3679         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3680
3681 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3682
3683         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3684
3685 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3686
3687         * src/SDCCsymt.h,
3688         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3689         parameter of changePointer() from symbol* to sym_link*
3690         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3691         * src/SDCCsymt.c (compareType): void* type is castable to other
3692         pointers, but not necesarily an exact match.
3693         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3694         is no longer blindly treated as an exact match.
3695         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3696
3697 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3698
3699         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3700
3701 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3702
3703         * src/pic/gen.c,
3704         * src/pic/pcode.c,
3705         * src/pic/ralloc.h,
3706         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3707
3708 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3709
3710         * src/pic/device.c,
3711         * src/pic/device.h,
3712         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3713
3714 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3715
3716         * src/mcs51/gen.c (emitcode): fixed bug #992819
3717
3718 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3719
3720         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3721           there's no need to make it worse
3722
3723 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3724
3725         * src/mcs51/ralloc.c (deassignLR),
3726         * src/ds390/ralloc.c (deassignLR),
3727         * src/hc08/ralloc.c (deassignLR),
3728         * src/z80/ralloc.c (deassignLR),
3729         * src/pic/ralloc.c (deassignLR),
3730         * src/pic16/ralloc.c (deassignLR),
3731         * src/avr/ralloc.c (deassignLR),
3732         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3733         rlivePoint): fixed another part of bug #971834
3734
3735 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3736
3737         * src/z80/main.c: enabled "critical" keyword
3738         * src/z80/mappings.i,
3739         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3740         functions (fixes bug #979646)
3741         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3742
3743 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3744
3745         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3746           such as c:\mydir.
3747
3748 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3749
3750         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3751           doesn't disable too much optimizations
3752
3753 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3754
3755         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3756
3757 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3758
3759         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3760
3761 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3762
3763         * src/pic/gen.c tidied up tabs
3764         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3765         * src/pic/main.c tidied up tabs
3766         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3767         * src/pic/pcoderegs.c tidied up tabs
3768         * src/pic/ralloc.c tidied up tabs
3769
3770 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3771
3772         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3773         to S_FIXED for pic16 port and when symbol is not in level 0,
3774         allocate for S_REGISTER storage class and pic16 port, too,
3775         * src/pic16/device.h: prototype for checkSym,
3776         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3777         * (pic16_assignConfigWordValue): test the value and the mask to
3778         validate that the value is suitable for the configuration word,
3779         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3780         collect extern declared symbols, don't emit symbol twice, check
3781         first if symbol is in publics set first,
3782         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3783         * added command line '--fstack' which enables an experimental
3784         feature for stack access, too buggy to be used yet...
3785         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3786         * (pic16_allocDirReg): when register has storage class S_REGISTER
3787         allocate in pic16_dynAccessRegs,
3788         * device/include/pic16/pic18f????.h: modified configuration word
3789         naming convention, words started as CONFIG0H but should be CONFIG1H
3790
3791 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3792
3793         * device/include/mcs51reg.h: fixed bug 970993
3794
3795 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3796
3797         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3798         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3799         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3800         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3801         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3802         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3803           error/warning numbers,
3804           added function setWarningDisabled()
3805         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3806         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3807           _memcmp.c _memmove.c calloc.c realloc.c free.c
3808         * support/regression/tests/malloc.c: added tests for new functionality
3809         * support/regression/tests/zeropad.c: added tests for truncated initializers
3810           and initialized char arrays starting with '\x0'
3811         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3812
3813 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3814
3815         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3816
3817 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3818
3819         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3820         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3821         peephole 177.e. Thanks to anonymous
3822
3823 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3824
3825         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3826         function isn't used in the source but referenced as a
3827         variable initializer then declare it as extern in .asm file
3828
3829 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3830
3831         * .version: increased version number to 2.4.3
3832
3833         Adding version extension according to ChangeLog CVS revision
3834         * src/Makefile.in (target all): added dependency 'version.h'
3835         * (rule version.h): added rule to create version.h from ChangeLog,
3836         * (rule dep): added dependency version.h,
3837         * src/version.awk: AWK script to create version.h
3838         * src/SDCCdwarf2.c (dwWriteModule),
3839         * src/SDCCglue.c (initialComments),
3840         * src/SDCCmain.c (printVersionInfo): modified to write after
3841         version string the version extension number,
3842         * src/SDCCutil.c: included "version.h"
3843         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3844         number,
3845         * src/SDCCutil.h: added prototype for getBuildNumber
3846
3847         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3848         includeDirsSet, too,
3849         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3850         const char [] is found in function prototype...
3851
3852         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3853         moving to WREG with source is already in WREG,
3854         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3855         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3856         * (aopForSym): stack'ed symbols are partially supported, added
3857         if-clause to support symbols in FARSPACE,
3858         * (sameRegs): added test for AOP_ACC to see if registers are same,
3859         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3860         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3861         * (pic16_popRegFromString): will not allocate a new register if it
3862         doesn't find one by name, bug may have introduced...
3863         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3864         * (genIpush): revived to use pic16 port's stack,
3865         * (genAddrOf): added incomplete case for stack'ed operand,
3866         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3867         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3868         can handle multibyte operands,
3869         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3870         * (pic16initialComments): added message for MPLAB compatibility
3871         mode enabled,
3872         * src/pic16/main.h: prototype for pic16_mplab_comp,
3873         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3874         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3875         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3876         because of increased complexity of procedure,
3877         * (_process_pragma): stack pragma changed to format 'stack pos len',
3878         emit symbol '_stack_end' to conform with gplink,
3879         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3880         to search for register,
3881         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3882         PO_GPR_REGISTER,
3883         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3884         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3885         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3886         case for PO_GPR_REGISTER,
3887         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3888         dies, the new era is ahead !...
3889         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3890         pic16_dynInternalRegs,
3891         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3892         * (pic16_allocDirReg): minor optimizations and bug fixes,
3893         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3894
3895         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3896         load stack and frame pointer with address of 'stack_end' symbol
3897
3898 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3899
3900         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3901         without source code but only variable initializers
3902
3903 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3904
3905         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3906         external are not declared as extern to reduce overhead while linking
3907
3908 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3909
3910         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3911
3912 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3913
3914         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3915           Yee Keat for the patch
3916         * src/SDCCast.c (decorateType): fixed bug #979599
3917         * src/ds390/gen.h: removed local fReturnSizeDS390
3918         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3919         * src/ds390/gen.c (genAnd, genOr, genXor),
3920         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3921
3922 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3923
3924         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3925         add relFilesSet to $3, manipulate $2 to handle linking of object
3926         files without source files in command line,
3927         * device/include/pic16 (all headers): added ID location macros,
3928         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3929         entries for ID location bytes,
3930         * (pic16_assignIdByteValue): NEW,
3931         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3932         added field dumpcalltree to pic16_options_t,
3933         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3934         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3935         emitting rFalseIfx label after check_carry label,
3936         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3937         pic16_emitDIRegs), NEW
3938         * (pic16glue): dump .calltree file when option --calltree found,
3939         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3940         * (_pic16_genAssemblerPreamble): emit ID locations after
3941         configuration registers,
3942         * (pic16_linkCmd): modifications of the link command,
3943         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3944         * (pic16_pCodeInitRegisters): don't init stack registers,
3945         * (pic16_findPrevInstruction): fixed bug,
3946         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3947         bug with immediate registers,
3948         * (buildCallTree): traces stack push and pop,
3949         * (pct2): dump also stack usage for each function,
3950         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3951         * (pic16_allocDirReg): various modifications,
3952         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3953         fixed to 1,
3954
3955 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3956
3957         * src/pic16/pcode.c: removed buggy double colon
3958
3959 2004-07-01 Borut Razem <borut.razem AT siol.net>
3960
3961         * support/scripts/sdcc.nsi: added include/pic16 to setup
3962
3963 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3964
3965         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3966         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3967         target 'clean',
3968         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3969         specific command line arguments. Also added sample lkr script
3970         for placing a variable at a specific memory bank.
3971         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3972         at a specific memory bank,
3973         * (pic16_dump_isection): fixed bug which caused string literals to
3974         be omitted when dumping idata section,
3975         * (pic16_groupRegistersInSection): added code to handle registers
3976         in specific memory banks,
3977         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3978         public, all references are renamed too,
3979         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3980         AOP_DPTR2,
3981         * (pic16_storeForReturn): added case to handle when dest is WREG,
3982         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3983         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3984         pic16_rel_udata, check to see if that register is marked as being
3985         a member of a specific memory bank,
3986         * (pic16_printIvalCharPtr): added code to add string literals either
3987         to code or the idata sections,
3988         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3989         also accept the 'udata' pragma,
3990         * src/pic16/main.h: new structure types sectName and sectSym
3991         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3992         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3993         * (pic16_findPrevInstruction): fixed, it returned nothing,
3994         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3995         instruction combinations,
3996         * (pic16_FixRegisterBanking): heavily reorganised,
3997         * (pic16_AnalyzeBanking): if generating banksel directives is
3998         disabled, then don't call FixRegisterBanking at all,
3999         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4000         completely removed,
4001         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4002
4003 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4004
4005         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4006         Phuah Yee Keat <yk.phuah AT nestac.com>
4007
4008 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4009
4010         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4011         correctly the IVT even if it is relocated to some other location
4012
4013 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4014
4015         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4016         * device/include/pic16/pic18f2220.h: NEW,
4017         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4018         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4019         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4020         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4021         nodefaultlibs, ivt_loc is the location of the interrupt vector
4022         table, and nodefaultlibs signs that default libraries should not be
4023         linked in link stage,
4024         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4025         according to --ivt-loc argument,
4026         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4027         when pragma stack is found,
4028
4029 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4030
4031         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4032         256 (range check), 257 (do while), 258.a-f (bit banging
4033         f.e. on 3-wire SPI bus)
4034
4035 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4036
4037         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4038         variables used exclusively within a loop
4039
4040 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4041
4042         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4043
4044 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4045
4046         * src/SDCClrange.c (computeClash): fixed bug #971834
4047
4048 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4049
4050         * src/mcs51/gen.c (genCmp): fixed bug #975903
4051         * src/hc08/gen.c (operandsEqu),
4052         * src/ds390/gen.c (operandsEqu),
4053         * src/z80/gen.c (operandsEqu),
4054         * src/pic/gen.c (operandsEqu),
4055         * src/pic16/gen.c (operandsEqu),
4056         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4057         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4058
4059 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4062
4063 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4064
4065         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4066         default case in switch statement,
4067         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4068         to eliminate problem with initialisation of pointers, but problem
4069         still exists,
4070         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4071         * (emitStaticSegment): removed various lines emitting debug info,
4072         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4073         added processor registers for utilizing EEPROM,
4074         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4075         configurable and set 8
4076
4077 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4078
4079         * .version: increased version number to 2.4.2,
4080
4081         Cumulative patch for pic16 port
4082         * src/pic16/device.c: changed scheme to dump initial values for
4083         variables in idata segment, all print_idata* functions were removed,
4084         now the pic16_printIval* will be called,
4085         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4086         * _pic16_printPointerType, pic16_printPointerType,
4087         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4088         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4089         NEW, similar to the respective functions in SDCCglue.c,
4090         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4091         way, emitting hex bytes,
4092         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4093
4094 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4095
4096         * src/avr/ralloc.c (serialRegAssign),
4097         * src/xa51/ralloc.c (serialRegAssign),
4098         * src/pic/ralloc.c (serialRegAssign),
4099         * src/pic16/ralloc.c (serialRegAssign),
4100         * src/hc08/ralloc.c (serialRegAssign),
4101         * src/z80/ralloc.c (serialRegAssign),
4102         * src/ds390/ralloc.c (serialRegAssign),
4103         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4104
4105 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4106
4107         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4108         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4109
4110 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4111
4112         Cumulative patch for pic16 port:
4113         * src/pic16/device.h (typedef PIC16_device) modified fields for
4114         defining microcontrollers,
4115         * src/pic16/device.c: added new info for all devices in Pics16 array,
4116         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4117         to be optimised out by the pCode optimiser,
4118         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4119         specially, bug reported by G.M. Gallant,
4120         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4121         as force'd so that cannot be optimised out by pCode optimiser,
4122         * src/pic16/pcode.c,
4123         * src/pic16/pcodepeeph.c,
4124         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4125         they are disabled by default, but can be enabled explicit with
4126         command argument --denable-peeps, for testing,
4127         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4128         --pomit-ivt in COMPILE_FLAGS
4129
4130 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4131
4132         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4133           compilation on MSVC
4134
4135 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4136
4137         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4138
4139 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4140
4141         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4142         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4143
4144 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4145
4146         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4147         would only assign 0x300001 register.
4148
4149 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4150
4151         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4152         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4153
4154 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4155
4156         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4157         for ds80c400
4158         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4159         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4160         added peephole 254 (left shift), 255 (jump table)
4161
4162 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4163
4164         * device/lib/Makefile.in: removed comment line with model-pic16,
4165         * (target port-specific-objects-pic16): the libraries and objects
4166         are copied to the build directory form the device/lib/pic16/bin
4167         directory
4168
4169         Cumulative patch concerning pic16 port:
4170         * library directory has been re-organized,
4171         * added support for PIC18F1220,
4172         * added headers and library sources for chips 18f1220,18f6520,
4173         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4174
4175         * configuration registers setting has changed, now each supported
4176         device has a complete description of the registers it uses,
4177         * all initialisations are moved to idata sections, these section
4178         can be absolute or relocatable,
4179         * fixed initialisation of codespace variables,
4180         * fixed warning about PCLATU and gpsim,
4181         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4182         * (genAssign): use table reads when assigning from variables in codespace,
4183         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4184         char/int variables placed in codespace,
4185         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4186         registers set in .asm file, no need for --pomit-config-words anymore,
4187         * (pic16glue): some 8051 legacy segments are commented out
4188         (to be removed completely),
4189         * added support for alternative assembler and linker with --asm=
4190         and --link= command line arguments,
4191         * peepholes are disabled automatically in the port, no need to
4192         specify on command line,
4193         * port supports natively char/int/long multiplication, but converts
4194         all divisions to support functions,
4195         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4196         to the file set in variable $2,
4197         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4198         strings in ASCII format and not in hex,
4199         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4200         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4201         allocate proper register if iCodes aren't temporary,
4202
4203 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4204
4205         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4206
4207 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4208
4209         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4210         is commented out
4211
4212 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4213
4214         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4215         computed address is reused
4216         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4217         multi-byte bitfields
4218
4219 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4220
4221         * src/z80/gen.c: (genArrayInit): must check for pointers too
4222
4223 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4224
4225         * support/regression/tests/zeropad.c: never meant to commit the
4226           nestedstruct test: removed, added check for GCC version
4227
4228 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4229
4230         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4231         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4232         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4233           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4234           bugs 928906 and 954082 half-empty initializers
4235         * src/SDCCsymt.h,
4236         * src/SDCCsymt.c (getAllocSize): added for above fix
4237         * src/z80/gen.c (genArrayInit): fixed bug 741044
4238         * support/regression/tests/zeropad.c: added tests
4239
4240 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4241
4242         * src/pic16/device.c (pic16_dump_section): corrected bug which
4243         caused some symbols of the libraries to be misplaced
4244
4245 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4246
4247         * src/pic16/glue.c,
4248         * src/pic16/ralloc.h,
4249         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4250         to fix conflict with pic port
4251
4252 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4253
4254         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4255         externs configuration variables,
4256         * src/pic16/ralloc.h,
4257         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4258         prototype in header, commented out some debug messages
4259
4260 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4261
4262         * src/pic16/glue.c,
4263         * src/pic16/main.c,
4264         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4265         for gpasm COFF object generation. Thanks to D. Hawkins for
4266         his patch info
4267
4268 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/ds390/main.c,
4271         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4272         Brock for spotting this)
4273         * src/ds390/gen.c (genEndFunction),
4274         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4275         interrupt handler and critical. Disable push/pop optimizations when
4276         peephole optimizations disabled.
4277
4278 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4279
4280         Updated pic16 library sources and headers.
4281         * device/lib/pic16/pic18f*/ ,
4282         * device/include/pic16/*.h: modified to handle structured SFR
4283         definitions
4284
4285 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4286
4287         * src/port.h (PORT structure): added hook initPaths, now each
4288         port can declare its own default search paths,
4289         which can been seen with the --print-search-dirs option,
4290         see pic16 port for example,
4291         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4292         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4293         * (doPrintSearchDirs): NEW, replaces in a central manner the
4294         printing of search dirs which was split in set*Paths functions,
4295         * (main): added call to port->initPaths and doPrintSearchDirs,
4296         * src/avr/main.c,
4297         * src/ds390/main.c,
4298         * src/hc08/main.c,
4299         * src/izt/i186.c,
4300         * src/izt/tlcs900h.c,
4301         * src/mcs51/main.c,
4302         * src/pic/main.c,
4303         * src/pic16/main.c: modified port structures to reflect addition of
4304         initPaths hook,
4305
4306         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4307         * (pic16_dump_section): for registers in same address reserve memory once,
4308         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4309         to no_banksel,
4310         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4311         result is greater in size than right or left,
4312         * (pic16_genUMult8X8_8): there are some cases where the result can
4313         be 16 bits size, so handle these,
4314         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4315         * (pic16_outBitC): modified to emit pcodes,
4316         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4317         or not,
4318         * (genDivOneByte): implemented algorithm to divide 8-bits,
4319         * (genCmp): uncommented goto, but issues still exist,
4320         * (genAnd): fixed a bug with variables >8bits,
4321         * (genPackBits): optimization added that uses BCF/BSF to change a
4322         single bit,
4323         * (genAssign): fixed bug when assigning floating point literals,
4324         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4325         __sdcc_gsinit_startup label,
4326         * src/pic16/main.c (_pic16_init): removed search directory
4327         initialisations,
4328         * (_pic16_initPaths): NEW, used to initialise search directories,
4329         * (_hasNativeMulFor): support functions for all except char/int
4330         multiplication, and char division,
4331         * (PIC16_port struct): modified entry for native mul support,
4332         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4333         no_banksel option,
4334         * (buildCallTree): call to register_usage is ifdef'ed out,
4335
4336 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4337
4338         * device/include/string.h: applied Stas Sergeev's patch to make this
4339         header file compatible with the preprocessor -Wundef option
4340         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4341         failure (fixes bug #941458)
4342
4343 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4346         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4347         that the variable, not the function, should be static
4348         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4349         to be consistent with non-literal case
4350
4351 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4352
4353         * src/SDCCast.c (isConformingBody): fixed bug #949967
4354         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4355         convilong): fixed bug #952086
4356
4357 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4358
4359         * src/SDCCmem.c (allocVariables): fixed bug #955321
4360
4361 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4362
4363         * src/hc08/main.c (_hc08_genAssemblerEnd),
4364         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4365         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4366         completely eliminated the use of a temporary file
4367         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4368         when more than one file linked
4369         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4370
4371 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4372
4373         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4374         which fixes bug #543481
4375         * support/regression/tests/bug-751703.c: fixed comments left from a
4376         cut and paste error
4377         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4378         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4379         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4380         scopes
4381         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4382         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4383         are now changed to underscores in moduleName
4384
4385 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4386
4387         * as/mcs51/lkmem.c: better fix for bug #954173
4388
4389 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4390         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4391
4392         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4393         * device/include/c8051f000.h,
4394         * device/include/c8051f120.h,
4395         * device/include/c8051f300.h,
4396         * device/include/c8051f310.h,
4397         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4398         PWM16) and detab'ed
4399
4400 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4401
4402         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4403         and mailing lists, doc'ed --no-peep-comments, removed reference
4404         to knoppix (newest version has no LyX/LaTeX), other minor changes
4405         * src/SDCCglue.c (glue): save 2 bytes stack space with
4406         option --main-return. The ljmp could probably be avoided too
4407
4408 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4409
4410         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4411
4412 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4413
4414         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4415         * src/SDCCopt.c (isLocalWithoutDef),
4416         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4417         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4418         (credit to Maarten Brock for patch #949363, on which this is based)
4419         * support/regression/tests/bug-751703.c: some test cases of extern used
4420         within inner scopes.
4421
4422 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4425         SPEC_STRUCT
4426         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4427         struct definitions
4428         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4429         dwWriteLabel): fix to create valid debugger symbols even when
4430         the module name has non-alphanumeric symbols in it
4431         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4432         when a variable's allocation has been optimized away
4433
4434
4435 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4438         * src/hc08/main.c,
4439         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4440         * src/mcs51/main.c,
4441         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4442         * src/ds390/main.c,
4443         * src/z80/gen.c (z80_emitDebuggerSymbol),
4444         * src/z80/main.c,
4445         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4446         * src/pic/main.c,
4447         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4448         * src/pic16/main.c,
4449         * src/avr/gen.c (avr_emitDebuggerSymbol),
4450         * src/avr/main.c,
4451         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4452         * src/xa51/main.c,
4453         * src/SDCCdebug.c (emitDebuggerSymbol),
4454         * src/SDCCdebug.h,
4455         * src/port.h: added a debugger struct to the port struct. Added a
4456         callback for defining debugger symbols
4457
4458         * src/SDCCast.c (createLabel),
4459         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4460         with isitmp = 1
4461         * src/SDCCicode.h,
4462         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4463         iCode back to the ast for the function
4464
4465         * src/hc08/ralloc.c (hc08_assignRegisters),
4466         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4467         unneeded fields from the regs struct.
4468         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4469         pushReg() & pullReg() functions instead of emitcode()
4470
4471         * src/hc08/gen.c (genLabel, genhc08Code),
4472         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4473
4474         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4475         debugger hooks
4476
4477         * src/hc08/gen.c (genEndFunction, genhc08Code),
4478         * src/hc08/gen.h,
4479         * src/mcs51/gen.c (genEndFunction, gen51Code),
4480         * src/mcs51/gen.h,
4481         * src/ds390/gen.c (genEndFunction, gen390Code),
4482         * src/ds390/gen.h,
4483         * src/z80/gen.c (genEndFunction, genZ80Code),
4484         * src/z80/gen.h,
4485         * src/z80/z80.h,
4486         * src/pic/gen.c (genEndFunction, genpic14Code),
4487         * src/pic/gen.h,
4488         * src/pic16/gen.c (genEndFunction, genpic16Code),
4489         * src/pic16/gen.h,
4490         * src/avr/gen.c (genEndFunction, genAVRCode),
4491         * src/avr/gen.h,
4492         * src/xa51/gen.c (genEndFunction, genXA51Code),
4493         * src/xa51/gen.h,
4494         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4495         specific code to cdbFile.c and out of the backend code generators
4496
4497         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4498         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4499         starting address is now 0
4500
4501         * as/hc08/asm.h,
4502         * as/hc08/m08pst.c,
4503         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4504         assembler directive for DWARF support
4505         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4506
4507         * src/src.dsp,
4508         * src/Makefile.in,
4509         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4510
4511 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4512
4513         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4514         and inappropriate peephole optimization in jump tables
4515
4516 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4517
4518         * as/hc08/m08pst.c,
4519         * src/SDCCglue.c: sdccopt works for the hc08 port now
4520
4521 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4522
4523         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4524
4525 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4526
4527         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4528
4529 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4530
4531         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4532         rules
4533         * src/SDCCmain.c,
4534         * src/SDCCglobl.h,
4535         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4536         comments from the peephole optimizer replacement rules
4537         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4538         symbols
4539         * src/SDCCcse.c (updateSpillLocation),
4540         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4541         equivalents
4542         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4543         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4544         objects far pointers
4545
4546 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4547
4548         * src/SDCCsymt.h: a missing part of my last change
4549         * src/pic/ralloc.c (regTypeNum),
4550         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4551
4552 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4553
4554         * src/SDCCicode.h,
4555         * src/SDCCicode.c (aggrToPtrDclType),
4556         * src/SDCCptropt.h,
4557         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4558         ptrPseudoSymConvert),
4559         * src/pic/ralloc.c (regTypeNum),
4560         * src/pic16/ralloc.c (regTypeNum),
4561         * src/hc08/ralloc.c (regTypeNum),
4562         * src/ds390/ralloc.c (regTypeNum),
4563         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4564         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4565
4566 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4567
4568         * link/z80/lkmain.c (afile),
4569         * as/hc08/lkmain.c (afile),
4570         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4571         prevent a pointer problem when a filename has no directory and
4572         no extension specified.
4573
4574 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * link/z80/lkmain.c (afile): allow periods in directory names
4577         * link/z80/lkmain.c (afile),
4578         * as/mcs51/lkmain.c (afile),
4579         * as/hc08/lkmain.c (afile): allow linker script file to have an
4580         extension other than ".lnk"
4581         * link/z80/lklex.c (getfid),
4582         * link/z80/lkmain.c (parse),
4583         * as/mcs51/lklex.c (getfid),
4584         * as/mcs51/lkmain.c (parse),
4585         * as/hc08/lklex.c (getfid),
4586         * as/hc08/lkmain.c (parse): Support comments in the linker script
4587         file on lines by themselves and after filenames
4588
4589 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4590
4591         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4592
4593 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4594
4595         * src/z80/peeph-z80.def: removed some peephole rules that don't
4596         work with multibyte arithmetic (fixed bug #937126)
4597         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4598         to registers and not global variables
4599         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4600         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4601         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4602         checking for assignments not internally generated (fixed bug #931895)
4603         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4604         structure member (fixed bug #930072)
4605
4606 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4607
4608         * src/SDCCmain.c (linkEdit),
4609         * src/hc08/main.c (_hc08_parseOptions),
4610         * as/hc08/Makefile.in,
4611         * as/hc08/aslink.h,
4612         * as/hc08/asm.h,
4613         * as/hc08/m08pst.c,
4614         * as/hc08/lkrloc.c (relr, rele),
4615         * as/hc08/lkarea.c (lnkarea)
4616         * as/hc08/lkmain.c (afile, parse),
4617         * as/hc08/lkelf.c: support for ELF output
4618         * as/hc08/lks19.c (s19),
4619         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4620
4621 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4622
4623         * as/mcs51/lkihx.c: Fixed bug #899105.
4624
4625 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4626
4627         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4628         .dsp files from Unix to DOS.
4629
4630 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4631
4632         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4633         function pointers; we have been compliant for several months now.
4634         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4635         change that was accidently commented out
4636         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4637         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4638         bug #922319
4639
4640 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * src/hc08/gen.c: output of all of the internal debugging information
4643         is now controlled by the D() macro; it is disabled by default
4644
4645 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4648         harder to keep the same registers during a CAST iCode
4649         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4650         long via int can be done in a single cast, if the signedness is
4651         correct.
4652         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4653         putchar() in tinibios.c in ds390's library
4654
4655 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4656
4657         * src/SDCCast.c (decorateType): fixed bug #898889,
4658         cast result of a literal complement too
4659         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4660         fixed check for bitfields
4661
4662 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4663
4664         * src/SDCCicode.c (geniCodeLogic): made it static,
4665         (geniCodeLogicAndOr): added in order to fix bug #905492,
4666         (ast2iCode): fixed bug #905492
4667         * support/regression/tests/bug-905492.c: added
4668         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4669         (processParms): fixed bug #927659: don't copy parms, this will clear
4670         decorated flag
4671         * support/regression/tests/bug-927659.c: added
4672
4673 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4674
4675         * src/SDCCast.c (addCast): don't cast float to char
4676         * device/lib/libsdcc.lib: added _memmove
4677
4678 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4679
4680         * device/lib/large/Makefile: fixed parallel execution by
4681         replacing `make` by `$(MAKE)`
4682
4683 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4684
4685         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4686         offsets (fixes bug #923936)
4687
4688 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4689
4690         * device/lib/small/Makefile: fixed parallel execution by
4691         replacing `make` by `$(MAKE)`
4692
4693 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4694
4695         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4696
4697 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4698
4699         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4700         * src/regression/Makefile: Regression test was not running.
4701
4702 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4703
4704         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4705         complement if possible
4706         * src/SDCCval.c (valComplement),
4707         * src/SDCCicode.c (operandOperation): fixed complement of literal
4708         * support/regression/tests/onebyte.c (testComplement): added
4709
4710 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4711
4712         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4713         return an optimized tree; actually replace actParm with the new tree
4714         * src/SDCCast.h: added some parantheses to remove side effects
4715         * support/regression/tests/bug-920866.c
4716
4717 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4718         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4719         Bit operands were not being handled properly in the pic14 port.
4720         (now src/regression/add.c passes again).
4721
4722 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4723
4724         * src/SDCC.y (labeled_statement): case and default no longer require
4725         a following statement (RFE #893037)
4726
4727 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4728
4729         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4730         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4731         disabled (fixes bug #916294)
4732         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4733         "mov a,acc"; patch provided by Lenny Story
4734         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4735
4736 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4737
4738         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4739         functions
4740         * src/ds390/gen.c (genFunction, genEndFunction),
4741         * src/ds390/ralloc.c (ds390_assignRegisters),
4742         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4743         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4744         pushed if there are parameters passed on the stack. Also, a cleaner
4745         way to decide if r0/r1 should be pushed/popped. (Together they fix
4746         bug #918693)
4747
4748 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4749
4750         * doc/sdccman.lyx,
4751         * device/lib/mcs51/crtpagesfr.asm,
4752         * device/lib/mcs51/crtxinit.asm,
4753         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4754         to avoid confusion with Si Lab's SFRPAGE register.
4755
4756 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/SDCCglue.c (emitMaps): allow public sfr variables
4759         * src/SDCCglue.c (initialComments): include compiler build date
4760         with compiler version and put the timestamp of the generated
4761         assembly file on a serperate line to be less confusing.
4762         * src/port.h: added genInitStartup hook
4763         * src/avr/main.c,
4764         * src/ds390/main.c,
4765         * src/hc08/main.c,
4766         * src/pic/main.c,
4767         * src/pic16/main.c,
4768         * src/xa51/main.c,
4769         * src/z80/main.c: genInitStartup initialize as NULL (default to
4770         historical behaviour)
4771         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4772         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4773         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4774         library instead of hard coding it into the compiler.
4775         * support/regression/ports/mcs51-stack-auto/spec.mk,
4776         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4777         * device/lib/mcs51/Makefile,
4778         * device/lib/small/Makefile,
4779         * device/lib/large/Makefile,
4780         * device/lib/mcs51/crtpagesfr.asm,
4781         * device/lib/mcs51/crtstart.asm,
4782         * device/lib/mcs51/crtxclear.asm,
4783         * device/lib/mcs51/crtxinit.asm,
4784         * device/lib/mcs51/crtclear.asm,
4785         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4786         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4787         and into user configurable files.
4788         * device/lib/clean.mk: clean mcs51 directory too
4789         * support/regression/tests/longlit.c: added static to T1 declaration
4790         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4791         accesses in the initialization code
4792
4793 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4794
4795         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4796         OSCTRIMVAL as noted in bug #916008
4797
4798 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4799
4800         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4801         in loops with multiple exits (reported as incorrect registers
4802         used by Martin Helmling in Sdcc-user list)
4803
4804 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4805
4806         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4807         made ds390 register extensions look less like error messages
4808
4809 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4810
4811         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4812         reported by Adam Wozniak in Sdcc-user list
4813
4814 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4815
4816         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4817         arithmetic optimizations, added debug output
4818
4819 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4820
4821         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4822         * sdcc.spec: updated and split sdcc into 3 rpms
4823         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4824         needed for literals of LEFT_OP and '+'
4825         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4826         introduced RESULT_TYPE_NOPROM
4827         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4828         left shift
4829         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4830         limited promotion to int only for '*'
4831         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4832
4833 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4834
4835         * src/pic16/gen.c (genSkip),
4836         (genc16bit2lit), (gencjneshort): commented out
4837         (is_LitOp): new helper function, checks operand type
4838         (genCmpEq): rewritten
4839
4840 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4841
4842         * support/regression/tests/bug-908454.c: added
4843
4844 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4845
4846         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4847         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4848         (geniCodeCast): cosmetic, don't preserve bit storage class
4849         (geniCodeLeftShift): added promotion
4850         (geniCodeLogic): fixed regression
4851         * src/SDCCsymt.c (computeTypeOr): accept bits too
4852         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4853
4854 2004-03-07  Borut Razem <borut.razem AT siol.net>
4855
4856         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4857
4858 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4859
4860         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4861         version of pic16_genPackRegisters which does not check if ic is a
4862         CAST operator,
4863         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4864         function cause string1.c regression test fails
4865
4866 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4867
4868         * sim/ucsim/configure.in,
4869         * sim/ucsim/configure,
4870         * sim/ucsim/doc/Makefile.in: use docdir
4871         * src/SDCC.y: fixed sbit atrributes
4872         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4873         * src/SDCCast.c (decorateType): |^& need special promotion handling
4874         * src/SDCCast.h,
4875         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4876         * src/SDCCsymt.h (computeType),
4877         * src/SDCCicode.c: computeType() needs op
4878         * src/SDCCsymt.c (checkTypeSanity),
4879         * doc/sddman.lyx: "plain" bitfields are unsigned
4880         * src/SDCCsymt.c (computeTypeOr): added
4881         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4882         |^& ops
4883         * src/SDCCval.c (val*): computeType() needs op
4884         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4885         * support/regression/tests/onebyte.c: added tests for |^&
4886
4887 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4888
4889         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4890         for writing icode into asm output.
4891
4892 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4893
4894         * src/pic16/device.c: added some debug lines enabled
4895         with macro DEBUG_CHECK,
4896         * src/pic16/genarith.c: more debug in genPlus,
4897         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4898         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4899         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4900         * (aopForSym): onStack symbols are re-placed in data memspace,
4901         and onStack flag is cleared,
4902         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4903         copy temporary pcodeop,
4904         * (genPcall): added warning for not updating PCLATU,
4905         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4906         always true for pic16 port,
4907         * (genMultOneWord): NEW, supports integer multiplication,
4908         * (genMult): modified to call genMultOneWord,
4909         * (ifxForOp): added warning when return NULL,
4910         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4911         flag is set before call to operandFromSymbol for implicit
4912         added structures,
4913         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4914         options.intlong_rent are set by default,
4915         * (_hasNativeMulFor): modified to allow port generation of integer
4916         multiplication,
4917         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4918         set regtype to REG_SFR for all registers, restricting seting the
4919         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4920
4921 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4922
4923         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4924         more than 500 times in the regression tests
4925
4926 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4927
4928         * support/Util/SDCCerr.h,
4929         * support/Util/SDCCerr.c,
4930         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4931         enumerator_list),
4932         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4933         for symbol conflicts.
4934         * support/valdiags/tests/enum.c,
4935         * support/valdiags/tests/tentdecl.c,
4936         * support/valdiags/tests/struct.c: expect possible error messages
4937         referring to original symbol definitions.
4938         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4939         * src/SDCCsymt.h,
4940         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4941
4942 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4943
4944         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4945
4946 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4947
4948         * src/pic16/ralloc.c (newReg): fixed bug #908929
4949
4950 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4951
4952         * src/ds390/gen.c: added missing #include "main.h"
4953
4954 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4955
4956         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4957         checking if symbol is already in set,
4958         * src/pic16/device.h: prototype for checkAddSym,
4959         * src/pic16/gen.c: (_G): added entry interruptvector,
4960         * (assignResultValue): removed some commented out lines,
4961         * (genFunction): check for ISR via sym->type, absolute section for
4962         interrupt code is created via a new pBlock, the goto instruction is
4963         placed now correctly at the interrupt vector position, changed all
4964         references from ivec to _G.interruptvector,
4965         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4966         is the interrupt is a high priority one, same for return from ISR,
4967         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4968         externs to calls of checkAddSym,
4969         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4970         pic16_pcode_verbose flag is set,
4971         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4972         * src/pic16/pcoderegs.c: message about how many registers are saved
4973         will only be emitted if pic16_pcode_verbose flag is set,
4974
4975 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4976
4977         * src/ds390/ralloc.h,
4978         * src/ds390/ralloc.c (ds390_regWithIdx),
4979         * src/ds390/gen.c (emitcode),
4980         * src/ds390/main.h,
4981         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4982         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4983         ds390operandCompare, getRegsRead, getRegsWritten,
4984         initializeAsmLineNode): customized instruction size calculation for
4985         ds390, started basis for some register optimizations
4986         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4987         corresponding assembly output
4988         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4989         missing push/pop of r0/r1. Optimized push/pops
4990
4991 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/mcs51/main.c (instructionSize): fixed ACALL size
4994         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4995
4996 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4997
4998         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4999         the sorting of rlist with NULL elements
5000         * (print_idataType, print_idata): NEW to create idata sections
5001         * src/pic16/device.h: idataSymSet new variable
5002         * src/pic16/gen.c (genFunction): fixed some bugs in string
5003         comparing, improved the absolute section creation for ISRs,
5004         added FSR0L/FSR0H in registers that are saved in an ISR,
5005         * (genInline): fixed the processing of inline snippets,
5006         now they undergo no process by the peephole optimizer
5007         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5008         are placed in idataSymSet,
5009         * (pic16emitStaticSeg): extern symbols are added in externs,
5010         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5011         switching when aboslute variables are placed in access bank memory
5012         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5013         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5014         commented out with #if,
5015         * (pic16_packRegisters): reintroduce the check for CAST because some
5016         symbols are not correctly handled,
5017         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5018         pCodeInstruction instead of pCode,
5019         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5020         pCodeAsmDir definition,
5021         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5022         directive, then the argument directive is emitted without the leading
5023         tab, hack for inline labels which must be in the first column,
5024         * (compareLabel,pic16_findNextInstruction),
5025         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5026         * (insertBankSwitch): modified for the new pCodeAsmDir,
5027
5028 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5029         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5030
5031         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5032         instance,
5033         * (pushSide): commented out with #if,
5034         * (assignResultValue): fixed some typos in saving
5035         registers,
5036         * (genPcall): FIXED and sync'ed with genCall,
5037         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5038         * (genNearPointerGet): fixed to handle some more cases,
5039         implementation scheme via table reads,
5040         * (genConstPointerGet): modified to access code memory correct,
5041         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5042         and improved to handle some cases
5043         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5044         instead of "RETLW" for init data
5045         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5046         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5047         variables are placed in access bank memory (<0x80 and >=0xf80),
5048         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5049         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5050         TBLWT_POSTDEC,TBLWT_PREINC
5051         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5052         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5053         directives
5054         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5055         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5056         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5057         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5058
5059 2004-02-29  Borut Razem <borut.razem AT siol.net>
5060
5061         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5062         support/Util/findme.h, support/Util/system.h: enhance binary relative
5063         search for lib and include by using findProgramPath()
5064
5065 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5066
5067         * src/SDCCpeeph.h,
5068         * src/SDCCpeeph.c (pcDistance),
5069         * src/port.h,
5070         * src/mcs51/ralloc.h,
5071         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5072         * src/mcs51/main.h,
5073         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5074         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5075         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5076         size calculation port specific, started basis for some register
5077         optimizations
5078         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5079         missing push/pop of r0/r1. Optimized push/pops
5080         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5081         * device/lib/_modsint.c (_modsint),
5082         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5083         and stack version so regression tests pass
5084
5085 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5086
5087         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5088         * src/SDCCast.c (decorateType): catch another small optimization
5089         with '?' operator
5090         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5091         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5092         modified to finally use computeType() all over SDCC,
5093         see Feature Request #877103
5094         * src/SDCCval.h: cosmetic
5095         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5096         valCompare(); regression tested in muldiv.c
5097         * support/regression/tests/muldiv.c (testMod): mod sign follows
5098         dividend only
5099
5100 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5101
5102         * src/SDCCast.c (decorateType): fixed bug #902362
5103         * doc/INSTALL.txt: fixed install instructions for win32
5104
5105 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5106
5107         * device/include/Makefile.in (install): fixed by replacing spaces
5108         by tabs
5109         * doc/README.txt,
5110         * doc/INSTALL.txt: updated for release
5111         * doc/sdccman.lyx: added warning for --xstack being buggy
5112
5113 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5114
5115         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5116         to eliminate build warnings.
5117         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5118
5119 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5120            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5121
5122         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5123         removed -penable-stack, added comment for stack pragma, added
5124         warning for not initializing the stack/frame registers, removed
5125         comment at interrupts section
5126
5127         Stack is made permanent, there is no ability to disable stack usage.
5128         * src/pic16/device.h,
5129         * src/pic16/device.c: removed all references to USE_STACK macro,
5130         * src/pic16/device.c (pic16_dump_section): when no elements in
5131         rlist, free rlist before return,
5132         * (pic16_dump_int_registers): NEW, internal registers are a new set
5133         of general purpose registers reused by each function,
5134         * (checkAddReg): returns 1 if registers is added to set,
5135         * (pic16_groupRegistersInSection): when a registers is of type
5136         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5137         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5138         SRCASECMP macro is moved here from device.c
5139         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5140         PO_PCLATU, PO_PRODL, PO_PRODH,
5141         * (pic16_pCodeOpType, genMinus,
5142         changed compares to "a" register, with AOP_ACC,
5143         * (pic16_genPlus): fixed some bugs and indented properly,
5144         * (pic16_addSign): changed size to size+offset in the MOVWF
5145         instruction,
5146         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5147         multiply 8-bit operand by literal, result is 8-bit,
5148         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5149         multiply 2 8-bit operand, result is 8-bit,
5150         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5151         genUMult8X*_16,
5152         * src/pic16/gen.c: changed accUse to contain WREG only,
5153         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5154         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5155         true, do not use immediate addressing any more unless sym is a
5156         pointer in codespace,
5157         * (aopForRemat): do not use immediate addressing when symbol not in
5158         codespace and when symbol's address is requested,
5159         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5160         accUse size (= 1),
5161         * (aopGet): added case for AOP_ACC and don't return "accumulator
5162         bug" but WREG instead,
5163         * (popGetTempReg): pushes contents of temporary register in stack,
5164         * (popReleaseTempReg): pops contents of temporary register from
5165         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5166         * (pic16_popGet): separated case AOP_ACC to return register WREG
5167         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5168         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5169         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5170         the use of immediate pointers to certain cases only.
5171
5172         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5173         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5174         * (assignResultValue, genCall, genRet): modified to use the new
5175         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5176         genPcall is still broken,
5177         * (genFunction): added code to create 'A' type pBlocks when
5178         interrupt functions are generated, code not extensively tested yet,
5179         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5180         * (genEndFunction): modified so ISRs pop stored registers from stack,
5181         * (genMultOneByte): cleanup,
5182         * (AccRsh): added flag andmask, to and result with appropriate mask,
5183         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5184         * (genDataPointerGet): fixed and reenabled its use,
5185         * (genNearDataPointerGet): bugs fixed,
5186         * (genDataPointerSet): bugs fixed,
5187         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5188         pic16_DumpSymbol, pic16_DumpOp,
5189         * src/pic16/genutils.h: function prototypes for the above functions,
5190         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5191         pointers,
5192         * (pic16emitRegularMap): many many many improvements, but needs a
5193         major cleanup,
5194         * src/pic16/main.c: enable_stack in pic16_options is removed,
5195         * (_pic16_parseOptions): removed command line options -penable-stack,
5196         * (_process_pragma): emit stack symbol only when stack pragma is
5197         processed,
5198         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5199         redirected to FSR0L/FSR0H pair,
5200         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5201         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5202         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5203         for immediates,
5204         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5205         * (dumpPicOptype): NEW,
5206         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5207         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5208         with movff instruction,
5209         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5210         added pic16_int_regs, some packRegsFor* functions are commented out,
5211         because produce errors,
5212         * src/pic16/NOTES: minor modifications
5213
5214 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5215
5216         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5217         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5218         --pack-iram.
5219         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5220         * as/mcs51/lkaomf51.c: fixed bug #895763
5221
5222 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5223
5224         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5225
5226 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5227
5228         * doc/sdccman.lyx: added details about the HC08 storage classes and
5229         interrupts, fixed the register usage info for z80 & gbz80
5230
5231 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5232
5233         * doc/sdccman.lyx: added more pic16 port documentation
5234         * device/include/pic16/: added header pic18fregs.h
5235
5236 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5237
5238         * doc/sdccman.lyx: added Vangelis' contribution
5239
5240 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5243         extend to the next CALL or PCALL, not just to the next CALL.
5244
5245 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5246
5247         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5248
5249 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5250
5251         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5252         bug #895752 and a better fix for bug #716790
5253
5254 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5255
5256         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5257
5258 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5259
5260         * doc/sdccman.lyx: minor changes, minor changed
5261
5262 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5263
5264         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5265         which can't handle SDCC_NEWONEBYTEOPS,
5266         (geniCodeMultiply): removed conversion from mult to shift for pic14
5267         and pic16
5268
5269 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * src/hc08/gen.h,
5272         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5273         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5274         thus fixing bug #895406
5275
5276 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5277
5278         * device/lib/_modsint.c,
5279         * device/lib/_modslong.c: sign follows divisor only
5280         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5281         signs or signedness can be ignored
5282         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5283         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5284         added optimization for IFX,
5285         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5286         arguments;
5287         reenabled optimization for IFX, which was removed on 2004-01-11
5288         * src/SDCCast.h: added return type IFX
5289         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5290         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5291         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5292         SDCC_OLDONEBYTEOPS selects the old behaviour
5293         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5294         changed again and commented promotion rule
5295         * src/SDCCval.c (valDiv): promotion no longer necessary
5296         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5297         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5298         rewritten
5299         * support/regression/tests/onebyte.c: added
5300
5301 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5302
5303         * gen.c (genInline): reverted to old code for assemnling inline
5304         code because of bug reported James Chadd
5305
5306 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5307
5308         * ralloc.h: missing declarations from previous patch,
5309         seems that patch for ralloc.h was never applied, fixed
5310
5311 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5312            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5313
5314         * pcode.c,
5315         * pcode.h,
5316         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5317         indirect addressing. Marked FSR0 as deprecated
5318         * gen.c (pointerCode): commented out, not needed now
5319         (pic16_popGet2p): new MOVFF helper function
5320         (genGenPointerGet),
5321         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5322         (shiftRLong): removed duplicate debugging info
5323
5324 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/ds390/gen.c (genNearPointerGet),
5327         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5328         optimization with bits, but not bitfields.
5329         * src/ds390/ralloc.c (packRegisters),
5330         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5331
5332 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5333
5334         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5335
5336 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5337
5338         * src/SDCCsymt.h,
5339         * src/SDCCicode.c (operandFromSymbol),
5340         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5341         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5342         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5343         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5344         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5345         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5346         bug #892038
5347         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5348         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5349         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5350         * src/SDCCsymt.c (newSymbol),
5351         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5352         enumerator_list),
5353         * src/SDCCval.h,
5354         * src/SDCCval.c (newiList): fixed bug #885705
5355
5356 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5357
5358         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5359         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5360
5361 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5362
5363         * device/include/c8051f120.h,
5364         * device/include/c8051f300.h,
5365         * device/include/c8051f310.h: added/updated header files for Silicon
5366         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5367         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5368         in new section Submitting patches
5369
5370 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5373         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5374         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5375         genGenPointerSet),
5376         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5377         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5378         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5379         genGenPointerSet),
5380         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5381         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5382         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5383         genGenPointerSet),
5384         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5385         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5386         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5387         genGenPointerSet): fixed bug #892400
5388         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5389         to eliminate build warnings.
5390         * src/SDCCast.c (processParms),
5391         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5392         fixed bug 751859
5393         * support/valdiag/valdiag.py: added GCC to the list of defines active
5394         when compiling with gcc
5395
5396 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5397
5398         * support/Util/SDCCerr.h,
5399         * support/Util/SDCCerr.c,
5400         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5401         with an incomplete type (fixed bug #883734)
5402         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5403
5404 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5407
5408 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5409
5410         * src/SDCCast.c (decorateType),
5411         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5412         function pointer implementation
5413         * support/regression/tests/funptrs.c: added tests to verify both forms
5414         of function pointers work correctly. Added tests to verify parameters
5415         are passed in the correct order.
5416
5417 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5418
5419         * device.c (regCompare): registers are sorted by ascending
5420         address and increasing size,
5421         * main.c (_pic16_finaliseOptions): removed the declaration
5422         of compiler macro MCU. Now a macro of the format pic18fxxxx
5423         will be defined from the command line
5424
5425 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5426             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5427
5428         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5429         PCOP_RLCF was overwritten!
5430         * gen.c (genSkip): commented out calls to pic16_emitcode,
5431         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5432         * (genlshTwo),
5433         * (genRRC): added debugging info,
5434         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5435         overwritten while shifting,
5436         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5437         overwritten while shifting,
5438         * (AccLsh),
5439         * (AccRsh),
5440         * (shiftLLeftOrResult),
5441         * (shiftRLeftOrResult),
5442         * (shiftRLong),
5443         * (shiftLLong): Implemented with pic16_emitpcode
5444         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5445         * (genLeftShift): Fixed bug, operand for shift by variable always
5446         was "and"ed with 0x0f,
5447         * (genLeftShiftLiteral),
5448         * (genrshTwo),
5449         * (genRightShiftLiteral): added debugging info,
5450         * (genrshFour): added comment,
5451         * (genRightShift): determined signedness from operand "left"
5452         instead of "result"
5453
5454 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5455
5456         * src/SDCCicode.c (geniCodeParms),
5457         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5458         function pointers, fixed function pointer bugs #861242 and #861896
5459
5460 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5461
5462         * device/include/c8051f000.h,
5463         * device/include/c8051f120.h,
5464         * device/include/c8051f300.h: added header files for Silicon
5465         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5466
5467 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5468
5469         * src/SDCCast.c (processParams): added new type flow and restructured
5470         (gatherAutoInit): added new type flow
5471         (addCast): cosmetic changes
5472         (getLeftResultType): added new type flow for array indices, patch
5473         provided by Stas, see FR #877103
5474         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5475         array index patch by Stas
5476         * src/SDCCast.h: added prototype getResultTypeFromType()
5477         * src/SDCCval.h,
5478         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5479         * src/pic/glue.c (pic14emitStaticSeg),
5480         * src/pic16/glue.c (pic16emitStaticSeg),
5481         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5482         for initialization of symbols
5483         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5484         * support/Util/SDCCerr.h:
5485         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5486         * .version: bumped version number to 2.3.8
5487         * device/include/Makefile.in (install),
5488         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5489         avoid warnings
5490
5491 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5492
5493         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5494         Slade Rich fixed an optimization bug
5495         * src/pic/pcodepeep.c,
5496         * src/pic/pcoderegs.c
5497         * doc/Makefile (install): added test for directory
5498
5499 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5502         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5503         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5504         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5505         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5506         * as/mcs51/asexpr.c (term),
5507         * as/hc08/asexpr.c (term): fixed bug #887146
5508
5509 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5510
5511         * src/z80/gen.c (genMult): handle single byte result product
5512         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5513         DUMMY_READ_VOLATILE (fixed bug #886367)
5514
5515 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5516
5517         * support/regression/tests/libmullong.c: fixed logic, on little endian
5518         hosts we ended without a mullong_wrapper()
5519
5520 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5521
5522         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5523         virus/worm forged address usage.
5524
5525 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         Fixed promotion, it should be done on AST level:
5528         * src/SDCCast.c (addCast): added promotion to int
5529         (decorateType): updated call to upCast()
5530         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5531         usualUnaryConversions()
5532
5533 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5534
5535         * support/regression/tests/literalop.c (mulWrapper): Added a
5536         wrapper to remove integer overflow warnings.
5537
5538         * support/regression/tests/float_trans.c: Made work on host.
5539
5540         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5541         location of sz80.
5542
5543         * support/regression/generate-cases.py (main): Changed from inline
5544         to a main method.
5545
5546         * doc/Makefile (install): Changed to depth first to get rid of
5547         missing directory install warning.
5548
5549         * as/Makefile (install-doc): Made work on Mac.
5550
5551 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5552
5553         * src/SDCCast.c: added an additional type flow in decorateType() of
5554         opposite direction, see feature request #860006; it's enabled at runtime
5555         by setting the environment variable SDCC_NEWTYPEFLOW
5556         * src/SDCCast.h: changed prototype of decorateType()
5557         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5558         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5559         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5560         see feature request #877103
5561         * src/SDCCval.c: updated call of decorateType()
5562         (valBitwise): fixed bug #882876
5563         (valMinus): added promotion
5564         (valLogicAndOr): result is unsigned
5565         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5566         * src/SDCCsymt.c (computeType),
5567         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5568         must not cause an unsigned operation
5569         * src/pic/glue (pic14emitRegularMap),
5570         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5571
5572 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5573
5574         * src/pic/pcode.c (PCodeID): commented out left over debug code
5575
5576 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5577
5578         * support/valdiag/tests/overflow.c: added shift tests
5579         * src/pic/device.c,
5580         * src/pic/gen.c,
5581         * src/pic/gen.h,
5582         * src/pic/glue.c,
5583         * src/pic/main.c,
5584         * src/pic/pcode.c,
5585         * src/pic/pcode.h,
5586         * src/pic/pcodepeep.c,
5587         * src/pic/pcoderegs.c,
5588         * src/pic/ralloc.c,
5589         * src/pic/ralloc.h: applied patch from Slade Rich;
5590         added support for multiple code pages and multiple RAM banks on the
5591         PIC 14 port. The ASM files now no longer simply assume all the
5592         code / RAM are in the same page / bank. This means the linker can
5593         safely allocate code/RAM of separate ASM files to different pages/banks.
5594         * doc/sdccman.lyx: added Slade's tips
5595         * src/mcs51/peeph.def: fixed bug #880768
5596
5597 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5600         * src/SDCCast.c (decorateType): fixed bug #880197
5601
5602 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5603
5604         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5605         getopt.h.
5606
5607         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5608         strtof is not part of C89 and isn't included with Mac OS X.
5609
5610 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5611
5612         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5613         shiftL2Left2Result): fixed bug #879326
5614         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5615         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5616         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5617         address fetch for clr instruction
5618         * device/lib/hc08/_mulint.c: created optimized assembly version
5619         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5620
5621 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5622
5623         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5624         proposed in FR #877103
5625
5626 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5627
5628         * src/SDCCval.c (cheapestVal): added missing checks
5629         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5630         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5631
5632 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5633
5634         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5635         equal operands
5636
5637 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5638
5639         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5640         loaded with the linker search paths (-L arguments) and the libraries
5641         to be linked with the current source (-l arguments). Changes
5642         currently will affect only the pic16 port.
5643         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5644         include path the port specific paths and port specific libraries,
5645         * gplink command now contains the $3 argument,
5646         * src/pic16/device.h,
5647         * src/pic16/device.c,: structure PIC_device is made public and
5648         renamed to PIC16_device, the same for variable Pics which is renamed
5649         to Pics16. Updated all references to them.
5650         * src/pic16/glue.c (pic16glue): corrected bug with code
5651         initialization which bypassed the variable initializations block.
5652
5653         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5654         COMPILE_FLAGS and added the --nostdinc option
5655
5656 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5657
5658         * device/include/mc68hc908jb8.h: Register defs for another member
5659         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5660
5661 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5662
5663         Documenting changes from previous commits.
5664         * configure.in (version 1.56),
5665         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5666         when generating output files to configure the pic16 library,
5667         but now I've commented it out, since gputils aren't installed in the
5668         SF compile farm, so library won't compile
5669
5670         * device/lib/Makefile.in (version 1.56): initially I've added in
5671         target 'all' the prerequestive 'model-pic16' so it compiled the
5672         pic16 library, but now I've commented it out for the same reasons
5673         above,
5674         * added targets 'model-pic16' and 'objects-pic16' to compile the
5675         library
5676         * added target 'port-specific-objects-pic16' to handle the
5677         generated libraries and copy them into the build/ directory
5678         * added target 'clean-intermediate-pic16' to clean intermediate
5679         files into pic16 directory
5680         * in target 'installdirs' added line to create directory pic16 in
5681         the installation path
5682
5683         * device/include/Makefile.in (version 1.11): in target 'install'
5684         added lines to copy all header files to installation path,
5685         * in target 'installdirs' added line create directory for pic16
5686         headers in the installation path
5687
5688 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5689
5690         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5691          a function call
5692
5693 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5694
5695         * configure,
5696         * device/lib/configure.in,
5697         * device/lib/configure: fixed for autoconf 2.57
5698
5699 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5702         option so that it actually works. Made it specific to the z80, since
5703         the gbz80 doesn't have these kinds of I/O ports.
5704
5705 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5706
5707         * device/include/z180.h,
5708         * device/lib/_memcpy.c,
5709         * device/lib/_memmove.c,
5710         * device/lib/_mulint.c,
5711         * device/lib/ser_ir.c,
5712         * device/lib/ser_ir_cts_rts.c,
5713         * device/lib/_strcmp.c,
5714         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5715         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5716         portmode; added deprecation warning for bank= and protmode= forms.
5717         Also, guard against buffer overflow.
5718         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5719
5720 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5723         changed interrupt vector table generation to only emit declared vectors.
5724         * device/include/Makefile.in: added missing backslash
5725         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5726
5727 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5728
5729         Mainly changes to support compilation of the device libraries
5730         * src/pic16/device.c: stack is allocated via symbol and not
5731         via literal number. The symbol is placed in the corresponding
5732         position of the data ram
5733         * (pic16_dump_section): relocatable and absolute uninitialized
5734         data are now emitted in sorted order to reduce section naming,
5735         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5736         weren't marked as being in the access bank,
5737
5738 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5739
5740         Added portion of GNU PIC Library under the directory
5741         device/include/pic16 and device/lib/pic16. These files
5742         contain the declarations of SFRs for the PIC18Fxx2 devices.
5743         The directory is initialized via configure from toplevel.
5744
5745 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5746
5747         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5748         the spilllocations to be compared correctly
5749
5750 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5751
5752         * src/SDCCast.c (decorateType): fixed bug introduced today
5753
5754 2004-01-12  Borut Razem <borut.razem AT siol.net>
5755
5756         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5757         doc/sdccman.lyx: upper case pragmas are deprecated
5758
5759 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5760
5761         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5762         in simpler and even better code
5763
5764 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5765
5766         * src/SDCCicode.c (operandOperation): fixed bug #874819
5767         * src/SDCCast.c (decorateType): fixed
5768         char foo (unsigned long ul) { return ul > 0; }
5769
5770 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5771
5772         * doc/sdccman.lyx: Moved and added some sections, small changes
5773         all over. Telling LaTeX to be less strict with word spacing
5774         to better keep the right margin. Changed some notes about
5775         maintainance of the ports in section 3.2.1 - is it OK like this?
5776
5777 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5778
5779         SDCC source changes:
5780         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5781         convilong): modified to inform the pic16 port that builtin functions
5782         are external
5783
5784         PIC16 PORT specific changes:
5785         * src/pic16/device.c pic16_dump_equates() added,
5786         processor registers declared internally by the port are emitted in
5787         the translation as equates,
5788         * src/pic16/gen.c: inline code is passed unprocessed to the
5789         translation,
5790         * (pic16_popGetLit2): fnuction modified to take second operand as
5791         pCodeOp pointer and not as literal,
5792         * (popRegFromIdx): prefixed with pic16_,
5793         * (pic16_popCombine2): modified to receive already allocated pCode
5794         operands,
5795         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5796         * (genFunction): initializes local stack frame and pushes on stack
5797         all the registers used by this function,
5798         * (genEndFunction): restores all registers from stack and restores
5799         stack frame,
5800         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5801         improvements,
5802         * (pic16glue): changed the program startup sequence,
5803         * added new dbName code 'A' for functions placed in absolute section
5804         * src/pic16/main.c: added function attribute _naked,
5805         * added pragma 'code' to place a fnuction at an absolute address,
5806         * added command line arguments --debug-ralloc and --pcode-verbose,
5807         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5808         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5809         * (pic16_newpCodeOpLit2): modified to take the second operand as
5810         pCodeOp pointer,
5811         * (pic16_printpBlock): modified to emit each function in a separate
5812         section,
5813         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5814         UPPER for immediate operands,
5815         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5816         instruction,
5817         * src/pic16/peeph.def: all peepholes with movff are commented out,
5818         because there is a problem in the pcode peep optimizer,
5819         * src/pic16/ralloc.c: the register allocator can now reuse local
5820         function symbols for another function. This saves register usage.
5821         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5822
5823         Added file src/pic16/NOTES with information about program writing on
5824         the current port version.
5825
5826 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5827
5828         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5829         and peephole 252 (array access)
5830
5831 2004-01-09  Borut Razem <borut.razem AT siol.net>
5832
5833         * src/SDCCmain.c : fixed #872250: -l command line defined library
5834           files are scanned before standard library files
5835
5836 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * src/SDCCast.c (decorateType): fixed bug #874046
5839
5840 2004-01-09  Borut Razem <borut.razem AT siol.net>
5841
5842         * support/scripts/sdcc.nsi: remove previous installation
5843
5844 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5845
5846         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5847         bytes for last interrupt vector (mcs51)
5848         * sdcc.spec: fixed typo
5849
5850 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5851
5852         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5853         gen51Code): more efficient parameter receive for --model-large
5854         ("bug" #845294)
5855
5856 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/ds390/main.c,
5859         * src/z80/main.c: added missed needLinkerScript flags (more than
5860         one port structure defined in these file)
5861         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5862         bug #795325
5863
5864 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5865
5866         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5867         * src/port.h: added flag needLinkerScript in port->linker
5868         structure to inform whether to create a .lnk file or not,
5869         * src/avr/main.c,
5870         * src/ds390/main.c,
5871         * src/hc08/main.c,
5872         * src/mcs51/main.c,
5873         * src/pic/main.c,
5874         * src/pic16/main.c,
5875         * src/xa51/main.c,
5876         * src/z80/main.c: changed appropriately to configure
5877         needLinkerScript flag
5878         * src/pic/gen.c,
5879         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5880         * src/pic/glue.c: added variable udata_section_name to
5881         override default uninitialized data segment definition for
5882         devices only with SHAREBANK memory (reported from Erik Epetrich)
5883         * (pic14emitOverlay): modified to emit a commented overlay segment
5884         directive when no overlay data exist
5885         * (picglue): modified to emit uninitialized data segment
5886         according to udata_section_name
5887         * src/pic/main.c (_pic14_parseOptions): added command line
5888         options --udata-section-name=[name] to override default
5889         udata definition name
5890         * modified _linkCmd and _asmCmd to include compiler passed
5891         arguments via -W option
5892         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5893         object file from '.rel' to '.o' in port->linker structure,
5894         changed size of fptr from 2 to 3 in port structure
5895
5896 2004-01-07  Borut Razem <borut.razem AT siol.net>
5897
5898         * support/scripts/sdcc.nsi: update PATH
5899         * support/scripts/sdcc.ico: craeted
5900
5901 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5902
5903         * device/include/Makefile.in: fix install
5904         * doc/Makefile: fix install
5905
5906 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5907
5908         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5909         in bug #860505
5910         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5911         how the function variable allocation summary is displayed; also
5912         include information about variables allocated to the overlay
5913         segment
5914
5915 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5916
5917         * as/mcs51/lkmain.c: Help about -Y option
5918         * as/mcs51/lkarea.c: Fixed gcc warnings
5919
5920 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5921
5922         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5923         fixed warning
5924         * support/valdiag/tests/overflow.c: added
5925         * src/SDCCast.c (decorateType),
5926         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5927         LEFT_OP (left shift)
5928
5929 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5930
5931         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5932         (default behaviour).
5933
5934 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         A python script to validate compiler diagnostic messages. It can be
5937         used to verify that sdcc complains about bad c source code and
5938         gives a good location of the error.
5939         * support/valdiag/Makefile,
5940         * support/valdiag/valdiag.py,
5941         * support/valdiag/tests/*
5942
5943 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5946         * src/SDCCsymt.c (newEnumType),
5947         * src/SDCCsymt.h
5948         * support/Util/SDCCerr.c,
5949         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5950         enum related bugs.
5951         * support/regression/tests/enum.c: added test for enum values that
5952         require at least 2 bytes of storage.
5953
5954 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5955
5956         * src/common.h: added ifndef/define/endif macros
5957         around the header file.
5958         Bug reported from Jesus Calvino-Fraga
5959
5960 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5961
5962         * sdcc.spec: updated
5963         * device/include/Makefile.in: don't install CVS directories
5964         * device/lib/Makefile.in: added removal of CVS directories after install
5965         * doc/Makefile: fixed install, added local_icons
5966         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5967         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5968         * src/ds390/gen.c (genRightShift): fixed bug #870788
5969         * src/SDCCast.c (decorateType): fixed bug #870781
5970
5971 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5972
5973         PIC16 port related changes:
5974         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5975         added variable stackPos,
5976
5977         * gen.c: genCall, assignResultValue: added support for
5978         pushing/retrieving function parameters to/from stack,
5979         genFunction,genEndFunction: setup stack frame for the
5980         generated function,
5981         genAddrOf: will be changed according to bug 863624
5982
5983         * added files genutils.c and genutils.h which contain gen*
5984         debugged and optimised functions extracted from gen.c
5985
5986         * glue.c: added variable 'externs' which holds extern symbols,
5987         pic16emitRegularMap: is modified to properly handle relocatable
5988          symbols under the new scheme,
5989         pic16createInterruptVect: is modified
5990         pic16printPublics: is modified to emit 'global' assembler directives,
5991         added pic16_printExterns to print extern symbols,
5992         pic16glue: initializes stack/frame pointer in the beginning of
5993         the assembly output. Temporary hack, will be corrected later,
5994         because gplink yet does not support stack and SDCC does not
5995         yet support a type of crt0.o object to create the final binary.
5996
5997         * Removed many lines that contain 8051 legacy code.
5998         * The code is finally placed under a 'code' directive.
5999         * Added port specific options.
6000
6001         * _process_pragma: simplified since now we do not need *special*
6002         include file to define SFR registers. But a separate header
6003         will be needed. This will be developed later.
6004         * _pic16_parseOptions: added, parses port specific options:
6005         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6006         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6007         --preplace-udata-with=
6008
6009         * _pic16_setDefaultOptions: modified to initialize section names,
6010         but hack is temporarly out of order since it needs improvement.
6011         * _pic16_genAssemblerPreamble: configuration words are emitted by
6012         their address instead of their name. This part is incomplete and
6013         supports only the 18Fxx2 devices. Other devices will emit an error
6014         during assembly since they do not contain the same set of config
6015         registers
6016         * _pic16_genIVT: is modified,
6017
6018         * pcode.c: added definitions for some hardware registers that are needed
6019         for stack support
6020         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6021         All PCI entries are updated. Now LFSR is supported.
6022         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6023         * added pic16_newpCodeOpLit2 to support instructions with
6024         two literal arguments
6025         * pic16_pCode2str: corrected code that emits assembler instructions
6026         with two literal operands and those that have an access bit modifier
6027         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6028         this fixes a bug which caused some labels to be lost, when an
6029         assembler directive was added, i.e. banksel,
6030         * pic16_FixRegisterBanking: improved logic that causes the insertion
6031         of bank switching,
6032         * InlineFunction: functions that are called once, are not any more
6033         inlined. This can be a port option in the future,
6034
6035         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6036
6037         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6038         hold the corresponding uninitialized symbols,
6039         * pic16_allocProcessorRegister: registers have explicit marked the
6040         accessBank field,
6041         * pic16_allocInternalRegister: registers are explicit marked as
6042         not used,
6043         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6044         processing list, so bit registers were lost,
6045         *
6046
6047         * ralloc.h: added field 'accessBank' and original symbol operand
6048         in register definition,
6049         * removed the field isMapped from register definition,
6050
6051         ** Several functions have been removed from various sources:
6052         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6053         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6054         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6055         pic16_assignRelocatableRegisters
6056
6057         ** others have been introduced:
6058         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6059         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6060
6061 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6062
6063         * support/scripts/inc2h.pl: changed definition of BIT_AT
6064         to emit 'sbit at' instead of 'bit at'. This was a request.
6065
6066         PIC16 port related preliminary changes:
6067         * gen.c: prefixed function popRegFromString with
6068         pic16_ and all references to it corrected
6069         * pcode.c: all pic16_pc_* hardware registers prefixed
6070         with underscore (_),
6071         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6072         * ralloc.c: newReg(): when register is REG_SFR then
6073         set address to rIdx,
6074         pic16_allocProcessorRegister(): marks register wasUsed=0
6075         pic16_writeUsedRegs(): added a call to assign processor
6076         registers via pic16_assignFixedRegisters
6077
6078 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6079
6080         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6081         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6082         variables in unused register banks.  Also the SSEG is placed
6083         wherever there is enough space for it, and IDATA can be anywhere
6084         in internal RAM.  For now compile using -Wl-Y[stack_size].
6085         The mem file is different for this option as well, since it
6086         makes no sense of talking about DSEG lenght.
6087
6088 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6089
6090         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6091         in certain cases, e.g. when ROM assignment, patch provided
6092         from Albert den Haan.
6093
6094 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6095
6096         Many signedness and type propagation fixes:
6097         * src/SDCCicode.c: made geniCodeCast() static
6098         replaced SPEC_ by IS_ (cosmetic)
6099         (operandOperation): fixed div and mod operation
6100         (usualBinaryConversions): added support for promotion of char
6101         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6102         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6103         (geniCodeAdd): an array index will stay unsigned, even if promoted
6104         from char to int
6105         (geniCodeArray): ditto
6106         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6107         * src/SDCCsymt.c (computeType): added more support for char;
6108         promotion of char is selectable by promoteCharToInt, fixed signedness
6109         for all cases
6110         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6111         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6112         * src/SDCCval (val*): replaced signedness calculation by
6113         computeType()
6114         rearranged if-branches (cosmetic)
6115         (valShift): added warning W_SHIFT_CHANGED
6116         (valCompare): fixed problem with different types
6117         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6118         * support/regression/tests/literalop.c: added many cases
6119         * support/regression/tests/ast_constant_folding.c: changed finally to
6120         'unsigned int'
6121         * .version: new year, new version: 2.3.7
6122         * src/SDCCmain.c (main): applied patch #866468
6123         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6124         provided by Scott Bronson
6125         * doc/sdccman.lyx: updated documentation for sdcdb
6126         updated and added chapter tips
6127
6128 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCCsymt.h: missing from yesterday's commits
6131
6132 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6133
6134         * src/SDCC.y (struct_or_union_specifier),
6135         * support/Util/SDCCerr.c,
6136         * support/Util/SDCCerr.h: verify that struct & union tags are used
6137         as declared.
6138
6139 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCglobl.h: missing from yesterday's commits
6142
6143 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6146         sft_attributes, struct_declaration, parameter_declaration,
6147         type_name, start_block, declaration_list),
6148         * src/SDCC.lex (check_type): support redefinition of typedef names
6149
6150 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6151
6152         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6153         aligned xdata arrays. Erik helped me with the if clause.
6154
6155 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6158         warning
6159
6160 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6161
6162         * src/SDCCast.h,
6163         * src/SDCCast.c (newAst_),
6164         * src/SDCCicode.h,
6165         * src/SDCCicode.c (ast2iCode, newiCode),
6166         * src/SDCCglobl.h,
6167         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6168         expr, statement, expression_statement, selection_statement,
6169         iteration_statement, expr_opt, jump_statement): foundation for tracking
6170         sequence points
6171         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6172         point code too)
6173
6174 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6175
6176         * support/Util/SDCCerr.c,
6177         * src/SDCCast.h,
6178         * src/SDCCast.c (createCase, createDefault, decorateType),
6179         * src/SDCClabel.c (labelUnreach),
6180         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6181         to error messages.
6182         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6183         (with thanks to Stas Sergeev)
6184         * device/include/time.h,
6185         * device/lib/time.c (CheckTime): suppress unreachable code warning
6186
6187 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6188
6189         * src/SDCCast.c (createIvalCharPtr),
6190         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6191         bug #753752)
6192         * support/regression/tests/nullstring.c: tests for these two bugs
6193
6194 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * support/Util/SDCCerr.h,
6197         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6198         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6199         about storage class and 'at' used inside struct or union
6200         * src/SDCCBBlock.c (iCodeFromeBBlock),
6201         * src/SDCCcse.c (ifxOptimize),
6202         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6203         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6204         printIval, emitStaticSeg, emitOverlay),
6205         * src/SDCClabel.c (deleteIfx),
6206         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6207         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6208         gatherAutoInit, processParms),
6209         * support/Util/SDCCerr.h,
6210         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6211         reporting for post-parse errors.
6212
6213 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6214
6215         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6216         implicit casts via union; they don't work on big endian systems
6217         (possible fix for bug #861138)
6218
6219 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6220
6221         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6222         * src/mcs51/main.c: fixed the fix for bug #737001
6223
6224 2003-12-15  Borut Razem <borut.razem AT siol.net>
6225
6226         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6227
6228 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * support/makebin/makebin.c: put output in binary mode
6231
6232 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6233
6234         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6235         xdata and data memory on startup. Set the environment variable
6236         SDCC_NOGENRAMCLEAR to disable this.
6237         * src/mcs51/peephole.def,
6238         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6239         (allows non-interrupt and interrupt code to safely compete for a resource
6240         without the non-interrupt code having to disable interrupts)
6241
6242 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6243
6244         * src/SDCCicode.c (geniCodeAdd),
6245         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6246         with valFromType if type might be a pointer and host is big endian).
6247         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6248         types, not just integer types.
6249         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6250         multiply defined with mismatching "at" address.
6251
6252 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6253
6254         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6255         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6256         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6257         with embedded nulls (fixed bug #753752)
6258
6259 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6260
6261         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6262         Apparently this did not see much testing (endless loop)
6263
6264 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6265
6266         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6267
6268 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6271         gracefully handle NULL memmap pointers
6272
6273 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6276         instead of deleting the iCode when an operand is volatile
6277         * src/z80/gen.c (genDummyRead),
6278         * src/mcs51/gen.c (genDummyRead),
6279         * src/ds390/gen.c (genDummyRead),
6280         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6281         not just IC_RIGHT
6282         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6283         * src/SDCC.y: fixed bug #850420
6284
6285 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6286
6287         Applied z80 i/o port patch from Peter Townson and fixed some operators
6288         to better handle operands in A register.
6289         * device/include/z180.h
6290         * src/SDCC.y
6291         * src/SDCCglue.c
6292         * src/z80/gen.c
6293         * src/z80/gen.h
6294         * src/z80/main.c
6295         * src/z80/peeph-z80.def
6296         * src/z80/peeph.def
6297         * src/z80/z80.h
6298
6299 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6300
6301         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6302
6303 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6304
6305         * device/lib/hc08/_mullong.c: Removed extra #endif
6306
6307 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * sim/ucsim/hc08.src/inst.cc,
6310         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6311         carries from x to h
6312         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6313         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6314         * device/include/stdarg.h: fixed varargs for hc08
6315         * device/lib/Makefile.in,
6316         * device/lib/hc08/Makefile,
6317         * device/lib/hc08/_mulint.c,
6318         * device/lib/hc08/_mullong.c: fixed some endian problems
6319
6320 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6321
6322         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6323         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6324         * device/lib/_gptrget.c,
6325         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6326
6327 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6330         * src/SDCCast.c (astErrors): fixed bug #846007
6331         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6332
6333 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * src/SDCCast.c (decorateType): disabled a transformation I added in
6336         revision 1.188 (access to fields of a structure at an absolute address);
6337         it breaks with bitfields, extern declarations, and gcse analysis.
6338         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6339         could be assigned through a pointer, so don't complain.
6340         * src/SDCCast.c (astErrors),
6341         * src/SDCCast.h,
6342         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6343
6344 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6345
6346         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6347         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6348         output of __config directives, since gpasm now supports them
6349         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6350         pre-processor macro, i.e. -DMCU=p18f452
6351         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6352         and modified to handle 'cast' icode similarly to '=' icode
6353         * src/pic16/device.h (typedef struct PIC_device): added field
6354         'extMIface' to indicate that chip has external memory interface
6355         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6356         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6357         18F8720
6358
6359 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6360
6361         * src/SDCC.y (pointer): fixed bug #846006
6362         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6363         * src/SDCCast.c (decorateType): fixed bug #846009
6364         * src/ds390/peeph.def,
6365         * src/ds390/gen.c (genAnd, genOr),
6366         * src/mcs51/peeph.def,
6367         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6368
6369 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6372         * src/SDCCdflow.c
6373         * src/SDCCcse.c
6374         * src/SDCCcse.h
6375         * src/SDCCBBlock.h
6376         * src/SDCCBBlock.c
6377
6378 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6379
6380         fixed bug #845089
6381         * src/SDCCbitv.h,
6382         * src/SDCCbitv.c: added function to free a bitvector
6383         * src/SDCClrange.h,
6384         * src/SDCClrange.c: added function to recompute the liveranges
6385         * src/avr/ralloc.c,
6386         * src/ds390/ralloc.c,
6387         * src/hc08/ralloc.c,
6388         * src/mcs51/ralloc.c,
6389         * src/pic/ralloc.c,
6390         * src/pic16/ralloc.c,
6391         * src/xa51/ralloc.c,
6392         * src/z80/ralloc.c: recompute the liveranges after register packing
6393
6394 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6395
6396         * src/SDCCloop.c (newInduction): fixed bug #845630
6397
6398 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6399
6400         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6401         inadvertantly left behind from my 2003-11-12 change
6402
6403 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6404
6405         Updated headers I neglected to commit yesterday.
6406         * src/SDCClrange.h,
6407         * src/SDCCicode.h
6408
6409 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6412         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6413         * src/SDCCopt.c (eBBlockFromiCode),
6414         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6415         the creation of the key hash table from the sequencing so it can be used
6416         earlier (for some GCSE bug fixes still pending)
6417
6418 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6419
6420         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6421         * support/regression/tests/addsub.c: testing genPlus shortcut
6422
6423 2003-11-15  Borut Razem <borut.razem AT siol.net>
6424
6425         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6426
6427 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6428
6429         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6430         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6431         ordering is immaterial.
6432         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6433
6434 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6435
6436         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6437         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6438         (SIGSEV) of bug #840381
6439         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6440         unlink new file before rename if new and old filenames are the same)
6441
6442 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6443
6444         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6445         uninitialized variables) for the mcs51. Set environment variable
6446         SDCC_GENRAMCLEAR to test.
6447         xdata initialization slightly shorter
6448
6449 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6450
6451         * src/SDCCsymt.h,
6452         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6453         #838241 & 780691 (basicly the same bug)
6454         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6455         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6456
6457 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6458
6459         * src/SDCCmain.c (linkEdit): "fix" #834252
6460
6461 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6464         * src/SDCCast.h,
6465         * src/SDCC.y: fixed bug #819403
6466
6467 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6468
6469         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6470         the reentrant attribute.
6471         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6472         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6473         simulation
6474         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6475         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6476         erroneously reduced to a literal.
6477         * src/hc08/ralloc.c (packRegisters, rematStr),
6478         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6479         some cases
6480
6481 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6482
6483         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6484         * doc/sdccman.lyx: changed from 'article' to 'book'
6485         * doc/Makefile: readded test_suite_spec and cdbfileformat
6486
6487 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6488
6489         * device/include/stdlib.h: include malloc.h to comply with ANSI
6490         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6491
6492 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6493
6494         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6495         * doc/clean.mk: also remove *.out files
6496         * doc/sdccman.lyx: some additions, larger top/bottom margins
6497
6498 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         * src/SDCC.y: fixed bug #837365
6501         * support/regression/tests/bitopcse.c
6502         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6503         a symbol (might be valop instead)
6504         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6505         * device/lib/clean.mk: added hc08 to the cleaning list
6506
6507 2003-11-04  Borut Razem <borut.razem AT siol.net>
6508
6509         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6510           made 2003-11-04
6511         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6512           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6513           malloc is declared in standard stdlib.h
6514
6515 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * device/lib/hc08/Makefile: need to clean .rel not .o files
6518         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6519
6520 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6521
6522         * src/port.h,
6523         * src/hc08/main.c,
6524         * src/mcs51/main.c,
6525         * src/ds390/main.c,
6526         * src/z80/main.c,
6527         * src/avr/main.c,
6528         * src/pic/main.c,
6529         * src/pic16/main.c,
6530         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6531         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6532         tests (which uses the port's oclsExpense function)
6533         * src/SDCC.y,
6534         * src/SDCCast.c,
6535         * src/SDCCicode.c,
6536         * src/hc08/gen.c,
6537         * src/ds390/gen.c,
6538         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6539
6540 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6541
6542         * src/SDCCcse.c (ifxOptimize),
6543         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6544         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6545         deleting the IFX iCode.
6546         * src/hc08/ralloc.c: reduced unneeded slocs
6547         * src/hc08/gen.c: fixed bug in asmopToBoolean
6548
6549 2003-11-04  Borut Razem <borut.razem AT siol.net>
6550
6551         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6552           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6553           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6554           transferred to configure
6555
6556 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6557
6558         Use headers defined in the C[++] standards:
6559         * sim/ucsim/gui.src/serio.src/fileio.cc
6560         * sim/ucsim/gui.src/serio.src/frontend.cc
6561         * sim/ucsim/gui.src/serio.src/main.cc
6562         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6563         * support/Util/NewAlloc.c
6564         * as/hc08/lklibr.c
6565         * as/mcs51/lklibr.c
6566         * as/z80/aslist.c
6567         * as/z80/assym.c
6568
6569 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6570
6571         * Added MSVC projects for hc08 assembler and linker:
6572         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6573         /as/hc08/link_hc08.dsp
6574
6575 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6576
6577         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6578
6579 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6580
6581         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6582
6583 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6584
6585         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6586
6587 2003-10-31  Borut Razem <borut.razem AT siol.net>
6588
6589         * support/cpp2/cpplib.h,
6590           support/cpp2/cpplib.c,
6591           support/cpp2/cpplex.c,
6592           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6593           to switch _asm block preprocessing on / off. Default is
6594           #pragma preproc_asm +
6595
6596 2003-10-31  Borut Razem <borut.razem AT siol.net>
6597
6598         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6599           when outputting comment blocks (when executed with -C option) and
6600           _asm (SDCPP specific) blocks
6601
6602 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6603
6604         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6605
6606 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6607
6608         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6609
6610 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6611
6612         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6613         * src/SDCCast.c (decorateType): fixed bug #832664
6614
6615 2003-10-31  Borut Razem <borut.razem AT siol.net>
6616
6617         * support\cpp2\cpplex.c: fixed for SDCPP:
6618           comments(when executed with -C option) and _asm blocks
6619           were included even if they where in skipped #if block.
6620           Applied solution from GCC cpp 3.3.2
6621
6622 2003-10-31  Borut Razem <borut.razem AT siol.net>
6623
6624         * src/SDCC.lex: sdcc now understands both formats:
6625           '# <line_number> <file_name>' and
6626           '#line <line_number> <file_name>'
6627         * support/cpp2/cppmain.c: sdcpp now generates the standard
6628           '# <line_number> <file_name>' instead of former
6629           '#line <line_number> <file_name>'
6630
6631 2003-10-30  Borut Razem <borut.razem AT siol.net>
6632
6633         * support/cpp2/cpphash.h,
6634         * support/cpp2/cpplib.h
6635         * support/cpp2/cpplex.c,
6636         * support/cpp2/cppmain.c,
6637         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6638
6639 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6640
6641         Fixed a number of problems revealed by bug #827883.
6642         * src/SDCCloop.c (loopInvariants): Spill location of the
6643         result operand should be recomputed if extracted from
6644         a loop. Also, don't extract assignments of an iTemp
6645         from a literal.
6646         * src/SDCCast.c (isConformingBody): loop reversal should
6647         not occur if the control variable is involved with a
6648         relational operator.
6649
6650 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6651
6652         * .version: bumped to 2.3.6 to reflect the big improvements
6653         made by Erik and Klaus. Thanks!
6654
6655 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6656
6657         Replaced the livrange code.
6658         * src/SDCClrange.c: added new LR code
6659         * src/SDCCloop.c,
6660         * src/SDCCBBlock.h: removed remainig parts from old LR code
6661         * src/ds390/ralloc.c,
6662         * src/ds390/gen.c: minor fixes to make it work with new code
6663
6664 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6665
6666         * as/hc08/asm.h,
6667         * as/hc08/lkrloc.c,
6668         * src/hc08/gen.c,
6669         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6670         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6671         (tweaked fix for bug #818696)
6672
6673 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6674
6675         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6676
6677 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6678
6679         * src/SDCCmain.c,
6680         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6681         * src/mcs51/gen.c (gencjneshort),
6682         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6683         more efficient (per Scott Bronson's suggestion)
6684
6685 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6686
6687         Extended the semantics of the critical keyword to include
6688         individual statements. See RFE #827755 and #799831
6689         * src/SDCC.y
6690         * src/SDCCicode.c
6691         * src/SDCCopt.c
6692         * src/SDCCast.c
6693         * support/Util/SDCCerr.c
6694         * support/Util/SDCCerr.h
6695         * src/mcs51/gen.c
6696         * src/ds390/gen.c
6697         * src/hc08/gen.c
6698
6699 2003-10-19  Borut Razem <borut.razem AT siol.net>
6700
6701         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6702
6703 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6704
6705         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6706         Fixed bug #818696
6707         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6708         and predecrement operand is displayed
6709
6710 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCval.c (valMinus): fixed bug #826041
6713
6714 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6715
6716         Some hc08 related updates that I missed earlier
6717         * sim/ucsim/stypes.h
6718         * support/regression/ports/hc08/spec.mk
6719
6720 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6721
6722         New target "hc08" for the Motorola 68hc08 family of micros
6723
6724         * configure
6725         * configure.in
6726         * Makefile
6727         * src/hc08/*
6728         * src/SDCCmain.c
6729         * src/port.h
6730         * sim/ucsim/hc08.src/*
6731         * sim/ucsim/configure.in
6732         * src/ucsim/configure
6733         * sim/ucsim/packages_in.mk
6734         * as/hc08/*
6735         * as/Makefile
6736         * device/include/mc68hc908qy.h
6737         * device/lib/hc08/*
6738         * device/lib/Makefile.in
6739         * support/regression/ports/hc08/*
6740         * support/regression/Makefile
6741
6742 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6743
6744         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6745         regression test
6746         * src/ds390/gen.c (genCast): fixed bug #821957
6747
6748 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6749
6750         * device/lib/logf.c: "fixed" overlay bug
6751         * support/regression/ports/host/spec.mk: added m library
6752         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6753         * support/regression/tests/float_trans: added (for Eric)
6754
6755 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6756
6757         * src/mcs51/gen.c (genCpl): fixed bug
6758         http://sf.net/mailarchive/message.php?msg_id=6263915
6759
6760 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6761
6762         * src/SDCCast.c (decorateType): added extended constant folding
6763         * src/SDCCsymt.c (computeType): cleanup
6764         * src/SDCCval.c (valShift): minor optimization
6765         * support/regression/tests/ast_constant_folding.c: added
6766
6767 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         * src/SDCCmain.c: removed some unintended changes
6770
6771 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6774         * src/z80/gen.c: fixed part of bug #817589
6775         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6776
6777 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6778
6779         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6780         * src/SDCCcflow.c
6781         * src/SDCCcse.c
6782         * src/SDCCdflow.c
6783         * src/SDCClabel.c
6784         * src/SDCClrange.c
6785         * src/SDCCmem.c
6786         * src/SDCCopt.c
6787         * src/SDCCpeeph.c
6788         * src/SDCCset.c
6789         * src/avr/ralloc.c
6790         * src/ds390/ralloc.c
6791         * src/izt/ralloc.c
6792         * src/mcs51/ralloc.c
6793         * src/pic/ralloc.c
6794         * src/pic16/ralloc.c
6795         * src/xa51/ralloc.c
6796         * src/z80/ralloc.c
6797         * src/z80/gen.c: removed unused label "release:"
6798
6799 2003-10-06  Borut Razem <borut.razem AT siol.net>
6800
6801         * src/SDCC.lex: removed definition of unused variables
6802           save_optimize and save_options
6803
6804 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6805
6806         * clean.mk: removed '=' in "-maxdepth=1"
6807         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6808         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6809
6810 2003-10-06  Borut Razem <borut.razem AT siol.net>
6811
6812         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6813           my_unput() replaced by unput()
6814
6815 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6816
6817         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6818         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6819         type-punned pointer will break strict-aliasing rules"
6820         Old LR behaviour is again default; Klaus' LR can be choosen by
6821         defining the environment variable LRKLAUS
6822         * src/SDCCBBlock.h
6823         * src/SDCCloop.c
6824         * src/SDCClrange.c
6825         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6826         * clean.mk: fixed removal of files in bin/CVS/
6827         * device/lib/clean.mk: fixed removal of directories small and large
6828         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6829         * src/SDCCicode.c,
6830         * src/SDCCval.c: removed superflous test for pedantic
6831
6832 2003-10-05  Borut Razem <borut.razem AT siol.net>
6833
6834         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6835           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6836           message "unmatched #pragma SAVE and #pragma RESTORE"
6837
6838 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6839
6840         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6841           assembly, critical functions, atomic, nojtbound)
6842
6843 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6846         * src/SDCCBBlock.h
6847         * src/SDCCloop.c
6848         * src/SDCCloop.h
6849         * src/SDCClrange.c
6850
6851 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6852
6853         * src/z80/gen.h,
6854         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6855         * src/mcs51/gen.h
6856         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6857         * src/ds390/gen.h
6858         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6859         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6860         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6861
6862 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/z80/gen.c (genRet): fixed bug #524753
6865         * src/z80/gen.c (genCast): fixed internal error on cast from
6866         pointer to long
6867         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6868         fix for bug #477835 to the z80
6869         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6870         for tracking iCodes in the peephole optimizer for z80
6871
6872 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6875         the other part of bug #814548
6876         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6877
6878 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6879
6880         * src/SDCCcse.c: fixed part of bug #814548
6881
6882 2003-09-28  Borut Razem <borut.razem AT siol.net>
6883
6884         * src/asm.c: rewrite of printILine() to use temporary file instead
6885           a pipe
6886         * src/xa51/main.c: commented out declaration of int rewinds
6887
6888 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6889
6890         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6891
6892 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6893
6894         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6895         * src/asm.c (printILine): Fixed bug #811015
6896
6897 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6898
6899         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6900         freeing.
6901
6902 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6905         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6906         to correctly handle general case of AOP_PAIRPTR
6907         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6908
6909 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6910
6911         * src/mcs51/ralloc.c (fillGaps),
6912         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6913         register positioning bug)
6914
6915 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6916
6917         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6918
6919 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6922         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6923         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6924         (ralloc doesn't intentionally do this now, but perhaps later)
6925         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6926         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6927         register positioning bugs (Fixed bug #762602 and #795325)
6928         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6929         (Fixed bug #808779)
6930         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6931         lines that --i-code-in-asm generates
6932
6933 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6934
6935         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6936         trying to fclose a FILE* that was already closed.
6937
6938 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6941         of const struct should be treated as if const themselves)
6942
6943 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6944
6945         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6946
6947 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6948
6949         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6950         Unix (/n) and DOS (/r/n) line terminations.
6951
6952 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6953
6954         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6955         bug #613775
6956
6957 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6958
6959         * src/mcs51/gen.c (genFunction, genEndFunction),
6960         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6961         and restore of EA so that stack offsets to parameters are
6962         correct when using both critical and reentrant/stack-auto.
6963         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6964         size (can be triggered in error if sloc is shared between
6965         different sized objects)
6966         * device/include/float.h: fixed macros to explicitly use
6967         unsigned long where needed
6968
6969 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6970
6971         Feature req. 799831: added code to allow nesting of critical functions
6972         * src/mcs51/gen.c (genFunction, genEndFunction)
6973         * src/ds390/gen.c (genFunction, genEndFunction)
6974
6975 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6976
6977         * src/SDCCsymt.c (sclsFromPtr),
6978         * src/SDCCsymt.h,
6979         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6980         support for standard C idiom of memory mapped variables; for
6981         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6982         to xdata int at 0x1234 tempvar = 1.
6983         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6984         provided by Akiya ISHIDA
6985
6986 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6987
6988         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6989         * src/SDCCval.c (constVal): added reduction from int to char
6990         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6991         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6992         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6993         to ignore the sign
6994         * support/regression/tests/shifts.c: fixed
6995
6996 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6997
6998         * src/z80/gen.c (genXor): Fixed bug #805445
6999
7000 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7001
7002         Fixed bug #621531 (const & volatile confusion in the type chain).
7003         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7004         refer to the const or volatile state of the pointer itself.
7005
7006         * src/SDCCast.c
7007         * src/SDCCglue.c
7008         * src/SDCCicode.c
7009         * src/SDCCsymt.c
7010         * src/SDCCval.c
7011         * src/SDCC.y
7012         * src/SDCCsymt.h
7013         * src/pic/gen.c
7014         * src/pic/ralloc.c
7015         * src/pic16/gen.c
7016         * src/pic16/ralloc.c
7017         * support/regression/tests/const.c
7018
7019 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7020
7021         When checking for duplicated modules, use absolute paths
7022         instead of relative paths.  Files changed:
7023
7024         * as/mcs51/lklib.c
7025         * link/z80/lklib.c
7026
7027 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7030
7031 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7032
7033         * device/include/string.h: added size_t typedef, changed
7034         prototypes to use size_t, eliminated separate reentrant and
7035         non-reentrant declarations, added _memmove declaration
7036         * device/lib/_memcpy.c: changed to use size_t instead of int,
7037         changed /4 to >>2 to avoid division library call
7038         * device/lib/_memcmp.c,
7039         * device/lib/_memset.c,
7040         * device/lib/_strncat.c,
7041         * device/lib/_strncpy.c,
7042         * device/lib/_strncmp.c: changed to use size_t instead of int
7043         * device/lib/_memmove.c: new file (fixed bug #772294)
7044         * device/lib/Makefile.in: added _memmove.c
7045         * device/lib/z80/asm_strings.s: fixed bug #772290
7046         * support/regression/tests/bitfields.c: attempt to fix host assertion
7047         failure on amd64-unknown-linux2.2
7048
7049 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7052         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7053         * as/z80/asmain.c (main): fixed bug #801766
7054
7055 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7056
7057         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7058         compilers
7059
7060 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7061
7062         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7063         reported in bug #800609
7064
7065 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7066
7067         * Top header beautifications in src/pic16 directory:
7068           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7069           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7070           pcoderegs.h, ralloc.c, ralloc.h
7071         * main.c: added top header and GPL license notice
7072         * pcode.c: fixed the if-conditional warning
7073
7074 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7075
7076         * device/lib/_mullong.c: replaced int by short for gcc
7077
7078 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7079
7080         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7081         and JUMPTABLE iCodes properly now (worked by accident before)
7082         * src/mcs51/gen.c (leftRightUseAcc),
7083         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7084         iCode properly now. Use getSize instead of nRegs since a & b
7085         aren't part of the nRegs tally.
7086
7087 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7088
7089         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7090         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7091           before instructions that use the _STATUS register
7092
7093 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7094
7095         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7096         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7097         fetching of the pointer
7098         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7099         copied from genNearPointerSet()
7100         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7101         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7102         If they pop r0/r1 they must be called in the opposite order than aopOp().
7103         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7104         (resp. --stack-auto), prepared for --xstack
7105
7106 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7107
7108         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7109
7110 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7111
7112         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7113         these ports have their own __sdcc_external_start()
7114
7115 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7116
7117         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7118         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7119         type for bits was changed. It resulted in bit variables becoming
7120         global, which is not permitted in PIC 14 assembly output.
7121
7122 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7123
7124         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7125
7126 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7127
7128         Z80 and MCS51 linkers complaint if a public symbol is defined
7129         in more than one library module:
7130
7131         * as/mcs51/lklib.c
7132         * link/z80/lklib.c
7133         * as/mcs51/Makefile.in
7134
7135 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7136
7137         A few small changes that speed up the peephole optimizer.
7138
7139         * src/SDCCpeeph.c
7140
7141 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7142
7143         Try to make the peephole optimizer smarter by maintaining
7144         an association between the assembly source code and the
7145         iCodes that originated them. Put this information to use
7146         with a new peephole rule condition "notVolatile" so that
7147         the rules can be aggressive yet still safe.
7148
7149         * src/SDCCpeeph.c
7150         * src/SDCCpeeph.h
7151         * src/mcs51/gen.c
7152         * src/mcs51/peeph.def
7153
7154 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7155
7156         Fixed bug #741761
7157
7158         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7159         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7160         if the left or right operand symbols have the accuse flag set.
7161
7162 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7163
7164         Changed the type of the result of the ! (NOT) operator to char;
7165         previously it returned the same type as the source. This allows
7166         us to eliminate all the genFloatNot functions (all of its target
7167         implementations were very buggy) since !float can use the same
7168         code as !long now.
7169
7170         * src/SDCCicode.c (ast2iCode): ! returns char
7171         * src/mcs51/gen.c (genNot, genNotFloat),
7172         * src/ds390/gen.c (genNot, genNotFloat),
7173         * src/z80/gen.c (genNot, genNotFloat),
7174         * src/pic/gen.c (genNot, genNotFloat),
7175         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7176
7177 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7178
7179         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7180         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7181            during interrupts. Ensure WSAVE is located at a shared bank address.
7182         2. Fixed page selection in some places
7183         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7184            the registers name strings.
7185         4. Fixed "signed / unsigned compare" compiler warnings.
7186         5. The PIC port manages its own allocation of the general purpose
7187            registers, but makes no attempt to reuse them. As a result when
7188            compiling it soon runs out of general purpose registers. Some
7189            additional code was added to the files pcode.c and device.c to walk
7190            through the function call tree and rename the registers so that they
7191            get reused.
7192
7193         * src/pic/device.c
7194         * src/pic/gen.c
7195         * src/pic/glue.c
7196         * src/pic/pcode.c
7197         * src/pic/pcode.h
7198         * src/pic/ralloc.c
7199         * src/pic/ralloc.h
7200         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7201         genPlus() & genMinus() when the result is the same as left or right
7202
7203 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7204
7205         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7206
7207 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7208
7209         Made bitfield a distinct type from bit so that bitfields
7210         convert as per ANSI C and bits retain their traditional
7211         boolean style behaviour. Implemented bitfield support in
7212         the z80 port.
7213
7214         * src/SDCCsymt.h,
7215         * src/SDCCsymt.c,
7216         * src/SDCCast.c,
7217         * src/cdbFile.c,
7218         * src/mcs51/gen.c,
7219         * src/ds390/gen.c: bit v bitfield split
7220         * src/z80/gen.c: New support for bitfields
7221         * support/regression/tests/bitfields.c: reenabled z80,
7222         added more tests
7223
7224 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7225
7226         Rules 246.x, 247.x relate to bitfields, the others speed up
7227         access to xdata mapped I/O devices.
7228
7229         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7230
7231 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7232
7233         Cleaned up genPackBits and genUnpackBits and added two helper
7234         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7235         for literal assignments in genPackBits (thanks to Frieder for
7236         reminding me).
7237
7238         * src/mcs51/gen.c
7239         * src/ds390/gen.c
7240
7241 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         Fixed bug #748310 (pointer to function type mishandled when the
7244         function name is omitted). Also fixed a SIGSEGV when a function
7245         attribute (reentrant, etc) is used on a non-function or on a
7246         function but misplaced before the parameter list.
7247
7248         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7249         bug #748310
7250         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7251         * support/Util/SDCCerr.h,
7252         * support/Util/SDCCerr.c: Added func attr misuse error msg
7253
7254 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7255
7256         Fixed bug #787649 by anonymous
7257         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7258         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7259
7260 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7261
7262         Fixed numerous bitfield problems.
7263
7264         * src/SDCC.y: More bitfield related error checking
7265         * src/SDCCsymt.h,
7266         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7267         * support/Util/SDCCerr.h,
7268         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7269         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7270         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7271         * support/regression/tests/bitfields.c: tests added
7272
7273 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7274
7275         Made the constant following the "interrupt" keyword optional. If
7276         omitted, the function will not automatically be given an entry
7277         in the interrupt vector table (similar to #pragma NOIV, but
7278         less syntacticly kludgy). The interrupt number is also now
7279         range checked. Also fixed a bug in the high order bit example
7280         in the manual.
7281
7282         * src/SDCC.y
7283         * src/SDCCmem.c
7284         * src/SDCCglue.c
7285         * src/SDCCsymt.h
7286         * support/Util/SDCCerr.c
7287         * support/Util/SDCCerr.h
7288         * doc/sdccman.lyx
7289
7290 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7291
7292         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7293         * src/SDCCicode.c (operandOperation): rewritten some ops
7294         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7295         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7296         other type
7297         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7298         be re-activated by defining REDUCE_LITERALS)
7299         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7300         unsigned, but are signed by default
7301         * src/SDCCval.c (constVal): rearranged
7302         * src/SDCCval.c (valMod): preliminary fix
7303         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7304         * support/regression/literalop.c: added, work in progress
7305
7306 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7307
7308         Generate warnings for useless declarations like "char data;"
7309         that don't do what new users expect.
7310
7311         * src/SDCC.y
7312         * support/Util/SDCCerr.h
7313         * support/Util/SDCCerr.c
7314
7315 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7316
7317         * src/SDCCval.c (valMult): fix overflow detection of negative int
7318
7319 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7322
7323         Changes to support big endian targets:
7324
7325         * src/ports.h
7326         * src/SDCCglue.c
7327         * src/avr/main.c
7328         * src/ds390/main.c
7329         * src/izt/i186.c
7330         * src/mcs51/main.c
7331         * src/pic/main.c
7332         * src/pic16/main.c
7333         * src/xa51/main.c
7334         * src/z80/main.c
7335
7336 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7339         * device/lib/time.c: fixed warning "integer overflow in expression"
7340
7341 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7342
7343         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7344         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7345         constants are unsigned; added recognition of "u" flag for unsigned
7346         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7347         * src/SDCCval.c (valDiv, valMod): fixed signdness
7348         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7349         signedness of modulo, left and right shift
7350         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7351         * support/Util/SDCCerr.h: added warning W_INT_OVL
7352         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7353         * src/SDCCast.c (ast_print): improved output of constants
7354
7355 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7356
7357         Fixed some warnings when building with MSVC:
7358
7359         * as\mcs51\asdata.c
7360         * as\z80\asdata.c
7361         * as\mcs51\asm.h
7362         * as\z80\asm.h
7363         * link\z80\aslink.h
7364         * link\z80\lkdata.c
7365         * link\z80\lkeval.c
7366         * link\z80\lkgb.c
7367         * link\z80\lkihx.c
7368         * link\z80\lks19.c
7369         * link\z80\lksym.c
7370         * support\cpp2\cpplib.c
7371         * src\ds390\gen.c
7372         * src\mcs51\gen.c
7373
7374 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7377
7378 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7379
7380         * support\librarian\clean.mk: Do not remove Makefile.
7381         * support\librarian\Makefile: added.
7382
7383 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7384
7385         Added librarian to MSVC build:
7386         * all.dsp
7387         * sdcc.dsw
7388         * support\librarian\librarian.dsp
7389
7390         'configure' not needed for librarian, removed:
7391         * support\librarian\configure
7392         * support\librarian\configure.in
7393         * support\librarian\config_in.h
7394         * support\librarian\Makefile.in
7395
7396         Hopefully these ones built the librarian and the rest of sdcc properly:
7397         * Makefile
7398         * Makefile.common.in
7399
7400         Messed up 'configure', so revert to previous version:
7401         * configure
7402         * configure.in
7403
7404 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7405
7406         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7407         there, while the mantissa of a double is "only" 53 bits wide.
7408
7409 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7410
7411         Adding sdcclib to the build.  MSVC project coming soon.
7412         Files added/changed:
7413
7414         * support\librarian\clean.mk
7415         * support\librarian\configure
7416         * support\librarian\configure.in
7417         * support\librarian\config_in.h
7418         * support\librarian\Makefile.bcc
7419         * support\librarian\Makefile.in
7420         * support\librarian\sdcclib.c
7421         * Makefile.bcc
7422         * Makefile
7423         * Makefile.common.in
7424         * configure
7425         * configure.in
7426
7427 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7428
7429         Linker now complaints if linked modules have conflicting options, for
7430         example, one compiled using --model-large and another one compiled with
7431         --model-small.  The following files were modified:
7432
7433         * as\mcs51\asdata.c
7434         * as\mcs51\aslink.h
7435         * as\mcs51\asm.h
7436         * as\mcs51\asmain.c
7437         * as\mcs51\asout.c
7438         * as\mcs51\i51pst.c
7439         * as\mcs51\lkdata.c
7440         * as\mcs51\lklibr.c
7441         * as\mcs51\lkmain.c
7442         * as\z80\asdata.c
7443         * as\z80\asm.h
7444         * as\z80\asmain.c
7445         * as\z80\asout.c
7446         * as\z80\z80pst.c
7447         * link\z80\aslink.h
7448         * link\z80\lkdata.c
7449         * link\z80\lklibr.c
7450         * link\z80\lkmain.c
7451         * src\SDCCglue.c
7452
7453 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7454
7455         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7456         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7457
7458 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         * src/z80/mappings.i: fix _mul[us][int,long] entries
7461
7462 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7463
7464         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7465
7466 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7467
7468         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7469         * support/regression/tests/bitopcse.c: added
7470         fixed warning:
7471         * src/avr/gen.c:
7472         * src/pic/gen.c:
7473         * src/pic16/gen.c:
7474         * src/z80/gen.c:
7475         * src/xa51/gen.c:
7476
7477 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7478
7479         added support for new library format to z80, gbz80 linkers:
7480         *link/z80/aslink.h
7481         *link/z80/lklex.c
7482         *link/z80/lklib.c
7483         *link/z80/lklist.c
7484
7485 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7486
7487         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7488         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7489
7490 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7491
7492         added DUMMY_READ_VOLATILE:
7493         * src/SDCC.y:
7494         * src/avr/gen.c:
7495         * src/xa51/gen.c:
7496         * src/z80/gen.c:
7497         * src/pic/gen.c:
7498         * src/pic16/gen.c:
7499         * src/mcs51/gen.c:
7500         * src/ds390/gen.c:
7501         * src/SDCCcse.c (algebraicOpts): many improvements
7502         * src/SDCCcse.h: removed algebraicOpts()
7503         * src/SDCCicode.c (picDummyRead): added
7504
7505 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7506
7507         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7508         "Insufficient space in data memory".
7509
7510 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7511
7512         * src/mcs51/gen.c: fixed bug #771358
7513         * src/z80/gen.c: fixed bug #759087
7514
7515 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7516
7517         * src/pic16/glue.c: minor cleanup by Vangelis
7518
7519 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7520
7521         * device/include/regc515c.h: fixed #758477
7522         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7523         * device/lib/_gptrput.c: saved a few bytes
7524         * my tab spacing is 8, yours too?)
7525         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7526         * device/lib/serial.c: process RX bytes earlier than TX bytes
7527         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7528
7529 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7530
7531         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7532
7533 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7534
7535     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7536
7537 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7538
7539         * device/lib/Makefile.in: bad fix, reverted to 1.43
7540
7541 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         * device/lib/Makefile.in: added missing z80 object files
7544
7545 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7548         pic16 progress by Vangelis:
7549         * src/SDCCglobl.h:
7550         * src/SDCCmain.c:
7551         * src/pic/Makefile:
7552         * src/pic:
7553         * pic/Makefile:
7554         * pic16/device.c:
7555         * pic16/device.h:
7556         * pic16/gen.c:
7557         * pic16/gen.h:
7558         * pic16/genarith.c:
7559         * pic16/glue.c:
7560         * pic16/main.c:
7561         * pic16/pcode.c:
7562         * pic16/pcode.h:
7563         * pic16/pcodepeep.c:
7564         * pic16/peeph.def:
7565
7566 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7567
7568     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7569
7570 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7571
7572     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7573     added gbz80 build to MSVC project.
7574     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7575     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7576     from 8051 stuff and setup so it links using a .lnk file.
7577
7578 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7579
7580     * support/librarian/sdcclib.c: sdcc librarian.
7581     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7582     with sdcclib.
7583
7584 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7585
7586     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7587
7588 2003-07-02  Borut Razem <borut.razem AT siol.net>
7589
7590         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7591         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7592         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7593         src/xa51/main.c, src/z80/main.c:
7594         virtualization of glue() function: each port has it's own glue function,
7595         which is accessed by do_glue function pointer in PORT.general structure
7596
7597 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7598
7599         * DS800C400 fun, improved ROM interface and tinibios.
7600
7601 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7602
7603         * More support for DS80C400. Now includes beginning of interface to ROM.
7604
7605 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7606
7607         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7608
7609 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7610
7611         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7612
7613 2003-06-19  Borut Razem <borut.razem AT siol.net>
7614
7615         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7616
7617 2003-06-19  Borut Razem <borut.razem AT siol.net>
7618
7619         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7620         fixed Z80 port - crt0.o: cannot open.
7621
7622 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7623
7624         * support/Util/MySystem.c (merge_command): revert bad fix
7625
7626 2003-06-18  Borut Razem <borut.razem AT siol.net>
7627
7628         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7629
7630 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7631
7632         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7633         option --use-stdout sends errors to stdout instead of stderr.
7634
7635 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7636
7637         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7638
7639 2003-06-15  Borut Razem <borut.razem AT siol.net>
7640
7641         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7642         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7643         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7644         fixed width array of pointers replaced with sets;
7645         multiple include and lib paths ared transferred to preprocessor and linker
7646         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7647         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7648         fixed width array of pointers
7649         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7650         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7651         fixupPath(), getPathDifference()
7652         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7653         fixed width array of pointers
7654
7655 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7656
7657         * src/pic16/ralloc.c: fix warnings
7658         * src/pic16/pcode.c: fix warning
7659
7660 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7661
7662          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7663         know all the details, but essentially this set of changes enable
7664         the pic16 port to generate movff instructions and generate assembler
7665         directives,
7666         * src/SDCCmain.c:
7667         * src/pic16/gen.c:
7668         * src/pic16/glue.c:
7669         * src/pic16/pcode.c:
7670         * src/pic16/device.c:
7671         * src/pic16/main.c:
7672         * src/pic16/pcode.h:
7673         * src/pic16/pcoderegs.c:
7674         * src/pic16/ralloc.c:
7675         * src/pic16/ralloc.h:
7676
7677 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7678
7679         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7680         added option --vc, so sdcc errors and warnings are compatible with
7681         Microsoft Visual Studio.
7682
7683 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7684
7685         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7686           device/lib/libfloat.lib: added atof function.
7687
7688 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7689
7690         * doc/sdccman.lyx: updated to Lyx 1.3
7691         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7692         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7693         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7694
7695 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7696
7697         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7698
7699 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7700
7701         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7702           additions to the "related tools/documentation" section
7703
7704 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7705
7706         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7707
7708 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7709
7710         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7711         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7712
7713 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7714
7715         * doc/sdccman.lyx: fix double dash and other minor things
7716         * doc/Makefile: fix double dash
7717
7718 2003-05-28  Karl Bongers(patches from Martin Helmling)
7719         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7720           condition and ignore commands.
7721
7722 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7723
7724         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7725           is in parts still quite out of date, I did changes as far as I felt makes sense
7726           for a non-native english speaker.
7727           Please feel free to add to the manual or to correct my changes.
7728         * doc/Makefile: undid touching the date of intermediate tex files.
7729
7730 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7731
7732         * doc/sdccman.lyx: Manual has an index now
7733
7734 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7735
7736         Finalize muluint/mulsint and mululong/mulslong merging:
7737         * device/lib/_mulint.c
7738         * device/lib/_mullong.c
7739         * device/lib/gbz80/mul.s
7740         * device/lib/gbz80/stubs.s
7741         * device/lib/z80/mul.s
7742         * device/lib/z80/stubs.s
7743         * src/SDCCsymt.c (initCSupport)
7744
7745 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7746
7747         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7748         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7749           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7750           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7751           instead of /Zm500.
7752
7753 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7754
7755         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7756           the regression tests I'm not brave enough to enable 245.b, 245.c
7757         * doc/sdccman.lyx: added latex preamble for hyperref package.
7758           Using pdflatex this will give you a hyperlinked pdf file with
7759           bookmarks. (prepend '%' before /usepackage if this breaks something)
7760
7761 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7762
7763          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7764
7765 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7766
7767         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7768
7769 2003-05-21    <johan AT balder>
7770
7771         * src/SDCCglue.c (printIval): fixed bug #739934
7772
7773 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7774
7775         Applied patch from bug 737905 (renamed yylineo to mylineno):
7776         * src/altlex.c
7777         * src/SDCCast.c
7778         * src/SDCglobl.h
7779         * src/SDCC.lex
7780         * src/SDCCsymt.c
7781         * src/SDCCval.c
7782         * src/pic16/pcode.c: Cleaned warnings
7783         * src/pic16/pcodeflow.c: Cleaned warnings
7784         * src/pic16/pcoderegs.c: Cleaned warnings
7785
7786 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7787
7788         * src/pic16/pcode.c: Cleaned warnings
7789         * src/pic16/pcodepeep.c: Cleaned warnings
7790         * src/pic16/ralloc.c: Cleaned warnings
7791
7792 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7793
7794         * doc/sdccman.lyx: fixed bug 739745
7795         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7796
7797 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7798
7799         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7800         it can be defined with CFLAGS when running configure
7801         * src/SDCCmain.c: fixed compiling + linking with object files
7802
7803 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7804
7805         * configure.in: configure for pic16 port,
7806             added --disable-pic16-port
7807         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7808         * src/SDCCmain.c: linkOptions is changed to set *,
7809             added if/endif conditional macros to remove options help
7810             messages from optionsTable when a port is not configured, added
7811             support for the PIc16 port in the ports table, when executing
7812             the compiler with no port specified on command line, a default
7813             port is selected with the new macro DEFAULT_PORT which is
7814             defined in port.h, in setDefaultOptions() linkOptions is removed
7815             from initialization assignment, since now it is a set,
7816             parseCmdLine uses setParseWithComma for linkOptions, in
7817             linkEdit() linkOptions are accessed with new function indexSet()
7818             which returns the i'th item of a set variable. See SDCCset.c, in
7819             linkEdit() when calling buildCmdLine(), added linkOptions as
7820             last argument. Now users can pass arguments to gplink via the
7821             -Wl option, main() uses pic16glue() to glue up pic16 programs
7822         * src/SDCCpeeph.c: various changes to support pic16
7823         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7824             return the i'th item of the set
7825         * src/SDCCset.h: added function prototype for indexSet()
7826         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7827         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7828         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7829             added macro DEFAULT_PORT
7830         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7831         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7832             generated
7833         * src/pic16/glue.c: commented out some error producing lines
7834         * src/pic16/main.c: __config directives are commented out to stop
7835             gpasm complaining and test the linkage with gplink, _linkCmd and
7836             _asmCmd changed to be more gplink and gpasm friendly
7837         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7838             produced an error when parsed, peep rule 12 is added to utilize
7839             movff, but it is commented out since the pCode does not support
7840             yet a command with 2 address arguments
7841
7842 2003-05-18    <johan AT balder>
7843
7844         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7845         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7846 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7847
7848         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7849   Added feature to script commands from file.
7850
7851 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7854         * src/SDCCutil.c: include ctype.h for win32
7855
7856 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7857
7858         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7859
7860 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7861
7862         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7863   Fixed so you can set breakpoints prior to run, run does not stop
7864   on entry now.  Add tbreak.  Other enhancements and fixes for use
7865   with ddd.
7866
7867 2003-05-12  Borut Razem <borut.razem AT siol.net>
7868
7869         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7870
7871 2003-05-11  Borut Razem <borut.razem AT siol.net>
7872
7873         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7874         the path of bin directory, so that PATH is the only env. variable, which has to be set
7875         in case of standard installation.
7876         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7877         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7878         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7879
7880 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7881
7882         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7883         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7884         temp files are in the port dir; clean the gen/test directory when
7885         generating new test.c
7886         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7887         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7888         * support/regression/tests/zeropad.c: added
7889
7890 2003-05-09    <johan AT balder>
7891
7892         * src/SDCCglue.c: fixed bug #597940
7893
7894 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7895
7896         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7897   cache sfr, optimize next,step, fix off by one sourceline,
7898   support ddd list function.
7899         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7900
7901 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7902
7903         * support/regression/HTMLgen.py: added compare_s2f()
7904         * support/regression/Makefile: redo 1.27
7905         * support/regression/generate-cases.py: redo 1.5
7906
7907 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7908
7909         * support/regression/tests/float.c: workaround 33 bit hex constant
7910         * support/regression/tests/simplefloat.c: fix division for host
7911
7912 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7913
7914         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7915         that tame's the PIC's over-aggressive optimizer.
7916
7917 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7918
7919          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7920          support for MSVC.
7921
7922 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7923
7924         Initial support for DS80C400. "Hello world" runs on TINIm400
7925         (with polled I/O).
7926
7927 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7928
7929          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7930          * Some notes on ddd usage added in debugger/README
7931          Martin Helmling adding more features and fixes for ddd GUI debugger.
7932          Code added for nexti, stepi, up, down, and other adjustments.
7933
7934 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7935
7936         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7937         * src/pic/peeph.def Added two rules to optimize carry manipulation
7938         * src/pic/* removed debug printfs
7939
7940 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * debugger/mcs51/cmd.c: added header newalloc.h
7943
7944 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * as/Makefile: new EXEEXT
7947         * as/z80/Makefile: remove trailing slash of BUILDIR
7948         * as/z80/clean.mk: new EXEEXT
7949         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7950         * support/cpp2/Makefile.in: new EXEEXT
7951         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7952
7953 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7954
7955         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7956         EXEEXT was introduced to fix all related problems with targets
7957         "clean", "install" and "uninstall"; a couple of further flaws
7958         especially with "clean" have been fixed too
7959         * as/mcs51/Makefile.in
7960         * as/mcs51/clean.mk
7961         * as/z80/Makefile
7962         * Makefile
7963         * clean.mk
7964         * debugger/mcs51/Makefile.in
7965         * debugger/mcs51/clean.mk
7966         * link/z80/Makefile
7967         * link/z80/Makefile.in
7968         * link/z80/clean.mk
7969         * link/Makefile
7970         * packihx/Makefile.in
7971         * packihx/clean.mk
7972         * sim/ucsim/Makefile
7973         * sim/ucsim/clean.mk
7974         * sim/ucsim/avr.src/Makefile.in
7975         * sim/ucsim/avr.src/clean.mk
7976         * sim/ucsim/s51.src/Makefile.in
7977         * sim/ucsim/s51.src/clean.mk
7978         * sim/ucsim/xa.src/Makefile.in
7979         * sim/ucsim/xa.src/clean.mk
7980         * sim/ucsim/z80.src/Makefile.in
7981         * sim/ucsim/z80.src/clean.mk
7982         * sim/ucsim/main_in.mk
7983         * sim/ucsim/packages_in.mk
7984         * sim/ucsim/gui.src/Makefile.in
7985         * sim/ucsim/gui.src/serio.src/Makefile.in
7986         * sim/ucsim/gui.src/serio.src/clean.mk
7987         * src/Makefile.in
7988         * src/clean.mk
7989         * support/cpp2/Makefile.in
7990         * support/cpp2/clean.mk
7991         * support/makebin/Makefile
7992         * support/makebin/clean.mk
7993         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7994         * doc/sdccman.lyx: --program-suffix no longer needed
7995
7996 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7997
7998          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7999          Martin Helmling added support for ddd GUI debugger.
8000          Code added to display assembly, set variables, and other commands
8001          to interface to ddd.
8002
8003 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8004
8005         * as/Makefile: fix target clean
8006         * as/clean.mk: fix target clean
8007         * as/z80/clean.mk: fix target clean
8008
8009 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * Makefile.common.in: added  AT EXEEXT AT
8012         * configure.in: removed all mingw32 stuff
8013         * configure: rebuilt from configure.in
8014         * doc/sdccman.lyx: updated section "installation"
8015         * support/scripts/sdcc_mingw32: adapted to configure
8016         * support/scripts/sdcc_cygwin_mingw32: added
8017
8018 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8019
8020         * src/pic Added object file support for the PIC port
8021         * src/pic Applied patch from Craig Franklin (this started the object file support)
8022         * src/regression Updated the PIC regression tests for object files
8023
8024 2003-04-20  Borut Razem <borut.razem AT siol.net>
8025
8026         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8027           lklex.c: In function `getfid':
8028           lklex.c:203: warning: array subscript has type `char'
8029         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8030           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8031         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8032           stack handling macros
8033
8034 2003-04-19  Borut Razem <borut.razem AT siol.net>
8035
8036         * "handling space characters in file path" task:
8037         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8038         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8039         * support/Util/MySystem.h: make it self-sufficient
8040         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8041           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8042           handling space characters in file path
8043         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8044           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8045         * support/Util/MySystem.c: handling space characters in executable's path
8046
8047 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8048
8049         * as/z80/Makefile: fix permanent rebuild of z80
8050         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8051         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8052
8053 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8054
8055         * src/SDCCopt.c: add special case optimization to replace modulo by
8056           a power of two with a bitwise AND.
8057
8058 2003-04-18    <johan AT balder>
8059
8060         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8061
8062 2003-04-17    <johan AT balder>
8063
8064         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8065         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8066
8067 2003-04-13  Borut Razem <borut.razem AT siol.net>
8068
8069         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8070         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8071           fixed mingw problem in adl_NORMALIZE_PATH
8072
8073 2003-04-12  Borut Razem <borut.razem AT siol.net>
8074
8075         * fixed "#pragma SAVE/RESTORE can not be nested":
8076         * src/SDCC.lex: reworked pragma handling functions
8077         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8078         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8079
8080 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8081
8082         * src/SDCCutil.c (pathEquivalent): defined but not used
8083         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8084         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8085         * configure: rebuilt from configure.in
8086         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8087         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8088         * device/include/Makefile.in: replace sdcc_datadir
8089         * device/lib/Makefile.in: replace sdcc_datadir
8090         * Makefile.common.in: add LDFLAGS from configure
8091         * packihx/Makefile.in: use LDFLAGS
8092         * src/Makefile.in: use LDFLAGS
8093         * support/cpp2/Makefile.in: add LDFLAGS from configure
8094         * support/makebin/Makefile: use LDFLAGS
8095         * .version: bumped version number to 2.3.5
8096
8097 2003-04-12  Borut Razem <borut.razem AT siol.net>
8098
8099         * completed "different paths" task:
8100         * src/SDCCmacro.c: fixed bug in handling quotes
8101         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8102         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8103
8104 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8105
8106         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8107
8108 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8109
8110         * ds390/gen.c ds390/peeph.def: fix bug 706781
8111
8112 2003-04-11  Borut Razem <borut.razem AT siol.net>
8113
8114         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8115
8116 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8117
8118         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8119         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8120          set - this bit used to not be set...).
8121         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8122           bad code in PIC Port
8123         * src/regression/and2.c added to test bug 609268
8124         * src/regression/Makefile added and2.c to regression test
8125
8126
8127 2003-04-08    <johan AT CP255758-A>
8128
8129         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8130         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8131         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8132
8133 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8134
8135         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8136         fix bug #487815
8137         * support/cpp2/Makefile.in: fix bug #487815
8138         * configure: rebuilt from configure.in
8139         * Makefile.common.in: docdir changed, new path suffixes
8140         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8141         * sdcc_vc_in.h: reflect changes from sdccconf.h
8142         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8143         * src/SDCCutil.h: remove BINDIR hack
8144         * doc/sdccman.lyx: update new path hierarchy
8145
8146 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8147
8148         * src/SDCCpeeph.c: added okToRemoveSLOC test
8149
8150 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8151
8152         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8153
8154 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8155
8156         * src/SDCCpeeph.c: added labelIsReturnOnly test
8157         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8158
8159 2003-04-05    <johan AT balder>
8160
8161         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8162         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8163         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8164         * src/SDCCast.c: fixed a warning
8165         * src/SDCCast.h: fixed a warning
8166         * src/SDCCicode.c (operandFromAst): fixed a warning
8167
8168 2003-04-04    <johan AT balder>
8169
8170         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8171         * src/SDCCast.c (decorateType): fixed bug #715076
8172         * src/SDCC.y: fixed bug #702907
8173
8174 2003-04-03    <johan AT balder>
8175
8176         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8177         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8178         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8179         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8180         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8181
8182 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8183
8184         * _decdptr.c: fix return values
8185         * _gptrget.c: fix return values
8186         * _gptrgetc.c: fix return values
8187         * _gptrput.c: fix return values
8188         * _mulint.c: fix return values
8189         * as/z80/Makefile: fix 'make -j' problem
8190
8191 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8192
8193         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8194         * configure.in: big cleanup, updated to autoconf 2.5x
8195         * configure: rebuilt from configure.in
8196         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8197         * sdcc_vc_in.h: reflect changes from sdccconf.h
8198         * doc/Makefile: fixed a flaw in "make install"
8199
8200 2003-04-02    <johan AT balder>
8201
8202         * src/ds390/gen.c (genCmp): no comments
8203         * src/mcs51/gen.c (genCmp): no comments
8204         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8205         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8206
8207 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8208
8209         * support/regression/generate-cases.py: place generated file in given sub directory
8210         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8211         * support/regression/Makefile: improvements for 'make -j';
8212         side effect: it's simpler and faster now
8213
8214 2003-03-31  Borut Razem <borut.razem AT siol.net>
8215
8216         * src/z80/main.c: link-{port} and as-{port} defined without path
8217         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8218
8219 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8220
8221         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8222
8223 2003-03-30  Borut Razem <borut.razem AT siol.net>
8224
8225         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8226           changed type of list parameter to set
8227         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8228         * src/port.h: changed type of do_assemble() parameter to set
8229         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8230           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8231           definition of "cppoutfilename" macro with NULL value in preProcess()
8232         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8233         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8234         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8235           replaced with set *binPathSet
8236         * shash_add() deallocates the item, if allready exsists, before adding the new one
8237         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8238
8239 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8240
8241         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8242           a nested for loop bug in the PIC port
8243         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8244           for loops
8245
8246 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8247
8248         * support/Util/dbuf.h: remove C++ stuff to make it portable
8249
8250 2003-03-28  Borut Razem <borut.razem AT siol.net>
8251
8252         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8253           literal strings in stringLiteral()
8254         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8255         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8256           to the project
8257
8258 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8259
8260         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8261
8262 2003-03-26    <johan AT balder>
8263
8264         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8265         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8266         * src/SDCCast.c (decorateType): fixed " -v < 3"
8267
8268 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8269
8270         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8271         Added Lenny Story's debug infrastructure changes:
8272         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8273         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8274         * src/cdbFile.c: added
8275         * src/SDCCdebug.c: added
8276         * src/SDCCdebug.h: added
8277         * src/SDCCast.c (createFunction)
8278         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8279         * src/SDCCmain.c (parseCmdLine, main)
8280         * src/SDCCmem.c (redoStackOffsets)
8281         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8282         * src/SDCCsymt.h
8283         * src/common.h
8284         * src/avr/gen.c (genAVRCode)
8285         * src/ds390/gen.c (gen390Code)
8286         * src/mcs51/gen.c (gen51Code)
8287         * src/pic/gen.c (genpic14Code)
8288         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8289         * src/xa51/gen.c (genXA51Code)
8290         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8291
8292 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8293
8294         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8295         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8296
8297 2003-03-22    <johan AT balder>
8298
8299         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8300
8301 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8302
8303         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8304         * doc/cdbfileformat.lyx: added, written by Lenny Story
8305         * doc/Makefile: added cdbfileformat.lyx
8306         * doc/clean.mk: added cdbfileformat.lyx
8307
8308 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         * src/mcs51/peeph.def: fix bug #705773
8311
8312 2003-03-20    <johan AT balder>
8313
8314         An sfr/sbit can have an "at #" AND an initializer
8315         * src/SDCCsymt.c (checkSClass):
8316         * src/SDCCmem.c (allocGlobal):
8317         * src/SDCCmem.c (allocLocal):
8318         * src/SDCCast.c (createBlock):
8319
8320 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8323
8324 2003-03-16    <johan AT balder>
8325
8326         Undid the hackup of const and volatile, the problem is much bigger
8327         * src/SDCC.y:1.65
8328         * src/SDCCast.c:1.171
8329         * src/SDCCglue.c:1.138
8330         * src/SDCCicode.c:1.146
8331         * src/SDCCsymt.c:1.150
8332         * src/SDCCval.c:1.65
8333
8334 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8335
8336         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8337         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8338
8339 2003-03-13    <johan AT balder>
8340
8341         Hackup const and volatile modifiers in type chains a bit:
8342         * src/SDCC.y:1.63
8343         * src/SDCCast.c:1.169
8344         * src/SDCCglue.c:1.136
8345         * src/SDCCicode.c:1.143
8346         * src/SDCCsymt.c1.146
8347         * src/SDCCsymt.h1.59
8348         * src/SDCCval.c:1.63
8349
8350 2003-03-12    <johan AT balder>
8351
8352         * src/SDCCBBlock.h: more LRH debugging junk
8353         * src/SDCCcflow.h: more LRH debugging junk
8354         * src/SDCCloop.c: more LRH debugging junk
8355         * src/SDCC.y (struct_declaration): fixed bug #697590
8356         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8357         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8358         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8359
8360 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8361         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8362         test function names must now match exactly).
8363         * src/SDCCcse.c: added special case in findCheaperOp to allow
8364         extending a short integer. Makes less awful code for bug 700121 test case.
8365
8366 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8367
8368         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8369         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8370
8371 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8372
8373         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8374         actually called (operandsNotEqual() was called for all
8375         operandsNotEqualX tests).
8376
8377 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8378
8379         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8380         with shorter literals. Fixes bug 700121.
8381
8382 2003-03-11    <johan AT balder>
8383
8384         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8385
8386 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8389         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8390
8391 2003-03-10  Borut Razem <borut.razem AT siol.net>
8392
8393         * src/SDCCmain.c: pipe preprocessor's output
8394         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8395         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8396         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8397         which closes all pipes in pipeSet set
8398         * src/SDCCset.c: free deleted item in function deleteSetItem()
8399         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8400         moved from z80 to src subproject
8401         * .version: increased version number to 2.3.4
8402
8403 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8406         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8407         * support/regression/ports/xa51/spec.mk: fix typo
8408
8409 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8410
8411         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8412
8413 2003-03-09  Borut Razem <borut.razem AT siol.net>
8414
8415         * src/SDCCmain.c: pipe preprocessor's output
8416         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8417         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8418         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8419         which closes all pipes in pipeSet set
8420         * src/SDCCset.c: free deleted item in function deleteSetItem()
8421         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8422         moved from z80 to src subproject
8423
8424 2003-03-09  Borut Razem <borut.razem AT siol.net>
8425
8426         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8427         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8428         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8429         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8430         * src/SDCCglobl.h: unification of WIN32 native definitions
8431
8432 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8433
8434         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8435
8436 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8437
8438         * src/configure.in:   check for endianess (even while cross-compiling)
8439         * src/configure:      check for endianess (even while cross-compiling)
8440         * src/configure_in.h: check for endianess (even while cross-compiling)
8441         * src/avr/gen.c:        remove old endianess stuff
8442         * src/mcs51/gen.c:      remove old endianess stuff
8443         * src/ds390/gen.c:      remove old endianess stuff
8444         * src/pic/gen.c:        remove old endianess stuff
8445         * src/pic/genarith.c:   remove old endianess stuff
8446         * src/pic/glue.c:       fix endianess check
8447         * src/pic16/gen.c:      remove old endianess stuff
8448         * src/pic16/genarith.c: remove old endianess stuff
8449         * src/pic16/glue.c:     fix endianess check
8450         * src/xa51/gen.c:       remove old endianess stuff
8451         * src/z80/gen.c:        fix endianess check
8452         * src/SDCCglue.c:       fix endianess check
8453         * src/ds390/peeph.def: fix bug 700036
8454
8455 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8456
8457         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8458         * src/configure: find appropriate data-types on host for SDCC's int and long
8459         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8460         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8461         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8462
8463 2003-03-07    <johan AT balder>
8464
8465         Just a big NOOP:
8466                 some minor cleanups before the big shot
8467                 OP_DEFS and OP_USES now use Kevin's protection
8468                 new option --nolabelopt
8469
8470         * src/SDCCBBlock.c:
8471         * src/SDCCast.c,:
8472         * src/SDCCcflow.c:
8473         * src/SDCCcse.c:
8474         * src/SDCCicode.c:
8475         * src/SDCCicode.h:
8476         * src/SDCClabel.c:
8477         * src/SDCCloop.c:
8478         * src/SDCCmain.c:
8479         * src/ds390/ralloc.c:
8480         * src/mcs51/ralloc.c:
8481         * src/pic/ralloc.c:
8482         * src/xa51/ralloc.c:
8483         * src/z80/ralloc.c:
8484
8485 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8486
8487         * src/pic/pcode.c (get_op): fix 64 bit warnings
8488         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8489         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8490         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8491         * support/regression/tests/malloc.c: fix 64 bit warnings
8492
8493 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8494
8495         * src/mcs51/gen.c (genMinus): fixed bug 696436
8496
8497 2003-03-02  Borut Razem <borut.razem AT siol.net>
8498
8499         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8500
8501 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8502
8503         * configure.in: test for mkstemp
8504         * sdccconf_in.h: add HAVE_MKSTEMP
8505
8506 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * device/include/ctype.h: removed warning while using --stack-auto
8509         * device/include/malloc.h: removed warning while using --stack-auto
8510         * device/include/string.h: removed warning while using --stack-auto
8511
8512 2003-02-23  Borut Razem <borut.razem AT siol.net>
8513
8514         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8515         because NDEBUG is defined (see man assert)
8516         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8517
8518 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8519
8520         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8521         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8522
8523 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8524
8525         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8526         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8527
8528 2003-02-18    <johan AT balder>
8529
8530         * as/mcs51/asmain.c (asmbl): module can start with a digit
8531         * as/z80/asmain.c (asmbl): module can start with a digit
8532
8533 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8536         * src/asm.c: fix pipe() for Mingw32
8537
8538 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8539
8540         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8541         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8542         make -V work again; --c1mode reads now from stdin
8543         * doc/sdccman.lyx: added --c1mode
8544         * support/Util/SDCCerr.c: new messages for c1 mode
8545         * support/Util/SDCCerr.h: new messages for c1 mode
8546         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8547
8548 2003-02-15    <johan AT balder>
8549
8550         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8551
8552 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8553
8554         * doc/sdccman.lyx: Environment variables, -o and other minor things
8555
8556 2003-02-14    <johan AT balder>
8557
8558         * src/xa51/main.c: before anyone really tries to use it :)
8559
8560         * Install doc's in share/sdcc/doc
8561         * removed some obsolete files
8562         * Do a proper make distclean and uninstall
8563         M Makefile.common.in
8564         R sdccbuild.sh
8565         M as/Makefile
8566         M device/include/Makefile.in
8567         M device/lib/Makefile.in
8568         M doc/sdccman.lyx
8569         M link/Makefile
8570         M sim/ucsim/doc/Makefile.in
8571         M src/clean.mk
8572         R src/avr/peeph.rul
8573         R src/xa51/peeph.rul
8574         M support/cpp2/Makefile.in
8575         M support/makebin/Makefile
8576
8577
8578 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8579
8580         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8581
8582 2003-02-10  Borut Razem <borut.razem AT siol.net>
8583
8584         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8585         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8586         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8587         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8588         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8589         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8590         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8591         src/z80/Makefile.bcc: Borland Makefile cleanup
8592         * as/z80/Makefile.bcc: Added Borland Makefile
8593         * support/cpp2/borland.h: Removed
8594
8595 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8596
8597         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8598         * src/SDCC.lex: new pragma NOIV
8599         * src/SDCCglobl.h: new pragma NOIV
8600         * src/SDCCmem.c: new pragma NOIV
8601
8602 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8603
8604         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8605
8606 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8607
8608         * src/SDCCmain.c: signal handling is switched off by --debug
8609         * doc/Makefile: small fix for install; use clean.mk again
8610         * doc/clean.mk: clean *.pdf and *.html too
8611
8612 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8613
8614         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8615         * device/lib/printfl.c: fix a ds390 bug by making it portable
8616         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8617         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8618         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8619         * debugger/mcs51/cmd.c: converted multi-line string literals
8620         * sim/ucsim/globals.cc: converted multi-line string literals
8621         * src/SDCCmain.c: introduced signal handler to remove temp files
8622         * doc/Makefile: small tweaks, implement clean
8623         * doc: removed generated files
8624
8625 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8626
8627         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8628         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8629         Address Record is not correctly generated for DS390."
8630
8631 2003-02-02  Borut Razem <borut.razem AT siol.net>
8632
8633         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8634         * as/mcs51/asm.h: fixed compilation with Borland C
8635         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8636         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8637         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8638         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8639         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8640         src/z80/Makefile.bcc: delete $(LIB) only if exist
8641         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8642
8643 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8644
8645         * device/include/malloc.h: introduced NULL
8646         * device/include/string.h: introduced NULL
8647         * device/include/stdlib.h: introduced NULL
8648         * device/lib/_memcpy.c: removed NULL
8649         * device/lib/_strcat.c: removed NULL
8650         * device/lib/_strchr.c: removed NULL
8651         * device/lib/_strcmp.c: removed NULL
8652         * device/lib/_strcpy.c: removed NULL
8653         * device/lib/_strcspn.c: removed NULL
8654         * device/lib/_strlen.c: removed NULL
8655         * device/lib/_strncat.c: removed NULL
8656         * device/lib/_strncmp.c: removed NULL
8657         * device/lib/_strncpy.c: removed NULL
8658         * device/lib/_strpbrk.c: removed NULL
8659         * device/lib/_strrchr.c: removed NULL
8660         * device/lib/_strspn.c: removed NULL
8661         * device/lib/_strstr.c: removed NULL
8662         * device/lib/_strtok.c: removed NULL
8663         * device/lib/malloc.c: removed NULL, include own header
8664
8665 2003-02-02    <johan AT balder>
8666
8667         * 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
8668         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8669         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8670         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8671         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8672         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8673
8674 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8675
8676         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8677         area 'DATA'"
8678
8679 2003-02-01    <johan AT balder>
8680
8681         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8682
8683 2003-01-31    <johan AT CP255758-A>
8684
8685         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8686
8687 2003-01-30    <johan AT balder>
8688
8689         * src/SDCCBBlock.c: automatic bug detection
8690         * src/SDCCicode.c: automatic bug detection
8691
8692 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8693
8694         * src/SDCCglobl.h:   now --xram-size 0 works
8695         * src/SDCCmain.c:    now --xram-size 0 works
8696
8697 2003-01-29    <johan AT balder>
8698
8699         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8700
8701 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8702
8703         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8704         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8705         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8706         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8707         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8708         * src/SDCCmain.c:    Added options --xram-size and --code-size
8709
8710 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8711
8712         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8713         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8714
8715 2003-01-27    <johan AT balder>
8716
8717         * src/SDCC.y: fixed bug #613764
8718
8719 2003-01-26    <johan AT balder>
8720
8721         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8722         * src/SDCCsymt.h: fixed bug #673374
8723         * src/SDCCglue.c: fixed bug #661910
8724         * src/SDCCast.c: fixed bug #458099 and 673374
8725
8726 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8729         * as/mcs51/strcmpi.h: added
8730         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8731         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8732         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8733         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8734         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8735         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8736         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8737         * as/mcs51/Makefile.aslink: new module strcmpi
8738         * as/mcs51/Makefile.asx8051: new module strcmpi
8739         * as/mcs51/Makefil.bcc: new module strcmpi
8740         * as/mcs51/Makefile.in: new module strcmpi
8741         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8742
8743 2003-01-26    <johan AT balder>
8744
8745         * src/SDCCglue.c: reverted back to 1.124
8746         * src/SDCCast.c: reverted back to 1.156
8747         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8748
8749 2003-01-25    <johan AT balder>
8750
8751         * src/SDCCglue.c: A better fix for bug #661910
8752         * src/SDCCast.c: A better fix for bug #661910
8753         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8754
8755 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8756
8757         * src/Makefile.in: remove spawn.o
8758         * src/SDCCmain.c: remove spawn.h
8759         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8760         * src/spawn.c: removed
8761         * src/spawn.h: removed
8762         * support/regression/ports/ds390/spec.mk: link with -r
8763
8764 2003-01-24    <johan AT CP255758-A>
8765
8766         * src/ds390/gen.c (aopOp): fixed bug #667458
8767         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8768         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8769         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8770
8771 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8772
8773         * src/mcs51/peeph.def: better assembler identation by Frieder
8774         * src/mcs51/gen.c: better assembler identation by Frieder
8775
8776 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8777
8778         * as/z80/string.h: removed for gcc 3.2
8779         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8780         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8781
8782 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8783
8784         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8785         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8786         * support/regression/Makefile: separate temp files for ports
8787         * support/regression/generate-cases.py: separate temp files for ports
8788         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8789         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8790
8791 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8792
8793         * moved tinitalk to device/examples/ds390
8794
8795 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8796
8797         * as/mcs51/lkmem.c: rflag is for DS390
8798         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8799         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8800                          (linkEdit): move mem- and map-files the same way as ihx-files
8801         * src/z80/main.c (_setDefaultOptions): removed --generic
8802         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8803         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8804         * src/pic/glue.c (picglue): --c1mode works again
8805         * src/pic16/glue.c (pic16glue): --c1mode works again
8806         * src/asm.c (printCLine): fix #660034
8807
8808 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8809
8810         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8811         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8812         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8813         * as/mcs51/lkmem (summary): better fix for sp problem
8814         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8815         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8816         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8817                                               remove --stack-after-data
8818
8819 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8820
8821         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8822         * src/SDCCutil.c (join): ugly bug: missing '\0'
8823         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8824
8825 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8826
8827         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8828         * src/port.h: typo
8829         * src/pic/main.c (_asmCmd): gpasm supports -o
8830         * src/z80/main.c: more general macros
8831         * device/lib/Makefile.in: remove intermediate files
8832
8833 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8834
8835         * .version: Bumped version number to 2.3.3
8836         * src/SDCCBBlock.c: new option -o
8837         * src/SDCCglobl.h: new option -o
8838         * src/SDCCglue.c: new option -o
8839         * src/SDCCmain.c: new option -o
8840         * src/asm.c: new option -o
8841         * src/ds390/main.c: new option -o
8842         * src/pic/glue.c: new option -o
8843         * src/pic/pcode.c: new option -o
8844         * src/pic/ralloc.c: new option -o
8845         * src/pic16/glue.c: new option -o
8846         * src/pic16/pcode.c: new option -o
8847         * src/pic16/ralloc.c: new option -o
8848         * src/z80/main.c: new option -o
8849         * device/lib/Makefile.in: use -o
8850         * support/regression/ports/ds390/spec.mk: use -o
8851         * support/regression/ports/gbz80/spec.mk: use -o
8852         * support/regression/ports/mcs51/spec.mk: use -o
8853         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8854         * support/regression/ports/z80/spec.mk: use -o
8855         * support/regression/ports/ucz80/spec.mk: use -o
8856         * support/regression/ports/xa51/spec.mk: use -o
8857         * support/regression/fwk/lib/timeout.c: fix usage string
8858
8859 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8860         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8861
8862 2003-01-07    <johan AT balder>
8863
8864         * src/SDCCast.c (decorateType): fixed bug #600035
8865
8866 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8867         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8868         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8869         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8870         * src/pic/pcode.c: outcommented unused variable to remove warnings
8871         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8872
8873 2003-01-06    <karl AT turbobit.com>
8874         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8875    regression tests.
8876
8877 2003-01-06    <johan AT balder>
8878
8879         * src/SDCCicode.c: fixed array add
8880
8881 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8882         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8883         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8884
8885 2003-01-04    <johan AT balder>
8886
8887         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8888
8889 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8890         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8891
8892 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8893         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8894         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8895
8896 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8897         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8898
8899 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8900         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8901
8902 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8903         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8904
8905 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8906
8907     * in \sdcc\as\mcs51\ changed these files in order to create an
8908     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8909     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8910     following files to include the previous two files: aslink.dsp,
8911     Makefile.aslink, Makefile.bcc, and Makefile.in.
8912
8913     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8914     .adb instead of .cdb
8915
8916 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8917
8918         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8919         value from option --iram-size.
8920
8921 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8922
8923         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8924         dram[] array.
8925
8926 2002-09-18    <wiml AT hhhh.org>
8927
8928         * SDCClrange.h: exposed setFromRange() and setToRange()
8929         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8930           packRegsForAccUse() (bug 542397)
8931         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8932           multiple times and emitting the fetch operations more than once
8933           added aopGetUsesAcc() function to allow binary operators to
8934           fetch their operands in the correct order; made genMinus() emit
8935           compact code for X = LITERAL - Y
8936
8937 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8938         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8939         sprintf() in line 1267.
8940
8941 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8942         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8943         like ports.
8944
8945 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8946         Changes to aslink (All the changes are marked with 'JCF'):
8947
8948         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8949         summary().
8950
8951         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8952         area BSEG.  Also moves, if possible, the DATA area down into the internal
8953         ram so more space is available.
8954
8955         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8956         sflag.
8957
8958         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8959         not bytes.  Function summary() which creates a memory usage summary
8960         file with extension .mem.  Reports of overlaping stack and small stack
8961         size.  If the space for the stack is less than 16 bytes aslink trows a
8962         warning.
8963
8964         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8965         the 8051.  Option 'y' for memory summary output file.
8966
8967         Changes to sdcc (All the changes are marked with 'JCF'):
8968
8969         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8970
8971         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8972         overlaying area for it (uses RegBankUsed[4]).
8973
8974         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8975         bank zero as used by default.  By default aslink locates the stack
8976         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8977         the creation of the .mem file.  Delegates the allocation of data area
8978         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8979         the begining of the stack area to aslink.
8980
8981         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8982         glue() in SDCCglue.c creates an area for it.
8983
8984 2002-09-03  Borut Razem <borut.razem AT siol.net>
8985         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8986         sdcc/src/pic/glue.c:
8987         introduced atexit() handler for teporay files removal in case of
8988         errors, assertions, ...
8989
8990 2002-08-29  Borut Razem <borut.razem AT siol.net>
8991         * sdcc/support/cpp2/auto-host_vc_in.h:
8992         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8993         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8994         Maybe there is a similar problem with BORLANDC? It should be checked!
8995
8996         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8997         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8998         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8999         was not executed, and the compiler (cl) launched a warning:
9000         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9001
9002 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9003         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9004
9005 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9006         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9007
9008         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9009           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9010           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9011           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9012           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9013           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9014           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9015         - added Release configuration in VS projects
9016         - review of compiler an linker options
9017         - VC .exe files are generated in bin_vc directory, not to interfere
9018           with binaries generated from other projects (cygwin, mingw, bcc ...)
9019
9020         * sdcc/src/yacc.dsp: added
9021
9022         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9023         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9024         and insert the version number definitions from .version
9025
9026         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9027
9028         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9029         added - genarate auto-host.h using auto-host_vc_in.h as template
9030
9031         * sdcc/sdcc_vc.h,
9032         removed from CVS, generated automatically
9033
9034 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9035         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9036
9037 2002-08-11  Borut Razem <borut.razem AT siol.net>
9038         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9039
9040 2002-08-10  Borut Razem <borut.razem AT siol.net>
9041         * src/SDCCmain.c (main):
9042         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9043         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9044         The consequence was that some temporary files were not removed.
9045
9046         * src/SDCCglue.c:
9047         unification of code in functions tempfilename() and tempfile():
9048         function tempnam() is defined in Visual Studio 6.0 and .NET
9049
9050         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9051
9052         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9053           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9054         - removed compiler command line option /WX: Treats all warnings as errors
9055         - update a list of source files, included into the project
9056
9057         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9058           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9059         changed project type to Generic Project so that can be correcly converted to VS.NET project
9060
9061         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9062
9063         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9064
9065         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9066
9067         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9068         added return 0 statements after assert() to make compiler happy
9069
9070         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9071         added newline in the def file to keep MSC compiler satisfied
9072
9073         * sdcc/src/z80/gen.c:
9074         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9075           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9076         - solved MSC error in function aopDump()
9077
9078         * sdcc_vc.h: define PREFIX as "\\sdcc"
9079
9080 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9081         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9082
9083 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9084         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9085         - Rewrote the register banking algorithm.
9086         - Added pCode live-range analysis to registers (for now, only non-used and
9087         singly-used registers optimized away)
9088
9089         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9090
9091         * 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.
9092
9093 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9094         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9095
9096 2002-04-22  Michael Hope  <michaelh AT vroom>
9097
9098         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9099
9100         * configure.in (DD_COPT): Added include support required for gbdk.
9101
9102         * .version: Bumped version number just to increase it.
9103
9104         * src/SDCCmain.c: Added -nostdinc to the default options.
9105
9106 2002-04-15  Michael Hope  <michaelh AT vroom>
9107
9108         * device/lib/z80/printf.c (sprintf): Added.
9109
9110         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9111
9112         * src/z80/peeph.def: Added transpose redundent load rule.
9113
9114         * src/z80/main.c: Added force callee saves for jaune.
9115
9116         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9117
9118         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9119
9120 2002-03-28  Johan Knol  <johan AT balder>
9121
9122         * src/SDCCval.c: fixed bug #532436
9123
9124 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9125         * /src/port.h:
9126         Added "char *Processor" field to the port structure.
9127
9128         * /src/SDCCmain.c:
9129         Added -p option. Allows port dependent processor to be specified.
9130
9131         * all ports:
9132         Initialized the new field char *Processor field to NULL in all ports
9133
9134         * /src/pic/*:
9135         Compiler generated registers for interrupt context saving
9136         were not getting allocated.
9137
9138 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9139
9140         * /src/SDCCast.c:
9141         Fixed left shift. Will promote the left side of a left shift
9142         if a) left shifting more than size of operand or b) when assigned
9143         to something size > size of left side
9144
9145 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9146         * src/pic/*
9147         tons of changes. Register allocation has been
9148         rewritten. Added customization for the various PICs. Flow
9149         analysis is restructured. ...
9150
9151         * src/pic/device.h:
9152         Added
9153
9154         * src/pic/device.c:
9155         Added. device.c is a PIC port hack to accomodate variations
9156         in PIC devices.
9157
9158 2002-03-13  Michael Hope  <michaelh AT vroom>
9159
9160         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9161
9162 2002-03-04  johanknol  <johanknol AT manik>
9163
9164         * /src/SDCCval.c: fixed
9165
9166         const unsigned char arr[][2] = { { 0, 1 } };
9167         t18.c:1: error: Initializer element is not constant
9168
9169 2002-03-04  bela  <bela AT manik>
9170
9171         * /device/include/mcs51reg.h:
9172         ds89c420 register definition update
9173
9174 2002-03-03    <johan AT FRIJA>
9175
9176         * support/Util/SDCCerr.c: did something, but don't no why anymore
9177
9178         * support/regression/tests/bug-524691.c: made it a little less shy
9179
9180         * src/SDCCast.c (decorateType): fixed bug #524697
9181
9182         * src/SDCCast.c: made some lineno improvements
9183
9184         * src/SDCCval.c (getNelements): changed warning to error
9185
9186         * src/SDCCglue.c (printIvalArray): changed warning to error
9187
9188         * src/SDCCicode.c: fixed a warning for mingw
9189
9190         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9191
9192         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9193
9194 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9195
9196         * src/ds390/peeph.def:
9197         Added some more peephole rules
9198
9199         * src/ds390/gen.c: Various fixes & enhancements
9200
9201         * src/SDCClrange.c, src/SDCClrange.h:
9202         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9203
9204         * src/ds390/ralloc.c:
9205         various fixes & enhancements (ds390) specific
9206
9207         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9208         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9209         from rallocs.
9210
9211         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9212
9213 2002-03-02    <johan AT FRIJA>
9214
9215         * src/SDCCast.c (decorateType): fixed bug #524708
9216
9217         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9218
9219         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9220
9221 2002-03-01  Michael Hope  <michaelh AT vroom>
9222
9223         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9224
9225         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9226
9227 2002-03-01    <johan AT FRIJA>
9228
9229         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9230
9231         * src/SDCCast.c (decorateType): fixed bug #524209
9232
9233         * src/SDCCval.c (valNot): fixed bug #524195
9234
9235 2002-02-26    <johan AT balder>
9236
9237         * src/xa51/gen.c: fixed a warning
9238
9239         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9240
9241         * src/SDCCast.c (decorateType): fixed bug #522534
9242
9243 2002-02-23    <johan AT balder>
9244
9245         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9246
9247 2002-02-22    <johan AT balder>
9248
9249         * src/SDCCast.c: fixed bug #514865
9250
9251         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9252
9253 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9254
9255         * sdcc/src/SDCCloop.c:
9256         Previous fix was not good. basic blocks that have "break" or "return" are
9257         not really partof a loop , but live ranges used in these blocks should
9258         be live thru the entire loop, so set partOfLoop but don't add them to
9259         loop region
9260
9261 2002-02-21    <johan AT FRIJA>
9262
9263         * src/SDCCcse.c: fixed bug #514308
9264
9265 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9266
9267         * src/SDCCloop.c:
9268         Fixed BUG #519583. If a conditional block ended in a return/break
9269         statement inside a loop, it was not being considered part of the loop.
9270
9271         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9272
9273 2002-02-10  Karl Bongers <karl AT turbobit.com>
9274
9275         * debugger/*:
9276         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9277         with lots of comments and notes.
9278
9279         * device/examples/test2.c:
9280         Fix bug, "red" variable not being initialized(compiler complained).
9281
9282         * device/examples/Makefile, examples/test3.c:
9283         Add Makefile in device/examples folder, compiles test3.c
9284         for use as a multiple module SDCDB test case.
9285
9286         * sim/ucsim/cmd.src/cmdset.cc:
9287         Took out debug printfs in ucsim "next" command.
9288
9289         * sim/ucsim/xa.src:
9290         Karl and Johan start ucsim XA support.  Most dissassembly working,
9291         about 75% emulation done(plenty of work remaining).
9292
9293         * sim/ucsim/z80.src:
9294         Add Z80 support to ucsim, add test-ucz80 regression test,
9295         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9296         Notice z80 compiler fails on examples/test3.c/crc code.
9297
9298 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9299
9300         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9301         Added support for --parms-in-bank1
9302
9303         * src/ds390/peeph.def:
9304         added a few more peephole optimzations
9305
9306         * src/ds390/main.c:
9307         1) added __builtin_inp & __builtin_outp used to read in data of given length
9308            from a memory mapped port
9309         2) added __builtin_memcmp
9310         3) added __builtin_swapw swap bytes of a short
9311
9312         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9313         1) handle multiple send & receives from register bank1
9314         2) ralloc can now allocate DPTR1 to some liveRanges
9315
9316         * src/SDCCsymt.c, src/SDCCsymt.h:
9317         changes to handle multiple sends & receives
9318
9319         * src/SDCCptropt.h:
9320         added some pointer arithmetic optimization
9321
9322         * src/SDCCptropt.c:
9323         added some pointer arithmetic optimizations but not stable yet so not
9324         called from anywhere (will get this working shortly)
9325
9326         * src/SDCCopt.c: fixed for multiple sends & receives
9327
9328         * src/SDCCmain.c:
9329         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9330         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9331            set preprocessor defines (depending on options)
9332
9333         * src/SDCCicode.c, src/SDCCicode.h:
9334         changes made to handle multiple sends & receives
9335
9336         * src/SDCCglobl.h:
9337         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9338
9339         * src/SDCCcse.c, src/SDCCcse.h:
9340         added function findbackward def (to be used in upcoming optimization)
9341
9342         * src/SDCCcflow.c, src/SDCCcflow.h:
9343         added function returnAtEnd - to determine if a basic block terminates with
9344         a RETURN iCode
9345
9346         * src/SDCCast.c, src/SDCCast.h:
9347         added option parms-in-bank1
9348
9349         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9350         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9351         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9352         adjusted for --parms-in-bank1 option
9353
9354         * device/include/string.h:
9355         donot redefine "reentrant" keyword
9356
9357         * device/include/ds80c390.h: Added some more SFRs
9358
9359 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9360
9361         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9362
9363 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9364
9365         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9366
9367 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9368
9369         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9370
9371 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9372
9373         * Added --xram-movc option
9374
9375 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9376
9377         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9378
9379 2002-01-11  Johan Knol
9380
9381         * Added math lib of Jesus Calvino-Fraga
9382
9383 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9384
9385         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9386         * support/regression/Makefile: new target test-mcs51-stack-auto
9387         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9388
9389 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9390
9391         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9392
9393 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9394
9395         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9396
9397 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9398
9399         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9400
9401         * src/SDCCglue.h: add definition for printIvalChar()
9402
9403 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9404
9405         * src/SDCCast.c: fix #498138 by Johan
9406
9407         * src/SDCCglue.c: fix #498138 by Johan
9408
9409 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9410
9411         * support/regression/Makefile: fix clean
9412
9413         * support/regression/ports/ds390/support.c: fix transmission of last character
9414
9415 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9416
9417         * /sdcc/src/ds390/gen.c:
9418         a) improved computing address of stack variable
9419         b) took out some #if 0 code
9420         c) improved parmBytes adjustment
9421         d) improved genPlusIncr & genMinusIncr
9422         e) genCmp could generate bad code (when left assigned to DPTR)
9423         f) Fixed bug in hasInc
9424
9425         * /sdcc/src/ds390/ralloc.c:
9426         a) packRegsForSupport could mess up live information (Fixed)
9427         b) packRegsDPTRuse could be incorrect for left & right shift
9428
9429         * /sdcc/src/mcs51/ralloc.c:
9430         packRegsForSupport could mess up the live information (Fixed)
9431
9432         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9433
9434         * /sdcc/src/SDCCast.c:
9435         can reverse a loop even if function call is present as long
9436         as the loop control variable is local & is not passed as parameter
9437
9438 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9439
9440         * /sdcc/ChangeLog: *** empty log message ***
9441
9442         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9443         More builtin function additions for TININative
9444
9445         * /sdcc/src/ds390/ralloc.c:
9446         Had broken the regression testsuite
9447
9448         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9449
9450         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9451         Added funcattr hasStackParms will be set for reentrant functions when there
9452         are paramteres on the stack, this helps in minimizing frame pointer generation
9453         typeFromStr can handle function pointers now
9454
9455         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9456         *** empty log message ***
9457
9458 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9459
9460         * /src/ds390/gen.c, /src/ds390/main.c:
9461         More builtin function additions for TININative
9462
9463         * /src/ds390/ralloc.c:
9464         Had broken the regression testsuite
9465
9466         * /src/SDCCast.c: Fixed a bug in dumptree
9467
9468         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9469         Added funcattr hasStackParms will be set for reentrant functions when there
9470         are paramteres on the stack, this helps in minimizing frame pointer generation
9471         typeFromStr can handle function pointers now
9472
9473         * /doc/builtins.txt, /doc/TININative.txt:
9474         *** empty log message ***
9475
9476
9477 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9478
9479         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9480         ALPHA version for -mTININative
9481
9482         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9483         updated to reflect changes in the port structure
9484
9485         * /src/port.h:
9486         added function do_assemble (similar to do_link) if non-null this function
9487         will be called to do assembly (-mTININative) requires a multi command
9488         assembly
9489         added function genAssemblerEnd will be called to generate assembler Epilogue
9490
9491         * /src/SDCCsymt.c:
9492         added _JavaNative to debug info printing
9493
9494         * /src/SDCCmain.c: added option --tini-libid
9495         added port->do_assemble function (-mTININative) has a multi command assemble
9496
9497         * /src/SDCCglue.c: Disabled "constExpr" check
9498         added port->genAssemblerEnd function
9499
9500         * /src/SDCCglobl.h: Added option --tini-libid value
9501
9502         * /src/SDCCast.h:
9503         tookout optimizeCompare from the header (has no external references)
9504
9505         * /src/SDCCast.c: made one more function "static"
9506
9507 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9508
9509         * src/z80/mappings.i: Added z80asm support.
9510
9511         * src/z80/main.c: Added z80asm support on --asm=z80asm
9512
9513         * src/z80/gen.c: Fixed asm portability issues.
9514
9515         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9516
9517         * src/SDCCglue.c (printExterns): Added global/extern split.
9518
9519 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9520
9521         * support/regression/Makefile: added test for mcs51 model large
9522
9523         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9524
9525         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9526
9527 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9528
9529         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9530
9531 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9532
9533         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9534
9535         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9536
9537 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9538
9539         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9540
9541         * support/regression/tests/simplefloat.c: Port to mcs51.
9542
9543 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9544         * support/regression/tests/bug-485362.c: Added.
9545
9546         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9547
9548         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9549
9550         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9551
9552         * src/z80/gen.c (aopDump): Added a dump function.
9553
9554 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9555         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9556
9557         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9558
9559         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9560
9561         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9562
9563         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9564
9565         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9566
9567         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9568
9569         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9570
9571         * support/regression/ports/ds390/support.c: Use tinibios.
9572
9573         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9574
9575 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9576
9577         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9578         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9579
9580         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9581
9582         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9583
9584 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9585
9586         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9587
9588         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9589         (packRegsForIYUse): Created and optimised.
9590
9591 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9592
9593         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9594 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9595
9596         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9597
9598         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9599
9600         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9601
9602 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9603
9604         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9605
9606         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9607
9608 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9609
9610         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9611
9612         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9613
9614         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9615
9616 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9617
9618         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9619         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9620         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9621
9622         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9623
9624         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9625         (genNotFloat): Added.
9626         (genUminusFloat): Added.
9627
9628         * device/lib/z80/Makefile: Added floating pt stubs.
9629
9630         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9631
9632         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9633
9634         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9635
9636 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9637
9638         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9639
9640         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9641
9642         * sdcc/support/regression/Makefile: Add port ds390.
9643
9644         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9645
9646         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9647
9648         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9649
9650         * sdcc/support/regression/ports/ds390/support.c: Added.
9651
9652         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9653
9654         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9655
9656         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9657
9658 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9659
9660         * device/include/malloc.h: Added z80 and gbz80 support.
9661
9662         * device/lib/gbz80/heap.s: Added.
9663
9664         * device/lib/z80/heap.s: Added.
9665
9666         * device/lib/malloc.c: Added z80 and gbz80 support.
9667
9668         * support/regression/tests/malloc.c (testMalloc): Added.
9669
9670         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9671
9672         * support/regression/tests/bug-478094.c: Added.
9673
9674         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9675
9676 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9677
9678         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9679
9680         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9681
9682         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9683
9684         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9685
9686         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9687
9688 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9689
9690         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9691
9692 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9693
9694         * support/regression/tests/bug-477927.c: Added.
9695
9696         * src/z80/peeph.def: Added minor rules.
9697
9698         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9699
9700         * src/z80/peeph.def: Added jump optimisation modification.
9701
9702 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9703
9704         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9705
9706 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9707
9708         * support/regression/tests/funptrs.c: Added.
9709
9710 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9711
9712         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9713
9714 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9715
9716         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9717
9718         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9719
9720         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9721         (movLeft2ResultLong): Created.
9722
9723         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9724         (joinPushes): Added.  Joins two char pushes into a word push.
9725
9726 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9727
9728         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9729
9730         * support/makebin/Makefile (install): Added creation of dest dir.
9731
9732 2001-10-24 Karl Bongers <karl AT turbobit.com>
9733
9734         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9735
9736 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9737
9738         * src/z80/ralloc.c: Turned off faulty pack for one use.
9739
9740         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9741
9742         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9743
9744 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9745
9746         * support/regression/Makefile: Improved clean
9747
9748         * support/regression/ports/gbz80/spec.mk: Added clean
9749
9750         * support/regression/ports/host/spec.mk: Added clean
9751
9752         * support/regression/ports/z80/spec.mk: Added clean
9753
9754         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9755
9756         * support/regression/ports/mcs51/timeout.c: little improvements
9757
9758 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9759
9760         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9761
9762         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9763
9764         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9765
9766 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9767
9768         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9769
9770         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9771
9772 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9773         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9774
9775         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9776
9777         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9778
9779         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9780
9781         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9782
9783         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9784
9785         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9786
9787         * support/regression/tests/longor.c: Added.
9788
9789 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9790
9791         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9792
9793         * as/mcs51/aslink.h: define PATH_MAX
9794
9795         * as/mcs51/asm.h: define PATH_MAX
9796
9797         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9798
9799         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9800
9801         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9802
9803         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9804
9805         * src/SDCCglobl.h: define PATH_MAX
9806
9807         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9808
9809         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9810
9811 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9812
9813         * src/z80/gen.c (gencjneshort): Fixed
9814
9815         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9816
9817 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9818
9819         * support/regression/tests/bug-469671.c: Added.
9820
9821         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9822
9823 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9824
9825         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9826
9827         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9828
9829 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9830
9831         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9832
9833         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9834
9835         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9836
9837         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9838
9839         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9840
9841         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9842
9843         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9844
9845 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9846
9847         * 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.
9848
9849         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9850
9851         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9852
9853 2001-10-07    <johan AT FRIJA>
9854
9855         * device/lib/gets.c (gets): fixed the return value.
9856
9857 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9858         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9859
9860         * 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.
9861
9862         * 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.
9863
9864         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9865
9866         * src/pic/gen.c: Removed Safe_strdup.
9867
9868         * configure.in: Added option to enable libgc support.
9869
9870         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9871         (bitVectUnion): Optimised.
9872         (bitVectIntersect): Optimised.
9873         (bitVectBitsInCommon): Optimised.
9874         (bitVectCplAnd): Optimised.
9875
9876         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9877
9878 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9879
9880         * src/SDCCmain.c: distinguish between assembler debug and plain options
9881
9882         * src/avr/main.c:   remove standard assembler options
9883
9884         * src/ds390/main.c: remove standard assembler options
9885
9886         * src/mcs51/main.c: remove standard assembler options
9887
9888         * src/port.h: removed "PENDING" comment
9889
9890 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9891
9892         * src/device/lib/_mulint.c  : new, with assember functions
9893
9894         * src/device/lib/_mullong.c : new, with assember functions
9895
9896         * src/device/lib/_divuint.c : with assember functions
9897
9898         * src/device/lib/_divsint.c : with assember functions
9899
9900         * src/device/lib/_divulong.c: with assember functions
9901
9902         * src/device/lib/_divslong.c: with assember functions
9903
9904         * src/device/lib/_moduint.c : with assember functions
9905
9906         * src/device/lib/_modsint.c : with assember functions
9907
9908         * src/device/lib/_modulong.c: with assember functions
9909
9910         * src/device/lib/_modslong.c: with assember functions
9911
9912         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9913
9914         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9915
9916         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9917                                       replaced _mululong.c and _mulslong.c by _mullong.c
9918
9919 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9920
9921         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9922
9923 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9924
9925         * src/SDCCglue.c: test, if win32api is available for MINGW
9926
9927 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9928
9929         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9930         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9931         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9932         * support/regression/ports/host/spec.mk: removed GENERIC
9933         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9934         * support/regression/ports/z80/spec.mk: removed GENERIC
9935
9936 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9937
9938         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9939
9940         * support/regression/tests/bug-467035.c: Created.
9941
9942 2001-10-01    <johan AT FRIJA>
9943
9944         * src/SDCC.y: fixed bug #466586 part 1
9945
9946 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9947
9948         * SDCCicode.c: z80 has no generic pointers
9949         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9950
9951 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9952
9953         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9954
9955 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9956
9957         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9958
9959         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9960
9961 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9962
9963         * configure.in: Fixed up so that ucsim is only configured once.
9964
9965         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9966
9967         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9968         (getPathDifference): As above.
9969
9970         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9971
9972         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9973
9974 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9975         * .version: Updated to 2.3.1
9976
9977         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9978         Added copyright header.
9979
9980         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9981         (assemble): Added support for macro based assembler commands.
9982         (linkEdit): Added support for macro based linker commands.
9983         (preProcess): Changed the pre-processor to use macros.
9984         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9985         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9986
9987         * device/lib/z80/crt0.s: Added module name for debugging.
9988
9989 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9990
9991         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9992
9993         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9994
9995         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9996
9997         * src/Makefile.in: Added SDCCmacro and SDCCutil
9998
9999 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10000
10001         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10002
10003 2001-09-16    <johan AT FRIJA>
10004
10005         * 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.
10006
10007 2001-09-15    <johan AT FRIJA>
10008
10009         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10010         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10011
10012 2001-09-11    <johan AT FRIJA>
10013
10014         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10015
10016 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10017
10018         * support/regression/tests/bug-460444.c: Added test case.
10019
10020         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10021         (genCast): Added justification for all of the asserts.
10022
10023 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10024
10025         * support/regression/support.c: _xdata replaced by xdata
10026
10027         * support/regression/spec.mk: removed _generic
10028
10029 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10030
10031         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10032
10033         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10034         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10035
10036         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10037
10038         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10039
10040         * support/regression/tests/bug-460010.c: Added test case.
10041
10042         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10043
10044 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10045
10046         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10047
10048         * support/regression/testfwk.c: removed workaround for bug #436344
10049
10050         * support/regression/tests/bp.c: use less memory with mcs51
10051
10052         * support/regression/tests/bug-441448.c: use less memory
10053
10054         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10055
10056         * support/regression/collate-results.py: typo
10057
10058 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10059
10060         * support/regression/tests/fetchoverlap.c: Added new test case.
10061
10062         * support/regression/tests/bp.c: Added new test case.
10063
10064         * support/regression/tests/bug-448984.c: Added new test case.
10065
10066         * support/regression/tests/pow2shifts.c: Added new test case.
10067
10068         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10069         (genlshTwo): Fixed right shift for count > 8.
10070
10071         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10072
10073 2001-09-08    <johan AT FRIJA>
10074
10075         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10076
10077 2001-09-07    <johan AT FRIJA>
10078
10079         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10080
10081         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10082
10083 2001-09-06    <johan AT FRIJA>
10084
10085         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10086         * bernhard noted me at this: "() equals to (void)" (1.38)
10087
10088 2001-09-05    <johan AT FRIJA>
10089
10090         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10091
10092 2001-09-04    <johan AT FRIJA>
10093
10094         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10095
10096
10097 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10098
10099         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10100
10101 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10102
10103         * link/z80/aslink.h: Fixed path for PATH_MAX
10104
10105 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10106
10107         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10108
10109         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10110
10111         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10112
10113         * 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.
10114
10115 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10116
10117         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10118         (genCmp): Fixed up genCmp for the GB with longs.
10119
10120         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10121
10122         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10123
10124         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10125
10126         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10127
10128 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10129
10130         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10131
10132 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10133
10134         * 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.
10135
10136         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10137
10138 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10139
10140         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10141
10142         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10143
10144 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10145
10146   * sim/ucsim/configure:    little improvement of Cygwin-detection
10147   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10148   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10149   * support/regression/tests/bug-221100.c: small changes for mcs51
10150   * support/regression/tests/bug-221168.c: small changes for mcs51
10151   * support/regression/tests/bug-227710.c: small changes for mcs51
10152   * support/regression/tests/staticinit.c: small changes for mcs51
10153   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10154   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10155   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10156
10157 $Revision$