* config.dsp: added dependency on .version and configure_vc.awk
[fw/sdcc] / ChangeLog
1 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * config.dsp: added dependency on .version and configure_vc.awk
4         * device/include/setjmp.h: updated for --stack-auto and --xstack
5         * device/include/mcs51/at89c51snd1c.h: corrected line endings
6         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
7         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
8         * device/lib/libsdcc.lib: added _setjmp
9         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
10           (decorateType): fixed bug 1372851,
11           (optimizeGetHbit): fixed warning
12         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
13           array initialisation
14         * support/regression/tests/bug1057979.c: added test for bug 1358192
15         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
16
17 2005-12-03 Borut Razem <borut.razem AT siol.net>
18
19         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
20           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
21
22 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
23
24         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
25         createIval): implement symbol independant "flexible array member",
26         (createIvalCharPtr): implemented flexible array initialisation with a
27         string
28         * src/SDCCsymt.c (copyStruct): removed,
29         (getSize): fixed misleading comment,
30         (getAllocSize): removed, the additional allocation size is now in
31         sym->flexArrayLength,
32         (checkStructFlexArray): new, syntax checks for flexible array members,
33         (compStructSize): added syntax checks for "flexible array members"
34         (copyStruct): removed,
35         (copyLinkChain): removed inefficient fix for bug 770487
36         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
37         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
38         symbol->flexArrayLength
39         * src/SDCCerr.c,
40         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
41         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
42         * support/regression/tests/structflexarray.c: added
43         * support/valdiag/tests/structflexiblearray.c: added
44
45 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
46
47         * src/SDCCast.c (decorateType): fixed bug 1368489
48         * support/Util/SDCCerr.c,
49         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
50
51 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
52
53         * device/include/mcs51/at89c51snd1c.h: added file submitted by
54           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
55
56 2005-11-27 Borut Razem <borut.razem AT siol.net>
57
58         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
59           support/cpp2/mkdeps.h: added command line option
60           -obj-ext=<extension> to SDCPP to define object file externion, used
61           for generation of make dependencies (-M)
62         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
63
64 2005-11-26 Borut Razem <borut.razem AT siol.net>
65
66         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
67           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
68           added pic and pic16 libraries
69
70 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
71
72         * device/include/float.h: Corrected typo in prototype of __fsgt
73
74 2005-11-25 Borut Razem <borut.razem AT siol.net>
75
76         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
77           added creation of model-mcs51-stack-auto libraries
78
79 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
80
81         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
82         and fields-list too
83         * src/SDCCast.c (createIvalArray): removed obsolete comment
84
85 2005-11-24 Borut Razem <borut.razem AT siol.net>
86
87         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
88           added missing device/lib/mcs51/crt*.asm sources
89
90 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
91
92         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
93
94 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * device/lib/_fs2schar.c,
97         * device/lib/_fs2sint.c,
98         * device/lib/_fs2slong.c: optimized inline asm
99
100 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
101
102         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
103           Better handling of floats between -1.0 and 0.0.
104
105 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
106
107         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
108           (the missing "if"s prohibited removal of redundant labels)
109
110 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
111
112         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
113           Properly convert floats between -1.0 and 0.0 to long, int, and char
114           types (max integer value of negative floats tends to zero).
115         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
116           Removed changes made so to work properly with floats between
117           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
118           and _fs2char.c
119
120 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
121
122         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
123         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
124         (genCast) cosmetic change
125         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
126         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
127         from mcs51
128         * support/regression/tests/bitfields (testSignedBitfields): added
129
130 2005-11-18 Borut Razem <borut.razem AT siol.net>
131
132         * sdcc/device/lib/Makefile.in: remove all unnecessary files
133         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
134           introduced SILENT option to make building of pic16 libraries less
135
136 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
137
138         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
139           Now they work properly with floats between -1.0 and 0.0
140         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
141
142 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * src/SDCCicode.c (printOperand): added missing else
145
146 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
147
148         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
149         reformatted for better readability
150         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
151         signed bitfields
152
153 2005-11-17 Borut Razem <borut.razem AT siol.net>
154
155         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
156           introduced SILENT option to make building of pic16 libraries less
157           verbose - used for nightly snapshot build
158         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
159           available on Win32 platforms.
160         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
161           medium, large, pic and pic16
162
163 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
164
165         * device/lib/printf_large.c: Temporary patch for bug 1358192:
166           printf("%f"...) sets fraction to zero.
167
168 2005-11-16 Raphael Neider <rneider AT web.de>
169
170         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
171           fixes #1357221
172         * src/pic/gen.c (genIfx): implemented for CARRY bit
173         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
174           to generic pointers, fixes #1357332,
175           (pic16_movLit2f): NEW,
176           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
177
178 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
179
180         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
181
182 2005-11-11 Raphael Neider <rneider AT web.de>
183
184         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
185         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
186           compute pointer's type from operand,
187           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
188           improved single bit reads, fixes bug #1353379
189
190 2005-11-09 Borut Razem <borut.razem AT siol.net>
191
192         * support/scripts/sdcc.nsi: added lib/pic to the package
193
194 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
195
196         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
197
198 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
199
200         * support/regression/tests/bug1348008.c: added
201         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
202         * support/regression/tests/bug1337835.c: updated comment
203
204 2005-11-06 Borut Razem <borut.razem AT siol.net>
205
206         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
207           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
208           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
209           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
210           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
211           dynamic construction of cl_error_class and derivates - 2.nd try
212
213 2005-11-05 Borut Razem <borut.razem AT siol.net>
214
215         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
216           bug, which caused Bus Errors on sparc solaris
217
218 2005-11-04 Borut Razem <borut.razem AT siol.net>
219
220         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
221           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
222           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
223           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
224           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
225           and derivates to resolve the initialization problem on OSX
226
227 2005-11-02 Borut Razem <borut.razem AT siol.net>
228
229         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
230           corrected typo - #include <winsock2.h>
231
232 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
233
234         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
235           (_asxxxx_mapping): added org directive for future enhancements
236
237 2005-11-01 Borut Razem <borut.razem AT siol.net>
238
239         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
240           enabled sockets on WIN32
241         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
242
243 2005-10-31 Borut Razem <borut.razem AT siol.net>
244
245         * support/regression/generate-cases.py: escape backslashes in {testcase}:
246           WIN32 backslash path delimiters should be escaped when used in C strings
247         * support/regression/tests/bitfields.c: exclude failing assertions for
248           __CYGWIN32__ and __MINGW32__ hosts
249
250 2005-10-30 Borut Razem <borut.razem AT siol.net>
251
252         * src/SDCCutil.c: corrected double comparison typo
253
254 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * device/lib/medium/Makefile: added for new memory model medium
257         * device/include/asm/mcs51/features.h: updated for medium/pdata
258         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
259           added Multiply & Accumulate sbit's and MAC0_PAGE define
260         * device/include/mcs51/c8051f300.h: added sfr16 definitions
261         * device/include/mcs51/c8051f310.h: added sfr16 definitions
262         * device/lib/_mullong.c: update for medium model
263         * device/lib/incl.mk: added medium model
264         * doc/sdccman.lyx: documented medium model
265         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
266         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
267         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
268         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
269           (allocParms): set SCLS and OCLS to pdata for medium model
270         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
271           for pdata,
272           (powof2): return <0 if not power of 2
273         * src/avr/gen.c (genBitWise): use updated powof2
274         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
275           (shiftR2Left2Result): small optimization in setup, save acc when storing,
276           (shiftLLeftOrResult): use B if necessary
277         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
278         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
279         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
280         * support/regression/Makefile.in: added test-mcs51-medium
281         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
282
283 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
284
285         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
286         specifier unsigned
287         * device/lib/time.c (mktime): fixed bug 1334315
288
289 2005-10-28 Raphael Neider <rneider AT web.de>
290
291         * device/include/pic/p16f_common.inc: added common declarations
292         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
293
294 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
295
296         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
297           (aopPutUsesAcc): added to predict accumulator use,
298           (assignResultValue): save acc if necessary,
299           (genMinusDec): store result if indirectly addressed,
300           (genDivOneByte):  save acc if necessary,
301           (movLeft2Result): bugfix if left already in acc,
302           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
303             attention to accumulator use (esp. pdata),
304           (genReceive): receive pdata correctly
305         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
306         * src/SDCCicode.h: added isOperandInPagedSpace prototype
307
308 2005-10-27 Raphael Neider <rneider AT web.de>
309
310         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
311
312 2005-10-27 Raphael Neider <rneider AT web.de>
313
314         * .version: changed version to 2.5.4
315         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
316         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
317           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
318             arithmetics support routines
319         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
320         * device/lib/Makefile.in: also create installdir for pic
321
322         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
323           pic14 port as well
324         * src/pic/device.c (dump_sfr): rewritten to delegate register
325           placement to the linker (use `extern sym' rather than sym EQU addr),
326           (validAddress): fixed to check last specified address
327         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
328           (popGetLit): truncate literal value to 8 bit,
329           (popGet): moved assert to more appropriate place
330           (popGetExternal): create pCode operand from and mark the according
331             symbol as being `extern'
332           (popGetAddr): added sanity check on immediate's offset, provide
333             GPOINTER tag on demand
334           (aopPut): fixed for immediates,
335           (mov2w_op): move operand's address or contents to WREG (depending on
336             operand type), safer variant of mov2w,
337           (movwf,call_libraryfunc): NEW, handy abbreviations,
338           (get_argument_pcop,get_return_val_pcop,pass_argument,
339           get_returnvalue): interface for accessing function parameters and
340             return values,
341           (assignResultValuei,genRet): use new parameter/return value interface
342           (pic14_getDataSize): back to old version handling generic pointers,
343           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
344             provided implementation and/or fixed old one,
345           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
346             calls, removed legacy 8051 reference code
347           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
348           (loadSignToC): NEW, move the operands sign bit to CARRY,
349           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
350             genRightShiftSigned, accepts negative shift counts,
351           (setup_fsr): load FSR and adjust IRP (indirect memory access),
352           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
353             generic pointers, __data pointers and __code pointers,
354           (genUnpackBits,genPackBits): rewritten to work with generic pointers
355             and signed bitfields, limit bitfields to 8 bit,
356           (genDataPointerGet): fixed number of bytes read,
357           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
358           (genPointerGet,genPointerSet): fixed handling of __code pointers,
359             pointers to constant data are no longer assumed to point to __code
360             space, removed invalid pointer types,
361           (bitpatternFromVal): retrieve the PICs representation of an integer
362             or float literal,
363           (genDataPointerSet): fixed assigning to po_immediate operands,
364           (genGenPointerSet): implemented as library call,
365           (genIfx): fixed incorrect condition,
366           (genAddrOf): limit generic pointers' addresses to 2 bytes,
367             provide GPOINTER tag according to destination's storage class,
368           (genCast): added code to handle casting to generic pointers, added
369             sign-/zero extension of the result
370           (aop_isLitLike,op_isLitLike): fixed handling of immediates
371         * src/pic/gen.h: added macros to access IRP bit in STATUS register
372         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
373           extend the result
374         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
375           address/register resides in the shared banks
376           (emitSymbolToFile): improved to handle global and `pinned' symbols,
377             put all variables into separate sections (have the linker arrange
378             them)
379           (picglue): put init code and interrupt handlers in separate sections
380         * src/pic/main.c: added port specific options table, modified to PORT
381           structure to make GPOINTERs 3 byte, added pic14_options
382           (_pic14_do_link): private linking routine (update paths to libraries,
383             add libsdcc.lib by default)
384         * src/pic/main.h: declare pic14_options
385         * src/pic/pcode.c: fixed instructions i/o relations,
386           (RegCond): reverted to correct version,
387           (newpCodeOpLit): truncate literals to 8 bit,
388           (genericPrint): added debug output,
389           (getRegFromInstruction): fixed for various operand types, simplified
390           (BuildFlow): fixed broken handling of isntructions with labels
391           (LinkFlow): start at last instruction in flow (skip trailing comments),
392             pass the flow on to the next instruction after CALL
393           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
394           (insertPCodeInstruction): fixed inserting after a skip instruction,
395           (DoBankSelect): fixed for labeled instructions
396           (OptimizepBlock): honor --nopeep switch
397           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
398         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
399         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
400           (pCodeOptime2pCodes): allow disabling this optimization via
401             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
402             but is still buggy), started implementation of a dataflow based
403             pCode optimization (CSE + dead code elimination)
404           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
405         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
406           names are independant of the stack location and therefore portable across
407           devices
408
409 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
410
411         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
412           (selectSpil): fixed bug 1337835 by not spilling bit variables
413         * support/regression/tests/bug1337835.c: added test for this bug
414         * src/mcs51/peeph.def: restart after rule 3.c,
415           addded rules 263.x to optimize loading constants
416
417 2005-10-26 Raphael Neider <rneider AT web.de>
418
419         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
420         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
421           (genAssign): emit warning when casting literals to generic pointer
422             type, also applies when taking the address of a fixed variable,
423           (genCast): improved casting to generic pointers
424         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
425           extern variables, added verbose error message
426         * device/include/pic16/{string.h,errno.h}: added #pragma library c
427
428 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
429
430         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
431         carry must be complemented too
432         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
433         could be emitted by genMinus
434         * src/SDCCval.c (constVal): fixed bug 1305065
435
436 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
437
438         * src/SDCCast.c (addCast): added promotion for bit variables
439         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
440         promotion casts + optimisation
441         (optimizeGetWord): fix warning 'i' might be used uninitialized
442         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
443         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
444
445 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
446
447         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
448         all chars are promoted to int; promotion should be handled in SDCCast.c
449
450 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
451
452         * device/lib/_strcmp.c: Fixed bug 1326457
453
454 2005-10-11 Raphael Neider <rneider AT web.de>
455
456         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
457         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
458
459 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
460
461         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
462         * support/regression/tests/sfr16.c: added test for the sfr32 bug
463
464 2005-10-04 Raphael Neider <rneider AT web.de>
465
466         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
467           device/lib/pic16/pics.all: added pic18f1320
468         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
469
470 2005-09-30 Raphael Neider <rneider AT web.de>
471
472         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
473         * src/pic16/devices.inc: NEW, provides device descriptions
474         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
475
476 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
477
478         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
479           GETHBIT
480
481 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
482
483         * doc/sdccman.lyx: updated Highest Order Bit documentation,
484           documented Any Order Bit, Higher Order Byte and Higher Order Word
485         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
486         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
487           (optimizeGetAbit): new, to get any bit, not only the high bit,
488           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
489           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
490           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
491           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
492             RIGHT_OP: also try GETBYTE, GETWORD optimization,
493             GETABIT, GETBYTE, GETWORD: decorate them,
494           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
495           (ast_print): added GETABIT, GETBYTE, GETWORD
496         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
497         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
498           (geniCodeBinary): new generic binary icode,
499           (ast2iCode): added GETABIT, GETBYTE, GETWORD
500         * src/port.h: updated comment for PORT.hasExtBitOp
501         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
502           (genGetByte): new, to get a single byte,
503           (genGetWord): new, to get a word from a long,
504           (gen51Code): added GETABIT, GETBYTE, GETWORD
505         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
506
507 2005-09-23 Raphael Neider <rneider AT web.de>
508
509         * configure.in, configure: have device/lib/pic configured
510         * device/lib/Makefile.in: added model-pic14
511         * device/lib/clean.mk: added pic/ to clean rule
512         * device/lib/pic: added rudimentary pic14 library providing support
513           functions for multiplication/division/generic pointer access
514         * src/SDCCopt.c (convilong): mark support functions as extern
515           for pic14 port as well
516         * src/pic/gen.c (genMult): added assertions,
517           (genpic14Code): emit warning on unhandled iCodes
518         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
519         * src/pic/pcode.c (pCodeOpCopy),
520         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
521           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
522           SFR_REGISTER}), made safe for future extensions
523         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
524           instructions even if preceeded by SKIP instructions (also remove
525           them); removed unused code
526         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
527           prevents leaving parts of the structure uninitialized after copying
528
529 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
530
531         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
532           ago by me
533         * support/regression/tests/addsub.c: added test for the bug
534
535 2005-09-21 Raphael Neider <rneider AT web.de>
536
537         * device/include/pic16/pic18f1220.h,
538           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
539         * device/lib/pic16/Makefile.rules: added missing opening paren
540         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
541           are provided in genutils.c,
542           (genUminusFloat,genUminus,genCmpEq): added asserts on different
543           operand/result sizes,
544           (genCmp): assert on NULL pointers first, then check deref'ed values
545         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
546           result size
547
548 2005-09-18 Raphael Neider <rneider AT web.de>
549
550         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
551           as these are now unused,
552           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
553         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
554           local, avoids uninitialized pointer dereference on r->name
555         * src/pic16/ralloc.c (newReg): fixed indentation
556
557 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
558
559         * src/SDCCval.c (constVal): fixed bug 730366
560         * support/Util/SDCCerr.c,
561         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
562
563 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
564
565         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
566
567 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
568
569         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
570
571 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
572
573         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
574           (hex2dec): made hex_digit unsigned char, removed ascii dependance
575         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
576           (hex2dec): made hex_digit unsigned char, removed ascii dependance
577         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
578         * packihx/packihx.c (hexDigit): made c unsigned char
579         * as/mcs51/lklibr.c (fndsym),
580         * link/z80/lkgb.c (gb),
581         * link/z80/lklibr.c (fndsym),
582         * link/z80/lkrloc.c (relr),
583         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
584         * src/SDCC.lex (checkCurrFile, process_pragma),
585         * src/SDCCglue.c (spacesToUnderscores),
586         * src/SDCCmain.c (setParseWithComma, processFile),
587         * src/asm.c (tvsprintf, printCLine),
588         * src/avr/gen.c (emitcode, aopPut),
589         * src/ds390/gen.c (emitcode),
590         * src/hc08/gen.c (emitcode, emitinline),
591         * src/mcs51/gen.c (emitcode, genInline),
592         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
593           tokenizeLineNode),
594         * src/pic/ralloc.c (debugLog),
595         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
596           tokenizeLineNode),
597         * src/pic16/ralloc.c (debugLog),
598         * src/z80/main.c (_process_pragma):
599            made all ctype.h function calls safe
600         * src/SDCCopt.c: include math.h for fabs
601         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
602           and used them throughout the code to make ctype.h function calls safe
603         * src/ds390/main.c (asmLineNodeFromLineNode),
604         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
605         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
606            unsigned char*
607         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
608           (newpCodeAsmDir): made ctype.h function calls safe
609         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
610           pic16_emitcode):  made lbp unsigned char*
611         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
612           (pic16_newpCodeAsmDir): made ctype.h function calls safe
613         * src/xa51/gen.c (emitcode),
614         * src/z80/gen.c (_emit2): made lbp unsigned char*
615         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
616            char*
617
618 2005-09-05 Raphael Neider <rneider AT web.de>
619
620         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
621           access bank splitpoint
622
623 2005-09-05 Raphael Neider <rneider AT web.de>
624
625         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
626
627 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * .version: changed to version 2.5.3
630         * doc/sdccman.lyx: changed version to 2.5.3,
631           documented --codeseg and --constseg and pragma codeseg and constseg,
632           documented bit parameters (reentrant) and bit returning
633         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
634            currFunc->recvSize, but is this ok for all ports?
635           (ast2iCode): result of ~ on unsigned char must be cast to int for
636            bool to work
637         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
638           function pointers in bit space
639         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
640           (processFuncArgs): call port.reg_parm() with reentrancy info
641         * src/port.h,
642         * src/avr/main.c,
643         * src/ds390/main.c,
644         * src/hc08/main.c,
645         * src/pic/main.c,
646         * src/pic16/main.c,
647         * src/xa51/main.c,
648         * src/z80/main.c: port.reg_parm prototype extended with
649           "bool reentrant" parameter
650         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
651           options.stackAuto for allocating bit register parameters
652         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
653           (genSend): set BitBankUsed if it is,
654           (selectRegBank): factored out of genCall for use in genPcall,
655           (genCall): removed redundant dtype assignmen, use selectRegBank,
656           (genPcall): handle returning in Carry properly, save in F0 if needed,
657           (genReceive): handle bit register parameters
658         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
659           (mcs51_assignRegisters): enable bit registers for all reentrant
660            functions and don't set BitBankUsed unconditionally
661         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
662         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
663         * support/regression/tests/funptrs.c: added tests for BOOL and for return
664
665 2005-08-27 Borut Razem <borut.razem AT siol.net>
666
667         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
668         ppc-osx (Darwin) does not support -u option. It seems that it is
669         supported only on Linux - GNU cp
670
671 2005-08-25 Borut Razem <borut.razem AT siol.net>
672
673         * sim/ucsim/gui.src/serio.src/Makefile.in,
674           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
675           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
676           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
677           install and strip, since the strip at /usr/ccs/bin should be used
678           on solaris
679
680 2005-08-24 Borut Razem <borut.razem AT siol.net>
681
682         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
683
684 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
685
686         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
687         ffffffffu
688
689 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
690
691         * as/mcs51/aslink.h: completed lkrloc.c prototypes
692         * as/mcs51/lkmain.c (link_main): fixed warning
693         * device/include/stdbool.h: ds390 has no advanced bit support yet
694         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
695         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
696         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
697           and updated their macros
698         * src/SDCCval.c (constVal): updated comment for renamed b_long
699
700 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
701
702         * as/mcs51/asdata.c: changed ctype['['] to BINOP
703         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
704           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
705           (oprio): set priority for '['
706         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
707            and adb_24_bit
708         * as/mcs51/asm.h: added defines R_BIT and S_BIT
709         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
710         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
711         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
712           added overlayable BIT_BANK area
713         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
714           (summary2): explain 'T' in legenda
715         * as/mcs51/lkrloc.c: replaced old K&R style,
716           (relr): added R_BIT processing,
717           (errmsg): added "Bit-addressable relocation error",
718           (adb_bit): added for converting from byte- to bit-addressable space,
719           (adb_24_bit): added for converting from byte- to bit-addressable space
720         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
721            used in reentrant functions now even as return value
722         * device/lib/_gptrput.c (_gptrput): removed obsolete code
723         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
724           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
725         * src/SDCCglobl.h: added indicator BitBankUsed
726         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
727            the bit registers b0-b7
728         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
729           (geniCodeCast): fixed bug 1263853,
730           (geniCodeLogicAndOr): put result in bool or char,
731           (geniCodeReceive): added parameter func for accessing the return type,
732           (geniCodeFunctionBody): pass func to geniCodeReceive
733         * src/SDCCmain.c: added indicator BitBankUsed
734         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
735         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
736           (checkSClass): don't put automatic bool/bit on stack,
737           (checkFunction): removed check on function cannot return bit
738         * src/SDCCsymt.h: added newBoolLink prototype
739         * src/mcs51/gen.c (rb1regs): added bit registers,
740           (movc): created for assigning to carry,
741           (pushReg, popReg): created for pushing registers,
742           (sameRegs): check both AOP_REG and AOP_CRY types,
743           (aopOp): handle bit registers,
744           (aopPut): optimization no self-assign,
745           (saveRegisters): push reg->base (bits) only once for bit registers,
746            and use pushReg,
747           (unsaveRegisters): pop reg->base only once and use popReg,
748           (assignResultValue): added parameter func and return in carry for bits,
749           (genIpush): optimization no reload in A if not changed,
750           (genSend): bit parameters in reentrant functions are passed in bit
751            registers by first assigning to bits in B, then save registers and
752            copy B to bits,
753           (genCall): handle returning in Carry properly, save it in F0 if needed,
754           (genPcall): updated assignResultValue call, this is not safe yet for bit
755            returning function !!!
756           (genFunction): don't generate equ's for bit registers and use pushReg,
757           (genEndFunction): take care of bit returning functions and use popReg,
758           (genRet): return bit in Carry,
759           (genIfx): optimize bit registers and other directly addressable bits,
760           (genReceive): updated assignResultValue call
761         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
762           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
763            registers when using stack-auto
764         * src/mcs51/ralloc.c (_G): added allBitregs,
765           (regs8051): added the bit registers,
766           (createStackSpil): use macro IS_BIT,
767           (getRegBit): added to allocate a bit register, else spill,
768           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
769           (updateRegUsage): factored out to ease stepping while debugging,
770           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
771            also allocate bit registers,
772           (fillGaps): handle bit registers,
773           (findAllBitregs): added to create bit vector with all bit registers,
774           (mcs51_allBitregs): returns this bit vector,
775           (mcs51_assignRegisters): when using stack-auto use bit registers for
776            passing parameters and creating local variables
777         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
778
779 2005-08-22 Borut Razem <borut.razem AT siol.net>
780
781         * device/lib/Makefile.in: replaced find option -or with -o
782           to make it run on solaris
783
784 2005-08-22 Raphael Neider <rneider AT web.de>
785
786         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
787           fixes #1265442 (crash on Solaris)
788
789 2005-08-20 Borut Razem <borut.razem AT siol.net>
790
791         * configure, configure.in: added tests for libsocket and libnsl libraries,
792           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
793           from support/regression/Makefile.in
794         * support/regression/Makefile.in: added
795         * device/lib/pic16/Makefile.common.in: force make to use bash shell
796         * sim/ucsim/libtool: regenerated on sparc-solaris
797         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
798           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
799           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
800           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
801           sparc-solaris, which doesn't use GNU ld linker
802         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
803         * as/Makefile: find on sparc-solaris does not support -maxdepth option
804
805 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
806
807         * src/mcs51/peeph.def: updated comments
808
809 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
810
811         * device/lib/_gptrget.c,
812         * device/lib/_gptrput.c: slightly shorter
813         * doc/sdccman.lyx: incremented version
814         * src/mcs51/peeph.def: moved peephole comments to the line of first
815           change to better keep line correlation, reanimated 186.e
816         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
817
818 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
819
820         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
821           David Saxton with quotes around file name.
822
823 2005-08-15 Borut Razem <borut.razem AT siol.net>
824
825         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
826           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
827           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
828           make tests run on x86_64 platform
829
830 2005-08-13 Raphael Neider <rneider AT web.de>
831
832         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
833           as it might be executed DURING a build (parallel make is wonderful)
834
835 2005-08-13 Raphael Neider <rneider AT web.de>
836
837         * device/lib/Makefile.in (port-specific-objects-pic16):
838           revert to cp $(PORT)/bin/*.* $(PORTDIR)
839         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
840           dependency
841         * device/lib/pic16/Makefile.rules: build subdirs before creating
842           the library, removed builddir rule, create $(builddir) early in
843           recurse rule, use empty recurse rule for leaf directories
844         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
845           mkdir errors (race condition), removed duplicate suffix "hex"
846           from clean rules
847         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
848         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
849           prevents mkdir -p from aborting on Alpha
850
851 2005-08-12 Raphael Neider <rneider AT web.de>
852
853         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
854           db-statements in order to allow for arrays of pointers in code
855           sections to be placed without interspersed 0-padding, fixes
856           bug #1256215
857         * (emitStatistics): fixed division by zero for pic18f1220
858         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
859           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
860         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
861         * (pic16_pCodeConstString): keep track of already emitted string
862           literals to prevent "duplicate definitions of symbol _str_NR"
863         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
864           debug message
865         * device/lib/Makefile.in: ignore failing PIC16 library builds
866         * device/lib/pic16/Makefile: do not build if gputils are missing
867         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
868
869 2005-08-10 Raphael Neider <rneider AT web.de>
870
871         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
872           my last commit)
873
874 2005-08-10 Raphael Neider <rneider AT web.de>
875
876         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
877           Rokas' patch to add the new fixed point type "__fixed16x16"
878         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
879           functions for __fixed16x16 arithmetics
880         * device/lib/pic16: reimplemented the build system to support
881           a separate build directory, better handling of libio (create
882           the library in a separate subdir for each architecture) and
883           easier configuration (centralized in Makefile.common)
884
885 2005-08-07 Raphael Neider <rneider AT web.de>
886
887         * src/pic16/gen.c (genrshTwo): fixed sign extension
888         * src/pic16/device.c: added pic18f2320, 4220 and 4320
889         * device/include/pic16/pic18f2220.h: changed some bit definitions,
890           added T0CONbits
891         * device/include/pic16/pic18f4220.h: NEW, header for
892           pic18f4220 and pic18f4320
893         * device/include/pic16/pic18fregs.h: added new devices,
894           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
895         * device/include/pic16/signal.h: resolved name clashes
896           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
897           to also allow testing for interrupt enable bits, added
898           comments on how to use the macros
899         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
900         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
901           register definitions for the devices
902         * device/lib/pic16/pics.all: added new devices
903         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
904           allocated memory
905         * device/lib/pic16/libc/stdlib/memfree: do not count
906           the block header as free memory
907         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
908           simplified and added missing end-of-blocklist-marker
909           (reported by Peter Onion, fixes #1252814)
910         * (_mergeHeapBlock): fixed loop condition
911         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
912           len==0, restructured code
913         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
914           up a bit, reduced bitfield accesses, prevent endless loops
915           in case of heap corruption
916         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
917           "unreferenced arguments/must return a value" warnings
918         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
919           replaced BAUDREG with SPBRG
920         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
921           device/lib/pic16/debug/gstack/gstack.c: replaced
922           _naked, _asm, _endasm with __naked, __asm, __endasm
923
924 2005-08-05 Raphael Neider <rneider AT web.de>
925
926         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
927           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
928
929 2005-08-05 Borut Razem <borut.razem AT siol.net>
930
931         * device/lib/Makefile.in: added missing ';'
932         * configure: removed ^M characters
933
934 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
935
936         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
937           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
938           License
939
940 2005-08-04 Borut Razem <borut.razem AT siol.net>
941
942         * configure.in: pic16 libraries build 2nd try - enable running
943           configure in device/lib/pic16
944         * configure: regenerated from configure.in
945         * device/lib/Makefile.in: create $(PORT)/bin directory
946
947 2005-08-03 Raphael Neider <rneider AT web.de>
948
949         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
950           to get/set values via pointers
951         * (genUnpackBits,genPackBits): changed detection of
952           ptr->bitfield vs. sym.bitfield, fixed access via generic
953           pointers, removed dead (wrong) code for multibyte bitfields
954         * (genNearPointerGet, genGenPointerGet): removed useless code,
955           fixed bitfield detection, fixes #1250594
956         * (genNearPointerSet): removed useless code
957         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
958           and introduced macro pic16_emitpcode that conditionally emits
959           the origin of the following pCode (useful for debugging SDCC)
960         * src/pic16/pcode.c: changed (and disabled) some debug outputs
961         * (createDefmap): fixed handling of LFSR for --optimize-df
962
963 2005-08-02 Borut Razem <borut.razem AT siol.net>
964
965         * device/lib/Makefile.in: pic16 libraries build enabled since
966           gputils-0.13.2 are now localy installed at sourceforge's compile farm
967
968 2005-08-02 Raphael Neider <rneider AT web.de>
969
970         * src/pic16/gen.c (genPackBits): removed deprecated warning
971         * (genGenPointerSet): fixed bitfield detection
972
973 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
974
975         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
976
977 2005-07-31 Raphael Neider <rneider AT web.de>
978
979         * device/lib/pic16/libdev/pic18f458.c,
980           device/include/pic16/pic18f458.h: added missing T0CONbits
981
982 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
985
986 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
989
990 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
991
992         * device/include/mcs51/at89c51ed2.h: added.
993
994 2005-07-23 Raphael Neider <rneider AT web.de>
995
996         * src/pic/gen.h: added emitpcode macro for debugging
997         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
998           and replace by macro adding debug information on demand
999         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1000         * (gencjne): tried to fix; replaced with correct (slower) code
1001         * (gen{Unp,P}ackBits): fixed single bit access
1002         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1003         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1004           previous instruction
1005         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1006           register has to be handled with care (forbidding movement
1007           of assignments/uses, removing assignments completely, ...)
1008         * (pCodeOptime2pCodes): make use of regIsSpecial
1009         * added lots of debugging output (commented out)
1010         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1011           from being reused as result UNLESS it is known to work
1012
1013 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1014
1015         * support/Util/dbuf.h: include <stddef.h> for size_t
1016         * .version: changed to version 2.5.2
1017
1018 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1019
1020         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1021
1022 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1023
1024         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1025           (genModOneByte): removed needless psha/pula
1026
1027 2005-07-22 Raphael Neider <rneider AT web.de>
1028
1029         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1030           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1031         * src/pic/gen.c (resolveIfx): do not "invent" labels
1032         * (genSkipc): changed to positive logic
1033         * (genSkipCond): removed as no longer needed
1034         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1035           backport from PIC16
1036         * (genLeftShift): check operands are in different registers
1037         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1038           INCF does not update CARRY...
1039         * src/pic/main.c: fixed _linkCmd
1040         * src/pic/pcode.c (unlinkpCode): added inactive code
1041         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1042           alive (do not assign result and operand overlapping registers)
1043
1044 2005-07-22 Raphael Neider <rneider AT web.de>
1045
1046         * src/pic/device.c (dump_sfr): replaced register declaration with
1047           call to emitSymbolToFile() to avoid duplicate symbols
1048         * (assignRelocatableRegisters): do not declare external symbols
1049         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1050           right (take size of type, not etype)
1051         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1052         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1053         * (packRegsForAccUse): disabled assignment of WREG as
1054           the result reg to prevent occurence of just fixed #1235003,
1055           fixes #1242954
1056         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1057           symbols (avoids duplicate symbols in .asm file)
1058         * (pic14emitRegularMap): use emitSymbolToFile()
1059         * src/pic/gen.c (aopOp): fixed spillLocation handling
1060         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1061         * (genDataPointerSet): removed unneccessary variables/output
1062
1063 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1066         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1067
1068 2005-07-21 Raphael Neider <rneider AT web.de>
1069
1070         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1071           architecture cannot handle them efficiently, fixes bug #1235003
1072         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1073           check for empty sets before using them (fixes bug #1232190)
1074
1075 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1078           (lnksect2): generate warnings for memory overlap
1079         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1080           constseg to set the name of these segments so you can instruct the linker
1081           to place them in banks
1082         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1083         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1084           added code_seg and const_seg to options
1085         * src/SDCCglue.c (emitMaps): use options.const_seg,
1086           (createInterruptVect): put interrupt vectors in segment HOME,
1087           (glue): put HOME before static segment and put the main glue in HOME,
1088           (glue): use options.code_seg
1089         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1090         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1091           these segments so you can instruct the linker to place them in banks
1092           (linkEdit): use code_loc for HOME segment which should be the first
1093           segment in code memory now
1094         * src/SDCCmem.c: fixed more stuff like bug 1238386
1095         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1096           (changePointer): don't change function pointers to code pointers for
1097           banked functions,
1098           (compareType): added exceptional check for banked function pointers
1099         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1100         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1101           after static in code memory
1102         * src/mcs51/gen.c: added aopLiteralLong prototype,
1103           (aopForSym): use getSize for functions,
1104           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1105           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1106           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1107           the segment,
1108           (genPcall): use call for literal function pointers and generate banked
1109           calls over the one trampoline so there's only one place for the user to
1110           modify according to his/hers hardware,
1111           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1112           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1113         * src/mcs51/main.c: added keyword banked,
1114           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1115         * support/Util/SDCCerr.c,
1116         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1117           needed for passing the bank and address to the trampoline
1118         * device/lib/mcs51/crtbank.asm: added for bankswitching
1119         * device/lib/mcs51/Makefile: added crtbank
1120
1121 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1122
1123         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1124           for fields at offset 0 of a struct or union as reported
1125           on 2005-07-07 in the developer mailing list.
1126
1127 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1128
1129         * src/SDCCmem.c: fixed bug 1238386
1130
1131 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1132
1133         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1134           (patch #1144962), added peephole 300, enabled 259.x
1135         * doc/sdccman.lyx: removed screenshot and provided link instead
1136
1137 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1138
1139         * doc/sdccman.lyx: added section about debugging with ddd
1140         * doc/figures/ddd_example.eps: screenshot of debugging session
1141
1142 2005-07-04 Raphael Neider <rneider AT web.de>
1143
1144         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1145           like CODE pointers, fixes #1115683
1146         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1147           call, fixes bugs #1232211, #1228110,
1148           fixed wrong casts to pCodeFlow from pCodeInstructions
1149
1150 2005-07-04 Raphael Neider <rneider AT web.de>
1151
1152         * src/pic/gen.c (popGet): changed assert to allow for
1153           bit operands
1154         * (popGetAddr): changed signature to provide
1155           an additional index, patched all call sites
1156         * (genCmpEq): handle literal-like operands correctly
1157         * (genAddrOf): added sanity checks on __code/__data pointers
1158         * (genAssign): added handling of symbols from __code section
1159         * (gencjne): do not generate code for comparisons whose result
1160           is neither stored nor used, fixes bug #1171114
1161         * (AccLsh, AccRsh): operate on operand instead of WREG
1162         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1163           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1164           by known count
1165         * rewrote complete shift-by-literal logic, commented unused
1166           functions out
1167         * (genConstPointerGet): get multiple bytes (if result size > 1),
1168           fixed handling of non-immediate addresses
1169         * (genPointerGet): handle CODE pointers like CONST pointers
1170         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1171         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1172           operand is to be treated as a literal or not
1173         * (mov2w,genPcall,genCmpEq),
1174           src/pic/genarith.c: use aop_isLitLike() to decide between
1175           literal/register contents
1176         * (addSign): added missing offset
1177         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1178           only emit comment in debug-mode,
1179           use {aop,op}_isLitLike throughout the file
1180         * src/pic/glue.c: fix initializers for pointers (work in progress)
1181         * src/pic/pcode.c (get_op): honor index on _const symbols
1182         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1183         * (dumppBlock): added pCode size estimation
1184         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1185           check for IS_SYMOP before OP_SYMBOL'ing
1186         * fixed indentation, compacted switch-statements
1187         * (allocReg): find free register and allocate it instead of
1188           allocating new registers all the time
1189         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1190           registers as its operands (necessary only for multibyte GETs)
1191
1192 2005-07-01 Raphael Neider <rneider AT web.de>
1193
1194         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1195           debugging .asm-output macros FENTRY + FEXIT
1196         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1197           way... I wonder...
1198         * (emitpComment): NEW, printf to pCode
1199         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1200           offset handling
1201         * (popGetAddr): NEW, variant of popGet to access an immediates
1202           high(er) bytes instead of the n'th byte of memory they reference,
1203           replaced popGet with popGetAddr where neccessary
1204         * (genDataPointerGet): reactivated and fixed implementation
1205         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1206           accesses
1207         * (genDataPointerSet): fixed multibyte assignments
1208         * (genpic14Code): fixed --i-code-in-asm handling
1209         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1210         * (genPlus): fixed index-out-of-bounds error
1211         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1212         * src/pic/ralloc.c: added debugging output macro FENTRY2
1213         * (spillThis): fixed indentation, enbraced for-body for clarity
1214         * (rematStr): commented out as now unused
1215         * (regTypeNum): commented out special spill case (overwrites
1216           arbitrary values)
1217         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1218
1219 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1220
1221         * doc/sdccman.lyx: documented sfr16/sfr32,
1222           added example for using storage class with function pointers
1223         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1224
1225 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1226
1227         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1228         * device/lib/_itoa.c,
1229         * device/lib/_ltoa.c: optimized codesize
1230         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1231           but don't know how to suppress the double warning.
1232         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1233         * support/Util/SDCCerr.c,
1234         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1235
1236 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1237
1238         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1239           fixed old K&R prototypes
1240         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1241         * device/lib/_gptrget.c,
1242         * device/lib/_gptrgetc.c,
1243         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1244           also new versions for small generic pointers and banked generic pointers
1245         * src/port.h: added const_name
1246         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1247         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1248         * src/SDCCcse.c (findPrevIc): check all associative operators
1249         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1250         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1251         * src/SDCCmem.c: updated comments,
1252           set far-space to 0 for pdata, results in optimized code
1253         * src/SDCCmem.h: added macro CONST_NAME
1254         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1255           moving the info into the highest bits, see also gptrget/gptrput
1256         * src/src.dsp: added sdcc.ico to project files
1257         * src/avr/gen.c (genCast): fixed bug 0x%d
1258         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1259         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1260           relation between ptr_type and DCL_TYPE,
1261           (genCast): fixed bug 0x%d
1262         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1263           (CODE)" for const_name
1264         * src/hc08/gen.c (genCast): fixed bug 0x%d
1265         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1266           (hc08_port): added "CONST (CODE)" for const_name
1267         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1268           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1269           between ptr_type and DCL_TYPE,
1270           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1271           operand* and took AOP() inside function so sfr-ness can be checked,
1272           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1273           new prototype,
1274           (genFunction, genEndFunction): optimized stack setup,
1275           (genMinus): optimized for literals with ending zeroes (in bytes),
1276           (genCast): fixed bug 0x%d
1277         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1278           (mcs51_port): added "CONST (CODE)" for const_name
1279         * src/mcs51/peeph.def: made rule 226 more generic
1280         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1281         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1282         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1283         * src/z80/main.c (z80_port): added NULL for const_name,
1284           (gbz80_port): added NULL for const_name
1285         * support/regression/tests/bug663539.c,
1286         * support/regression/tests/sfr16.c: new tests
1287
1288 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1289
1290         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1291
1292 2005-06-24 Raphael Neider <rneider AT web.de>
1293
1294         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1295           corrected typos...
1296         * device/include/pic16/signal.h: added USBIF
1297           and SIG_USB
1298
1299 2005-06-24 Raphael Neider <rneider AT web.de>
1300
1301         * device/lib/pic16/libdev/pic18f2455.c,
1302           device/include/pic16/pic18f2455.h: NEW
1303         * device/include/pic16/pic18fregs.h,
1304           device/lib/pic16/pics.all,
1305           src/pic16/device.c: added 18f2455
1306         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1307           device/include/pic16/{pic18f[68][567].h,usart.h}:
1308           replaced MULTIPLE_USARTS define with more relaible
1309           compatibility sfrs (for USART access)
1310
1311 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1312
1313         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1314           and the output asm file line is printed on two lines.
1315
1316 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1317
1318         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1319           BGT, BLE, BHI, and BLS instructions
1320         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1321           genCmpEq): removed
1322         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1323           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1324           fixes bug #1216342
1325         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1326
1327 2005-06-15 Raphael Neider <rneider AT web.de>
1328
1329         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1330         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1331         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1332           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1333           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1334
1335 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1336
1337         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1338           Marcel Telka in bug #1215704
1339
1340 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1341
1342         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1343           located in shared memory bank.
1344
1345 2005-05-31 Raphael Neider <rneider AT web.de>
1346
1347         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1348           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1349           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1350
1351 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1352
1353         * device/lib/_strncpy.c: fixed the fix
1354
1355 2005-05-26 Raphael Neider <rneider AT web.de>
1356
1357         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1358           initializers with \0, bug #1208187
1359         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1360           intializers with \0, bug #1208187
1361
1362 2005-05-26 Raphael Neider <rneider AT web.de>
1363
1364         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1365           initializers with \0, bug #1208187
1366         * src/pic16/main.c (_process_pragma): added sanity checks
1367           for stack position and size, emit warnings when appropriate
1368
1369 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1370
1371         * device/lib/_strncpy.c: fixed not filling with \0
1372
1373 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1374
1375         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1376           createFunction),
1377         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1378           compound_statement),
1379         * src/SDCCsymt.h,
1380         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1381
1382 2005-05-24 Raphael Neider <rneider AT web.de>
1383
1384         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1385
1386 2005-05-24 Raphael Neider <rneider AT web.de>
1387
1388         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1389           TRISE definitions, closes bug #1162453
1390
1391 2005-05-22 Raphael Neider <rneider AT web.de>
1392
1393         * src/pic16/main.c (_process_pragma): check for missing
1394           arguments to pragmas code and udata
1395         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1396           consistency fixes to match other headers (thanks to Jim Paris)
1397         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1398
1399 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1400
1401         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1402
1403 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1404
1405         * support/regression/tests/bug1198642.c: new test
1406         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1407         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1408         * support/scripts/resource.h,
1409         * support/scripts/resource.rc,
1410         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1411         * support/scripts/sdcc.ico: added 32x32 icon
1412
1413 2005-05-18 Raphael Neider <rneider AT web.de>
1414
1415         * device/lib/pic16/libdev/pic18f*.c,
1416         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1417           keywords to "__sfr" and "__at (X)"
1418         * device/include/pic16/pic18fregs.h: added pic18f4520
1419         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1420           #1203088 (MPLAB compatibility)
1421
1422 2005-05-17 Raphael Neider <rneider AT web.de>
1423
1424         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1425         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1426         * device/lib/pic16/pics.all: added new devices
1427         * src/pic16/device.c: added support for pic18f4520
1428
1429 2005-05-16 Raphael Neider <rneider AT web.de>
1430         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1431         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1432         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1433           convenience function for bit access
1434
1435 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1436
1437         * device/lib/printf_large.c: fixed bug 1193299
1438         * support/regression/tests/bug1057979.c: added test %3.3s
1439
1440 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1441
1442         * device/include/mcs51/8051.h,
1443         * device/include/mcs51/8052.h: made parseable with lint
1444         * device/include/mcs51/lint.h: added include file for (sp)lint
1445         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1446         * doc/cdbfileformat.lyx,
1447         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1448
1449 2005-05-14 Raphael Neider <rneider AT web.de>
1450
1451         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1452         * device/lib/pic16/libc/stdlib/itoa.c (new)
1453         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1454         * device/lib/pic16/libio/Makefile: exclude subdir according to
1455           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1456         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1457         * src/pic16/gen.c (genFunction): prevent annoying warning
1458         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1459           nameclashes on BeOS
1460         * support/cpp2/cppmain.c (cpp_output_string): new
1461         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1462           fixes bug 1116802
1463
1464 2005-05-13 Borut Razem <borut.razem AT siol.net>
1465
1466         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1467
1468 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1469
1470         * .version: changed to version 2.5.1; back to bleeding edge development
1471
1472 2005-05-11 Borut Razem <borut.razem AT siol.net>
1473
1474         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1475           generate PDF version 1.3 documents
1476
1477 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1478
1479         * .version: changed to version 2.5.0
1480
1481 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1482
1483         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1484
1485 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1486
1487         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1488         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1489         well as many smaller updates.
1490         * .version: changed to version 2.5.0-pre1
1491
1492 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1493
1494         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1495
1496 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1497
1498         * support/regression/tests/bug1185672.c: added
1499         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1500           bug 1185672
1501         * src/mcs51/gen.c (genCall): added comments, made it look safer
1502         * src/mcs51/gen.c (genEndFunction): simplified
1503
1504 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1505
1506         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1507
1508 2005-04-14 Borut Razem <borut.razem AT siol.net>
1509
1510         * fixed bug 1045046 - SIGSEGV with really simple code?:
1511           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1512           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1513
1514 2005-04-14 Borut Razem <borut.razem AT siol.net>
1515
1516         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1517           src/pic16/device.h: temporarily disabled experimental #inline pragma
1518           for 2.5.0 release
1519
1520 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1521
1522         * device/include/z80/stdio.h,
1523         * device/include/z80/string.h: removed these highly incomplete files so
1524           SDCC can use the default ones in device/include/
1525
1526 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1527
1528         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1529         gcc warning.
1530         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1531         fix sdcpp warnings.
1532
1533 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1534
1535         * device/include/malloc.h: removed redundant __reentrant prototypes
1536         * device/lib/_mullong.c: added working xstack variant in asm (C version
1537           doesn't pass regression tests)
1538         * device/lib/bpx.c: used __data and made bpx char for mcs51
1539         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1540           (createFunction): fixed bug with xstackPtr
1541         * src/SDCCcse.c: corrected comments
1542         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1543           (killDeadCode, eBBlockFromiCode): removed unused code
1544         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1545           corrected comments
1546         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1547           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1548           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1549           (genModOneByte): fixed warning in MSVC
1550         * src/mcs51/main.c (): added comments
1551         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1552
1553 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1554
1555         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1556
1557 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1558
1559         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1560
1561 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1562
1563         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1564         characters arrays of larger size than the declared one.
1565
1566 2005-04-10 Borut Razem <borut.razem AT siol.net>
1567
1568         * src/pic/gen.c (genInline),
1569           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1570           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1571           (findNextInstruction), (findPrevInstruction),
1572           (findInstructionUsingLabel),
1573           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1574         * src/pic/pcode.c (findLabel): added missing '\n'
1575         * src/src.dsp: added SDCCdwarf2.c to the project
1576
1577 2005-04-09 Borut Razem <borut.razem AT siol.net>
1578
1579         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1580
1581 2005-04-08 Raphael Neider <rneider AT web.de>
1582
1583         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1584           into the chain after a given one) and mergeDefmapSymbols (combine
1585           defmap entries for each symbol per pcode)
1586         * (createDefmap): have defmap entries merged in the end
1587         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1588           a symbol before replacing one access type's symbol, merge symbols in
1589           the end (replacement symbol might already have an entry)
1590         * (assignValnums): keep reference to written WREG intact
1591
1592 2005-04-08 Raphael Neider <rneider AT web.de>
1593
1594         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1595           Alpha)
1596
1597 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1598
1599         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1600         bytes
1601
1602 2005-04-07 Raphael Neider <rneider AT web.de>
1603
1604         * device/include/pic16/usart.h: added compatibility defines for
1605           devices with more than one USART
1606         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1607
1608 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * device/lib/Makefile.in: updated for port specific include
1611
1612 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1613
1614         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1615
1616 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1617
1618         * device/include/8051.h,
1619         * device/include/8052.h,
1620         * device/include/at89S8252.h,
1621         * device/include/at89c55.h,
1622         * device/include/at89x051.h,
1623         * device/include/at89x51.h,
1624         * device/include/at89x52.h,
1625         * device/include/mcs51reg.h,
1626         * device/include/reg51.h,
1627         * device/include/reg764.h,
1628         * device/include/regc515c.h,
1629         * device/include/sab80515.h: (re)moved these 12 files
1630         * device/include/mcs51/8051.h,
1631         * device/include/mcs51/8052.h,
1632         * device/include/mcs51/at89S8252.h,
1633         * device/include/mcs51/at89c55.h,
1634         * device/include/mcs51/at89x051.h,
1635         * device/include/mcs51/at89x51.h,
1636         * device/include/mcs51/at89x52.h,
1637         * device/include/mcs51/mcs51reg.h,
1638         * device/include/mcs51/reg51.h,
1639         * device/include/mcs51/reg764.h,
1640         * device/include/mcs51/regc515c.h,
1641         * device/include/mcs51/sab80515.h: and added them here
1642
1643 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1644
1645         * device/include/stdarg.h: changed SDCC specific keywords to double
1646           underlined form.
1647         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1648           mcs51 and ds390.
1649         * device/include/hc08/mc68hc908gp32.h,
1650         * device/include/hc08/mc68hc908jb8.h,
1651         * device/include/hc08/mc68hc908jkjl.h,
1652         * device/include/hc08/mc68hc908qy.h: fixed comments
1653         * device/include/mcs51/README: updated
1654         * device/include/mcs51/c8051f120.h: added PINRSF
1655         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1656         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1657           amidst code. Also inline is not supported.
1658
1659 2005-04-06 Raphael Neider <rneider AT web.de>
1660
1661         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1662         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1663           callers stack/frame pointers
1664
1665 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1666
1667         * device/include/pic16/usart.h: added, missing in previous commit,
1668         * device/include/pic16/adc.h: fixed typo,
1669         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1670         commit,
1671         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1672         <p18fxxx.inc>
1673         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1674         uninitialized because a bug appears with gplink
1675         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1676         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1677         complains for unrecognised option
1678
1679 2005-04-05 Raphael Neider <rneider AT web.de>
1680
1681         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1682           structs as well (using memcpy)
1683         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1684           on ISRs (GOTO has no label)
1685         * src/pic16/device.h: added OF_OPTIMIZE_DF
1686         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1687           new data flow analysis/optimization
1688         * src/pic16/pcode.c: added (prototypes for and implementation of)
1689           dataflow analysis functions, fixed pCodeInstructions' inCond and
1690           outCond values, made RCALL a branch instruction
1691         * (pic16_unlinkpCode): keep C line if possible
1692         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1693           C line moved if possible
1694         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1695         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1696           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1697         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1698           new flow)
1699         * (pic16_getJumptabpCode): NEW, needed in...
1700         * (LinkFlow): fixed handling of jumptables, calls and conditional
1701           branches
1702         * (pic16_InsertCommentAfter): NEW
1703         * (pic16_pCodeReplace): made verbose and flow preserving
1704         * (AnalyzeFlow): added call to data flow analysis
1705         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1706         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1707         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1708
1709 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1710
1711         * src/SDCCast.c (decorateType): fixed bug #1105626
1712
1713 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1714
1715         * device/include/asm/pic16/features.h,
1716         * pic18f*.h headers,
1717         * device/include/pic16/adc.h,
1718         * device/include/pic16/delay.h,
1719         * device/include/pic16/i2c.h,
1720         * device/include/pic16/malloc.h,
1721         * device/include/pic16/stdio.h,
1722         * device/include/pic16/stdlib.h,
1723         * device/include/pic16/string.h,
1724         * device/lib/pic16/libc/stdio/printf_tiny.c,
1725         * device/lib/pic16/libc/stdio/printf_small.c,
1726         * device/lib/pic16/libc/stdio/strmgpsim.c,
1727         * device/lib/pic16/libc/stdio/strmmssp.c,
1728         * device/lib/pic16/libc/stdio/strmusart.c,
1729         * device/lib/pic16/libc/stdio/vfprintf.c,
1730         * device/lib/pic16/libc/stdlib/ltoa.c,
1731         * device/lib/pic16/libc/stdlib/putchar.c,
1732         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1733         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1734         * device/lib/pic16/libc/stdlib/memchrram.c,
1735         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1736         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1737         * device/lib/pic16/libio/adc/adcbusy.c,
1738         * device/lib/pic16/libio/adc/adcread.c,
1739         * device/lib/pic16/libio/adc/adcsetch.c,
1740         * device/lib/pic16/libio/usart/ubaud.c,
1741         * device/lib/pic16/libio/usart/ubusy.c,
1742         * device/lib/pic16/libio/usart/udrdy.c,
1743         * device/lib/pic16/libio/usart/uopen.c,
1744         * device/lib/pic16/libio/usart/uputc.c,
1745         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1746         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1747         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1748         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1749         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1750         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1751         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1752         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1753         specific keywords to double underlined form,
1754         * device/lib/pic16/libc/Makefile.rules,
1755         * device/lib/pic16/libsdcc/Makefile.rules,
1756         * device/lib/pic16/libm/Makefile,
1757         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1758         to compile with C standard set in Makefile.common
1759         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1760         rand.c and crc.c in compilation process,
1761         * device/lib/pic16/libsdcc/int/divuint.c,
1762         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1763         `c' from signed to unsigned,
1764         * device/lib/pic16/startup/crt0.c,
1765         * device/lib/pic16/startup/crt0i.c,
1766         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1767         keywords to double underlined form, bug fixes in _do_cinit function
1768         which prevented the correct initialization of the .idata segment,
1769         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1770         core to enter a infinite loop
1771         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1772
1773 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1774
1775         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1776
1777 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1778
1779         * device/include/Makefile.in: add support for hc08 subdirectory
1780         * device/include/hc08/: new subdirectory
1781         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1782         Lucas Loizaga, thanks!
1783         * device/include/hc08/mc68hc908qy.h,
1784         * device/include/hc08/mc68hc908gp32.h,
1785         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1786         their own directory. Changed internal macro names to use the compiler
1787         reserved namespace. Changed SDCC specific keywords to double
1788         underlined form.
1789         * device/include/math.h,
1790         * device/include/malloc.h,
1791         * device/include/stdarg.h,
1792         * device/include/stdbool.h
1793         * device/include/string.h,
1794         * device/include/tinibios.h,
1795         * device/include/ds400rom.h,
1796         * device/include/8051.h,
1797         * device/include/8052.h,
1798         * device/include/80c51xa.h,
1799         * device/include/at89c55.h,
1800         * device/include/at89S8252.h,
1801         * device/include/at89x51.h,
1802         * device/include/at89x52.h,
1803         * device/include/ds80c390.h,
1804         * device/include/reg764.h,
1805         * device/include/regc515c.h,
1806         * device/include/sab80515.h,
1807         * device/include/mcs51/c8051f000.h,
1808         * device/include/mcs51/c8051f018.h,
1809         * device/include/mcs51/c8051f020.h,
1810         * device/include/mcs51/c8051f040.h,
1811         * device/include/mcs51/c8051f060.h,
1812         * device/include/mcs51/c8051f120.h,
1813         * device/include/mcs51/c8051f300.h,
1814         * device/include/mcs51/c8051f310.h,
1815         * device/include/mcs51/c8051f320.h,
1816         * device/include/mcs51/c8051f330.h,
1817         * device/include/mcs51/c8051f350.h,
1818         * device/include/z180.h: Changed SDCC specific keywords to double
1819         underlined form.
1820
1821 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1822
1823         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1824         18F4455,
1825         * (pic16_assignConfigWordValue): disable testing of configuration
1826         register value with config mask,
1827         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1828         function with port->fun_prefix,
1829         * (genFunction): when generating a naked interrupt function never
1830         create an absolute segment placed in interrupt vector address, place
1831         the actual interrupt function at IVA instead, when an interrupt
1832         function is generated with unspecified interrupt then do not create
1833         the absolute section,
1834         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1835         code for generating a call to generic pointer get/put function with
1836         a call to function pic16_callGenericPointer(),
1837         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1838         the call to the generic pointer get/put functions with prefixing the
1839         function name with port->fun_prefix,
1840         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1841         * src/pic16/main.c (_process_pragma): prefix function with
1842         port->fun_prefix,
1843         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1844         calling assembler, old 18Fxxxx macro is deprecated,
1845         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1846         PC_ASMDIR in while condition,
1847         * (findInstruction): add PC_ASMDIR in while condition,
1848         * (buildCallTree): prefix main with port->fun_prefix,
1849         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1850         identifier for variable with banked access in instructions BTFSS,
1851         BTFSC, BCF, BSF, BTG
1852         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1853         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1854         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1855         perform optimization when enviroment variable NO_REG_OPT is set,
1856         * (insideLRBlock): NEW, return 1 if register is inside an
1857         INF_LOCALREGS block,
1858         * (RemoveRegFromLRBlock): remove a register that is completely
1859         eliminated by register optimization, but it is still left in local
1860         register store/restore in/from stack block,
1861         * (Remove2pcodes): after removing register, check to see if it
1862         should be removed from local register store/restore in/from stack
1863         block,
1864         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1865         DUMMY_READ_VOLATILE,
1866
1867         * device/include/pic16/adc.h: minor prototype modifications and
1868         update,
1869         * device/include/pic16/malloc.h: added GPL notice various
1870         modifications,
1871         * device/include/pic16/stdint.h: NEW, standard header for ints
1872         * device/include/pic16/delay.h: NEW, header for delay functions,
1873         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1874         delay1mtcy,
1875         * device/include/pic16/signal.h: NEW, header providing helper macros
1876         for implementing signal handlers,
1877         * device/include/pic16/stdio.h: added prototypes for functions,
1878         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1879         prototypes for stdin and stdout, added macro PUTCHAR to
1880         automatically implement putchar function prototype,
1881         * device/include/pic16/usart.h: modified and updated USART library,
1882         * device/lib/pic16/libio/adc/,
1883         * device/lib/pic16/libio/i2c: some modifications to improve library
1884         performance,
1885         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1886         family of functions,
1887         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1888         family of functions and other sources,
1889         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1890         of the PIC18Fxx[28] devices,
1891         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1892         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1893         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1894         _do_cinit function, because the previous failed when local variables
1895         where not placed in the same memory bank,
1896         * device/lib/pic16/libsdcc/char/: various modifications to improve
1897         library performance,
1898         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1899         information on the new functions of the c library and more...
1900
1901 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1902
1903         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1904
1905 2005-03-26 Raphael Neider <rneider AT web.de>
1906
1907         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1908           if condition == CARRY)
1909         * (genCmp): adapted to new genSkipc semantics
1910         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1911           on rIfx (genCmp was broken)
1912
1913 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1914
1915         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1916         * src/z80/main.c (_keywords[]),
1917         * src/SDCCglobal.h (struct options),
1918         * src/SDCC.y,
1919         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1920         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1921         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1922         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1923         always available in leading double underscore form. The C99 support is
1924         mostly missing, but it's a start.
1925         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1926         reserved identifier "__data".
1927
1928 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1929
1930         * src/mcs51/peeph.def: fixed bug 1170013
1931
1932 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * device/include/mcs51reg.h: fixed bug 842007
1935
1936 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1937
1938         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1939         last time.
1940
1941 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1942
1943         * src/port.h (struct PORT),
1944         * src/avr/ralloc.c (avr_assignRegisters),
1945         * src/avr/main.c,
1946         * src/ds390/ralloc.c (ds390_assignRegisters),
1947         * src/ds390/main.c,
1948         * src/hc08/ralloc.c (hc08_assignRegisters),
1949         * src/hc08/main.c,
1950         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1951         * src/mcs51/main.c,
1952         * src/pic/ralloc.c (pic14_assignRegisters),
1953         * src/pic/main.c,
1954         * src/pic16/ralloc.c (pic16_assignRegisters),
1955         * src/pic16/main.c,
1956         * src/xa51/ralloc.c (xa51_assignRegisters),
1957         * src/xa51/main.c,
1958         * src/z80/ralloc.c (z80_assignRegisters),
1959         * src/z80/ralloc.h,
1960         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1961         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1962         * src/SDCCcse.h,
1963         * src/SDCCdflow.c (computeDataFlow),
1964         * src/SDCCdflow.h,
1965         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1966         * src/SDCCloop.h,
1967         * src/SDCCcflow.c (*),
1968         * src/SDCCcflow.h,
1969         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1970         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1971         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1972         immedDom() returning wrong block; probably fixes bug #1160833)
1973
1974 2005-03-20 Borut Razem <borut.razem AT siol.net>
1975
1976         * support/scripts/inc2h.pl: WIN32 port
1977
1978 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1979
1980         * device/lib/makefile.in: added abs.c and labs.c
1981
1982 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1983
1984         * device/include/stdint.h: added
1985         * device/lib/abs.c: added
1986         * device/lib/labs.c: added
1987         * device/include/stdlib.h: added abs() and labs() prototypes
1988         * device/lib/libsdcc.lib: added abs and labs
1989         * device/include/float.h,
1990         * device/lib/_fsmul.c,
1991         * device/lib/printf_fast.c,
1992         * device/lib/printf_tiny.c: updated comments
1993
1994 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1995
1996         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1997         bug #1164313
1998
1999 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2000
2001         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2002         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2003
2004 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2005
2006         * device/lib/printf_large.c: removed inline assembly for portability and
2007           readability. Use printf_fast if speed or size are more important.
2008         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2009         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2010
2011 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2012
2013         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2014         prevent compiler warning
2015
2016 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2017
2018         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2019         moved to level 0 and declared as static. Also they are explicit
2020         placed in access bank. This was necessery because some times they
2021         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2022         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2023         optimizations. Currently only compare to unsigned char is implemented,
2024         * src/pic16/gen.c: added fReturnIdx array,
2025         * (struct resolvedIfx) is moved to gen.h and made public,
2026         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2027         * (aopForSym): added an optimization to directly store in stack of
2028         the operand of a SEND iCode,
2029         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2030         but as registers instead (AOP_REG) using the fReturnIdx array,
2031         * (pic16_freeAsmop): remove the freed register from the
2032         _G.sregsAlloc field,
2033         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2034         a compare of 'WREG',
2035         * (pic16_popGetTempRegCond): changed function prototype, now
2036         function takes also a bitVector argument v which holds the current
2037         set of registers that are allocated for stack access by aopForSym,
2038         registers allocated in aopForSym for accessing stack symbols are not
2039         any more part of the functions usedRegs field,
2040         * (genCall): some times aopOp is called for a stack variable to be
2041         send, aopForSym might perform the push, if this is true make sure
2042         that genCall doesn't push the variable twice by testing _G.resDirect,
2043         * (genFunction): changed testing for unspecified interrupt number
2044         from 256 to INTNO_UNSPEC,
2045         * modified selection scheme of frame pointer generation. Previously
2046         if function did use local registers a frame pointer was generated,
2047         now a frame pointer is generated only if function has arguments
2048         (that need PLUSW2 register access), or has stack arguments, or the
2049         compiler is not instructed to omit the frame pointer,
2050         * (genEndFunction): before restoring local registers that were saved
2051         in the function preamble, also restore the registers that *might*
2052         have been allocated for stack access,
2053         * (genRet): removed some old comments,
2054         * (genCmp, the active (RN's) version): added a call to the
2055         pic16_genCmp_special function to perform the compare with a more
2056         robust and optimized way,
2057         * (genInline): a feature has been added in inline code generation,
2058         which allows a wildcard variable substitution when writing inline
2059         assembly. Code is incomplete and experimental therefore undocumented,
2060         * (genCast): changed order of aopOp for result and right to allow
2061         aopForSym to directly load the result if possible,
2062         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2063         perform an optimized compare on some selected special occasions,
2064         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2065         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2066         generate an IVT any more,
2067         * src/pic16/main.c (pic16_optionsTable): added command line option
2068         --optimize-cmp,
2069         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2070         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2071         macros,
2072         * src/pic16/NOTES: Raphael Neider added in list of active developers
2073         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2074         jumptable_end to prevent bug #,
2075         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2076         inCond and outCond fields,
2077         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2078         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2079         turn off register spilling,
2080         * (packRegsForOneUse): synced with other ports' versions although it
2081         is not used currently,
2082         * (pic16_packRegisters): added an optimization while reading
2083         structure bitfields, some registers may be saved (malloc code is
2084         decreased by 80 bytes)
2085
2086 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2087
2088         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2089         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2090         this can be optimized more?
2091
2092 2005-03-10 Raphael Neider <rneider AT web.de>
2093
2094         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2095           genNearPointerGet): (hopefully) fixed access to bitfields via
2096           pointers (p->bitN = x; and x = p->bitN; failed)
2097
2098 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2099
2100         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2101
2102 2005-03-09 Raphael Neider <rneider AT web.de>
2103
2104         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2105
2106 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2107
2108         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2109         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2110           (regTypeNum): set REG_BIT type if necessary
2111         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2112         * support/regression/tests/critical.c: check bug 1144613
2113
2114 2005-03-02 Raphael Neider <rneider AT web.de>
2115
2116         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2117
2118 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2119
2120         * src/avr/ralloc.c (serialRegAssign),
2121         * src/ds390/ralloc.c (serialRegAssign),
2122         * src/hc08/ralloc.c (serialRegAssign),
2123         * src/mcs51/ralloc.c (serialRegAssign),
2124         * src/pic/ralloc.c (serialRegAssign),
2125         * src/pic16/ralloc.c (serialRegAssign),
2126         * src/xa51/ralloc.c (serialRegAssign),
2127         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2128
2129 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2130
2131         * src/SDCCast.c (decorateType): fixed bug 1124787
2132
2133 2005-02-20 Hubert Sack <sack AT digiplan.de>
2134         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2135
2136         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2137         patch #1121755
2138
2139 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2140
2141         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2142         to keep the correct label reference count when adding/removing references
2143         to labels. A peephole file using this is appended to patch #1144962.
2144
2145 2005-02-14 Raphael Neider <rneider AT web.de>
2146
2147         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2148         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2149         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2150           retrievals of result operand's value on assignment
2151
2152 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2153
2154         * device/include/pic16/string.h: modified prototype for memccpy()
2155         to memccpy(void *, void *, char, size_t)
2156         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2157         check whether to omit frame pointer or not,
2158         * (genInline): convert all occurences of "\n" to LF in inline
2159         assembler blocks, this helps formatting the inline text,
2160         * (pic16_loadFSR0): modified prototype,
2161         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2162         removed some 8051 legacy code,
2163         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2164         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2165         before allocating temporary registers in functions,
2166
2167 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2168
2169         * support/regression/tests/bitvars.c: corrected the "fix"
2170
2171 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2172
2173         * support/regression/tests/bitvars.c,
2174         * support/regression/tests/bitwise.c,
2175         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2176
2177 2005-02-10 Raphael Neider <rneider AT web.de>
2178
2179         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2180           different size for Alpha
2181         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2182
2183 2005-02-09 Raphael Neider <rneider AT web.de>
2184
2185         * src/SDCC.lex(doPragma) : save and restore warning options as well
2186           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2187         * have #pragma less_pedantic set the errorlevel to WARNING
2188           (fixes #1117001)
2189         * (cloneOptimize) : fixed wrong malloc's size
2190         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2191           facilitate correct handling of #pragma (save|restore)
2192
2193 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2194
2195         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2196
2197 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2198
2199         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2200
2201 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2202
2203         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2204
2205 2005-02-02 Raphael Neider <rneider AT web.de>
2206
2207         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2208         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2209         * (pic16_storeForReturn): fixed to allow returning function pointers
2210         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2211         * device/include/pic16/{stddef.h,stdbool.h}: added
2212
2213 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2214
2215         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2216
2217 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2218
2219         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2220         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2221          appeared to be required
2222
2223 2005-01-31 Borut Razem <borut.razem AT siol.net>
2224
2225         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2226           include/mcs51 and include/z80 directories to the package
2227
2228 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2229
2230         * src/hc08/gen.c (genFunction): fixed bug #1112752
2231
2232 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2233
2234         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2235
2236 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2237
2238         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2239
2240 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2241
2242         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2243
2244 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2245
2246         * device/include/c8051fxxx.h: removed these 6 files
2247         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2248
2249 2005-01-26 Raphael Neider <rneider AT web.de>
2250
2251         * src/pic16/gen.c (genAssign): fixed assignment from longs
2252           in codespace (were cut to three bytes)
2253         * (genDummyRead): implemented (except for CODESPACE...),
2254           fixed bug #1108575
2255         * src/pic16/glue.c (emitStatistics): beautified
2256         * device/lib/pic16/libm/Makefile: added include path
2257
2258 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2259
2260         * src/z80/gen.c (aopPut): fixed bug #1103902
2261
2262 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2263
2264         * device/lib/expf.c: fixed bug #1095792
2265
2266 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2267
2268         * device/lib/pic16/libm: added Math library sources
2269
2270 2005-01-24 Raphael Neider <rneider AT web.de>
2271
2272         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2273           to enable upcast to pCodeOpReg2 (there is no type tag to
2274           differenciate the two and pic16_popGet2p cast into PCOR2)
2275         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2276           (sizeof(sectNames) changed to sizeof(sectName))
2277           Both patches fix segfaults under MinGW.
2278
2279 2005-01-23 Raphael Neider <rneider AT web.de>
2280
2281         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2282           Safe_[mc]?alloc()'ed variables
2283         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2284           of (byte sized) temporaries (assign them to WREG for now)
2285         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2286           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2287           this might fix SIGSEGVs on MinGW...
2288         * src/SDCCopt.c (killDeadCode): restored original behaviour
2289           (volatile operands might get thrown away though)
2290
2291 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2292
2293         * src/pic16/gen.c: fixed bug #1106975,
2294         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2295         pointer update, INTCON is saved, global interrupts are disabled and
2296         restored after updateing TOS.
2297         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2298         * added function attribute 'shadowregs' to take advantage of shadow
2299         registers,
2300         * added function attribute 'wparam' as an alternative to the wparam
2301         pragma,
2302         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2303         user declares a non-ISR function as 'shadowregs',
2304         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2305
2306 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2307
2308         * .version: bumped version number to 2.4.8
2309         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2310         pic16 port,
2311         * device/lib/pic16/libio/i2c/: I2C module support library,
2312         * device/include/pic16/i2c.h: I2C support library header,
2313         * device/lib/pic16/libc/stdio/: standard IO support sources,
2314         * (printf_small.c): printf_small() source, supports float print,
2315         * (printf_tiny.c): printf_tiny() source, does not support floats,
2316         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2317         enable global optimizations for entire library source, other
2318         Makefiles in the source tree are also modified to reflect this,
2319         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2320         function,
2321         * doc/sdccman.lyx: updated to reflect new changes,
2322         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2323         sym->onStack if-case,
2324         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2325         sbit, idata, _idata, xdata, _xdata,
2326         * added pragma library, to link an external library, (see doc),
2327         * removed command line options, --pomit-config-words, --pomit-ivt,
2328         --pleave-reset-vector,
2329         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2330         when calling assembler to reflect memory model used, also define
2331         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2332         reflect stack model used,
2333         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2334         on stack return NULL,
2335
2336 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2337
2338         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2339           of the operands is volatile. Fixes #1020220
2340
2341 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2342
2343         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2344         * (OptimizeRegUsage): make sure that there is really no other flow where
2345           the first pCode is used
2346
2347 2005-01-22 Raphael Neider <rneider AT web.de>
2348
2349         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2350           to fix #1106967 (pCode->seq are not set up correctly)
2351
2352 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2353
2354         * src/SDCCglue.c (glue): make sure code area is declared before the
2355         static initialization area.
2356
2357 2005-01-21 Raphael Neider <rneider AT web.de>
2358
2359         * device/lib/Makefile.in: fixed test for pic16 install dir
2360         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2361           optimizations
2362         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2363           added --optimize-goto compiler switch and pragma wparam documentation
2364         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2365         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2366           and PRODH closing bug #1071770 (peephole optimizer)
2367
2368 2005-01-19 Raphael Neider <rneider AT web.de>
2369
2370         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2371           cmdLine buffers (used when calling sdcpp...) are large enough
2372           (MAX_PATH=256 truncates arguments leading to system halts when
2373           used in MinGW...)
2374         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2375         * (genUminus): rewritten to for efficiency
2376         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2377           used uninitialized in some cases)
2378         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2379           copy the third byte from the int -- now assumes 0x80 (data memory)
2380         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2381           operands (genAddLit expects the iCode's operands to swapped as
2382           well), fixed leftover bytes (crashed for short left operands)
2383         * (pic16_genMinusDec): performance improvements, removed false
2384           PIC14 emitSKPNCs
2385         * (pic16_genMinus): fixed to cope with differently sized operands
2386         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2387           for --obanksel > 1
2388         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2389         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2390           new banksel optimization
2391         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2392           analysis for temporary registers (segfaults...)
2393         * src/pic16/peeph.def: added rule
2394
2395 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2396
2397         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2398         which converts a float number to its ASCII representation
2399         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2400         functions to convert the fractional and integer part of a float to ASCII,
2401         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2402         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2403         ram
2404         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2405         _STATMEM macros,
2406         * device/include/pic16/adc.h: added GPL info,
2407         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2408         a pCodeOp as tested operand,
2409         * (genNearPointerGet): optimized bit testing, does not use
2410         intermediate register for bit value, test directly instead with
2411         BTFSS, BTFSC, works only for single bits,
2412         * (genpic16Code): dump the name of the iCode in the asm,
2413         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2414         renamed to pic16_decodeOp,
2415         * (serialRegAssign): do not allocate a temporary register for iCode
2416         sequences that test a single bit for 1/0
2417
2418 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2419
2420         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2421         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2422         access stack and frame pointers. They are initially assigned to
2423         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2424         accessing SFRs. Updated all occurences of modification of stack or
2425         frame pointer in gen.c and pcode.c,
2426         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2427         assigning of a literal value to pointers,
2428         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2429         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2430         selected
2431
2432 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2433
2434         * doc/sdccman.lyx: update documentation about stack pragma, added
2435         some info for stack memory models
2436
2437 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2438
2439         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2440
2441 2005-01-08 Raphael Neider <rneider AT web.de>
2442
2443         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2444           udata sections to fix bug #1097823
2445
2446 2005-01-05 Raphael Neider <rneider AT web.de>
2447
2448         * src/pic16/gen.c (genGenericShift): added handling of differently
2449           sized left operand and result
2450
2451 2005-01-04 Raphael Neider <rneider AT web.de>
2452
2453         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2454         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2455           to hold the condition bit)
2456         * added new version of genCmp (old code available via #define)
2457         * added new version of genShiftLeft/genShiftRight in a generic
2458           way, now supports shifting by negative values
2459         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2460           shiftCount (expected by genGenericShift)
2461         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2462         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2463           dump
2464         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2465           is an invalid literal too...)
2466
2467 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2468
2469         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2470         from Raphael Neider,
2471         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2472         for 8-bit literals. This fixes some literal operands which are sign
2473         extended to 16-bits ints when instruction needs only 8-bits.
2474
2475 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2476
2477         * device/lib/logf.c: added mcs51 assembly version
2478         * device/lib/expf.c: added mcs51 assembly version
2479         * device/lib/_logexpf.c: new shared asm code for expf and logf
2480         * device/include/math.h: add defines for assembly math library
2481         * device/lib/Makefile.in: build new _logexpf.c
2482         * device/lib/libfloat.lib: use new _logexpf.c
2483
2484 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2485
2486         * src/pic/device.c
2487         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2488           device types which have less than 0x7f registers.
2489
2490 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2491
2492         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2493
2494 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2495
2496         * device/lib/printf_fast.c: only build on supported arch.
2497         * device/lib/printf_tiny.c: only build on supported arch.
2498         * device/lib/printf_fast_f.c: only build if asm float lib
2499         * device/lib/_fsget1arg.c: only build if asm float lib
2500         * device/lib/_fsget2args.c: only build if asm float lib
2501         * device/lib/_fsnormalize.c: only build if asm float lib
2502         * device/lib/_fsreturnval.c: only build if asm float lib
2503         * device/lib/_fsrshift.c: only build if asm float lib
2504         * device/lib/_fsswapargs.c: only build if asm float lib
2505         * device/include/stdio.h: don't provide print_fast,
2506           print_fast_f, print_tiny prototypes if --xstack used
2507
2508 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2509
2510         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2511         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2512           to the SOURCES
2513
2514 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2515
2516         * device/lib/printf_fast_f.c: same as printf_fast, but
2517           with floating point enabled
2518         * device/lib/printf_fast.c: minor tweaks
2519         * device/include/stdio.h: add printf_fast_f
2520
2521 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2522
2523         * src/SDCCmain.c: make --float-reent default for mcs51
2524         * device/lib/_fsadd.c: added mcs51 assembly version
2525         * device/lib/_fssub.c: added mcs51 assembly version
2526         * device/lib/_fsmul.c: added mcs51 assembly version
2527         * device/lib/_fsdiv.c: added mcs51 assembly version
2528         * device/lib/_fseq.c: added mcs51 assembly version
2529         * device/lib/_fsneq.c: added mcs51 assembly version
2530         * device/lib/_fsgt.c: added mcs51 assembly version
2531         * device/lib/_fslt.c: added mcs51 assembly version
2532         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2533         * device/lib/Makefile.in: add _fscmp to build
2534         * device/lib/libfloat.lib: add _fscmp to build
2535
2536 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2537
2538         * device/lib/_fs2slong.c: added mcs51 assembly version
2539         * device/lib/_fs2sint.c: added mcs51 assembly version
2540         * device/lib/_fs2schar.c: added mcs51 assembly version
2541         * device/lib/_fs2ulong.c: added mcs51 assembly version
2542         * device/lib/_fs2uint.c: added mcs51 assembly version
2543         * device/lib/_fs2uchar.c: added mcs51 assembly version
2544         * device/lib/_slong2fs.c: added mcs51 assembly version
2545         * device/lib/_sint2fs.c: added mcs51 assembly version
2546         * device/lib/_schar2fs.c: added mcs51 assembly version
2547         * device/lib/_ulong2fs.c: added mcs51 assembly version
2548         * device/lib/_uint2fs.c: added mcs51 assembly version
2549         * device/lib/_uchar2fs.c: added mcs51 assembly version
2550         * device/include/float.h: added #define to select asm vs c
2551
2552 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2553
2554         * device/lib/printf_fast.c: improvements to float output
2555         * device/include/float.h: add defines for assembly float library
2556         * device/lib/_fsget1arg.c: receive 1 float arg
2557         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2558         * device/lib/_fsnormalize.c: normalize a float
2559         * device/lib/_fsreturnval.c: return float, various helper routines
2560         * device/lib/_fsrshift.c: right shift a float's mantissa
2561         * device/lib/_fsswapargs.c: swap 2 floats
2562         * device/lib/Makefile.in: build these 6 new files for mcs51
2563         * device/lib/libfloat.lib: add these 6 files to the library
2564
2565 2004-12-26 Borut Razem <borut.razem AT siol.net>
2566
2567         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2568           built by gcc 3.4.2
2569
2570 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2571
2572         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2573           and fully reentrant and register bank neutral.
2574         * device/lib/printf_fast.c: added float (not enabled by default),
2575           added compact/slower integer (also not enabled by default),
2576           improved size/speed of fast integer code, other minor changes
2577         * device/include/stdio.h, device/lib/Makefile.in,
2578           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2579
2580 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2581
2582         * src/pic16/pcode.c: declaring variables other than at the start of a
2583           block is not supported in C by VC6.
2584
2585 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2586
2587         * applied a previous patch from Raphael Neider that wasn't included
2588         in the previous commits, which fixes infinite loops within jumptable
2589         improvements,
2590         * made some fixes that previous patches introduced
2591
2592 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2593
2594         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2595         that fixes an issue with AOP_PCODE asmop's offset,
2596         * (pic16_popCopyReg): update instance field too,
2597         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2598         function of pic port,
2599         * (genCmp, genAnd, genAssign),
2600         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2601
2602 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2603
2604         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2605         variables initial values to idata section,
2606         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2607         variables in some functions. This utilizes parmBytes field of iCode
2608         structure to hold the offset of the variable in stack. (might be
2609         able to use the stack field too?)
2610         * applied patch from Raphael Neider # ### , # ###
2611         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2612         variable initial values in idata section,
2613         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2614         for static variables with initial value
2615         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2616         applied fix in while loop from Raphael Neider.
2617
2618 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2619
2620         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2621         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2622         * src/ds390/ralloc.c (serialRegAssign): spill bits
2623         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2624         * support/Util/SDCCerr.c,
2625         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2626         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2627         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2628
2629 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2630
2631         * device/include/sdcc-lib.h: inserted LGPL, added includes
2632           asm/ds390/features.h and asm/mcs51/features.h
2633         * device/include/asm/default/features.h,
2634         * device/include/asm/gbz80/features.h,
2635         * device/include/asm/z80/features.h: added empty _AUTOMEM
2636           and _STATMEM
2637         * device/include/asm/ds390/features.h,
2638         * device/include/asm/mcs51/features.h: added files with defines for
2639           _AUTOMEM and _STATMEM indicating automatic and static storage class
2640         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2641         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2642         * src/SDCCicode.c (geniCodeCast),
2643         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2644         * src/SDCCloop.c (loopInduction): removed unused variable lr
2645         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2646           to convertToFcall to include char modulo (RFE 1065037), added check
2647           if left operand is unsigned and use abs of literal value
2648         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2649           as it doesn't work after conversion from peephole.def to peephole.rul
2650         * src/mcs51/gen.c (toBoolean): added check for size,
2651           (genModOneByte): optimized code for signed char modulo a literal
2652           power of 2 (thanks to Hubert Sack),
2653           (genRRC): removed unnecessary "clr c",
2654           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2655         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2656           jump optimization,
2657           swapped rules 256.c and 256.d,
2658           extended 256.d by using new multiple checks (thanks Erik),
2659           added rules 256.e and 256.f,
2660           updated rule 261.a and 261.b to new generated code
2661         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2662
2663 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2664
2665         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2666           induction related bugs, including first part of bug #1074377
2667
2668 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2669
2670         * applied patch from bug-report #1076292,
2671         * applied patches for genAnd and Goto-optimizations for Raphael
2672         Neider,
2673         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2674         dump a less iCode information,
2675         * src/pic16/device.h (pic16_options_t): added field debgen,
2676         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2677         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2678         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2679         puclic,
2680         * (various functions): added macros FENTRY and FENTRY2 to functions,
2681         to emit function prologue,
2682         * (various functions): fixed indentation,
2683         * (genNearPointerGet): fixed loading of FSR0,
2684         * (genPackBits): applied patch from Raphael Neider to fix updating
2685         of FSR0 and touching only the modified bits,
2686         * src/pic16/genarith.c (various functions): added macros FENTRY to
2687         emit function prologue in comments,
2688         * src/pic16/pcode.h: added functions debugf2, debugf3,
2689         * src/pic16/ralloc.c: partial fix for packForPush caused
2690         segmentation fault,
2691
2692 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2693
2694         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2695           <stsp AT users.sourceforge.net> with reversed byte order
2696         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2697
2698 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2699
2700         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2701           bug #1074377
2702         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2703         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2704
2705 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2706
2707         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2708
2709 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2710
2711         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2712           conditions,
2713           (setFromConditionArgs): friendly operand parser for peephole rules,
2714           (operandBaseName, operandsNotRelated): new peephole condition
2715           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2716           architecture specific register naming into account, handles n-way
2717           comparisons, and supports quoted literals
2718         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2719
2720 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2721
2722         * src/mcs51/peeph.def: fixed bug #1076940
2723
2724 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2725
2726         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2727
2728 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2729
2730         Adding support for replacing ljmps with sjmps in jumptables
2731         generated for switch statements. For now you need to set the
2732         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2733         Now 4 algorithms for mcs51 jumptable generation are used:
2734         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2735         addresses loaded pc-relative for up to 112 cases and stack-pushing
2736         target addresses loaded with offset from dptr for up to 256 cases.
2737
2738         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2739         * src/mcs51/main.c: adapted constants for switch table generation
2740         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2741
2742 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2743
2744         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2745         * support/regression/tests/bug1057979.c: added test for bug 1073386
2746
2747 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2748
2749         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2750         compilers
2751
2752 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2753
2754         * src/pic16/device.h,
2755         * src/pic16/genarith.c,
2756         * src/pic16/glue.c,
2757         * src/pic16/main.c,
2758         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2759
2760 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2761
2762         Large cummulative patch for pic16 port.
2763         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2764         to call when a stack overflow occurs,
2765         * (malloc.h): added CVS Id tag,
2766         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2767         variable,
2768         * added libc directory. The current version of LibC contains string
2769         functions, ctype functions and macros and some functions of the
2770         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2771         be extensively tested in the future. Standard disclaimer here.
2772         Library is not automatically build yet. But one can build it by
2773         invoking 'make' inside the libc directory.
2774         * added ADC library under libio. Preliminary version yet.
2775
2776         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2777         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2778         aopForRemat() now and not by pic16_aopOp(),
2779         * (pic16_popGetTempReg): removed warning messgae when allocating
2780         temporary registers, its a buggy feature and will be removed,
2781         * (pic16_popGet): set register instance field in AOP_CRY,
2782         * (pic16_outBitC): fixed for results in size greater than 1,
2783         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2784         * (pic16_storeForReturn): optimized return of 0,
2785         * (genCmp): experimental code for new genCmp which uses PIC18's
2786         special compare&skip instructions. Initial tests fail some times
2787         with variables grater than 1 byte in size, so new code is disabled,
2788         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2789         a single bit,
2790         * (genCast): began a fix to optimize the casting of a bit to another
2791         bit, now assigning a bitfield to another bitfield will fail, sorry,
2792         * src/pic16/main.c: disabled the use of lr-support feature,
2793         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2794         * added some function prototypes, added function _debugf prototype,
2795         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2796         bits with offset (case PO_GPR_BIT),
2797         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2798         command line,
2799         * (isBankInstruction): modified to return 0 for no banking instruction,
2800         and 1 for banking instruction,
2801         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2802         caused stop processing pCodes after a inline assembly block,
2803         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2804         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2805         registers when it shouldn't,
2806         * src/pic16/ralloc.c (allocReg): add preliminary support for
2807         supporting a limited set of temporary registers,
2808
2809 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2810
2811         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2812           genDataPointerSet): ensure assignments always copy in MSB to LSB
2813           order,
2814           (loadRegFromAop): recognize CLRH optimization,
2815           (genFunction): optimize RECEIVE iCodes in reentrant functions
2816
2817 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2818
2819         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2820           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2821           selected.
2822         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2823         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2824           contiguous with data
2825
2826 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2827
2828         * device/lib/_gptrget.c (_gptrget),
2829         * device/lib/_gptrgetc.c (_gptrgetc),
2830         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2831           instead of sjmp to ret
2832         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2833           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2834
2835 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2836
2837         * .version: bumped version to 2.4.7
2838         * device/lib/_gptrget.c (_gptrget): is now _naked
2839         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2840         * device/lib/_gptrput.c (_gptrput): is now _naked
2841         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2842           (createFunction): fixed xstack
2843         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2844         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2845           or bit either,
2846           (geniCodeCritical): store original interrupt state in an iTemp bit
2847           var unless stack-auto
2848         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2849         * src/SDCCmain.c (setIncludePath): added include/target to search path
2850         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2851         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2852           prototype,
2853           (processFuncArgs): put bit vars in bit area
2854         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2855           unsaveRBank): fixed xstack,
2856           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2857           (genFunction, genEndFunction): fixed xstack,
2858           (genAssign): optimization don't walk backwards through mem
2859         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2860         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2861         * support/regression/Makefile: also make library (for stack-auto) when
2862           making "all" and added "test-mcs51-xstack-auto"
2863         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2864         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2865         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2866         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2867         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2868           make-library by MAKE_LIBRARY
2869         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2870           regression tests for xstack
2871         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2872         * support/regression/tests/critical.c: test for critical on mcs51
2873
2874 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2875
2876         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2877           built version of sdcc instead of installed version
2878
2879 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2880
2881         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2882         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2883           vprintf.c now
2884         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2885         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2886           WARNING: remove device/lib/build/z80/printf.o by hand when
2887           updating from previous build!
2888         * device/lib/z80/printf.c: updated comment
2889         * support/regression/tests/bug1057979.c: test all ports now
2890         * support/regression/tests/bug1065458.c: file added
2891
2892 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2893
2894         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2895           *_start and *_end symbols for static functions
2896
2897 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2898
2899         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2900           and search crt0.o in all library paths,
2901           (setIncludePath): proper handling of --nostdinc,
2902           (setLibPath): proper handling of --nostdlib
2903         * support/regression/Makefile,
2904         * support/regression/ports/ds390/spec.mk,
2905         * support/regression/ports/gbz80/spec.mk,
2906         * support/regression/ports/hc08/spec.mk,
2907         * support/regression/ports/mcs51/spec.mk,
2908         * support/regression/ports/mcs51-large/spec.mk,
2909         * support/regression/ports/mcs51-stack-auto/spec.mk,
2910         * support/regression/ports/z80/spec.mk: use include and lib files from
2911           built version of sdcc instead of installed version
2912         * doc/sdccman.lyx: fixed typo in --nostdinc
2913
2914 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2915
2916         * src/pic/pcode.c,
2917         * src/pic/device.c,
2918         * src/pic/ralloc.c,
2919         * src/pic/gen.c : added support to generate code for struct bit fields.
2920
2921 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2922
2923         * as/xa51/xa_version.h,
2924         * device/include/errno.h,
2925         * device/include/regc515c.h,
2926         * device/lib/_itoa.c,
2927         * device/lib/_ltoa.c,
2928         * device/lib/ser_ir_cts_rts.c,
2929         * sim/ucsim/xa.src/glob.cc,
2930         * sim/ucsim/xa.src/inst_gen.cc,
2931         * sim/ucsim/xa.src/xa_bit.cc,
2932         * sim/ucsim/xa.src/xa_sfr.cc,
2933         * sim/ucsim/z80.src/inst_dd.cc,
2934         * sim/ucsim/z80.src/inst_fdcb.cc,
2935         * support/scripts/keil2sdcc.pl,
2936         * src/pic16/pic16.dsp,
2937         * src/pic16/pic16a.dsp: corrected cvs line endings
2938         * device/lib/printf_large.c: fixed bug 1057979
2939         * src/pic16/gen.c: fixed non-C standard code
2940         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2941         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2942         * support/regression/ports/mcs51/support.c: reload T1 asap
2943         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2944           pdata use and clear idata startup behaviour
2945         * support/regression/tests/bug1057979.c: added
2946
2947 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2948
2949         * device/examples/ds390/ow390/ad26.h,
2950         * device/examples/ds390/ow390/cnt1d.h,
2951         * device/examples/ds390/ow390/crcutil.c,
2952         * device/examples/ds390/ow390/ownet.h,
2953         * device/examples/ds390/ow390/owsesu.c,
2954         * device/examples/ds390/ow390/swt12.h,
2955         * device/examples/ds390/ow390/swtoper.c,
2956         * device/examples/ds390/ow390/temp10.h,
2957         * device/examples/ds390/ow390/thermodl.c,
2958         * device/examples/ds390/tinitalk/tinitalk.dsp,
2959         * device/examples/ds390/tinitalk/tinitalk.dsw,
2960         * device/examples/mcs51/clock/hw.h,
2961         * device/examples/mcs51/simple2/go.bat,
2962         * device/examples/serialcomm/windows/serial.h,
2963         * device/examples/xa51/dummy.c,
2964         * device/examples/xa51/hello.c,
2965         * device/include/80c51xa.h,
2966         * device/include/at89x051.h: corrected cvs line endings
2967
2968 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2969
2970         * src/pic16/main.c (options): added command line --gstack, to trace
2971         stack over/under flows,
2972         * added pragma 'wparam' to allow passing first byte of function
2973         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2974         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2975         call to __gstack_test function and sets up the symbol as extern,
2976         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2977         * popaop): added call to pic16_testStackOverflow,
2978         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2979         wparamList list,
2980         * (genCall, genPcall): now all parameters are passed via stack
2981         except in functions that are pass to wparam pragma in which WREG is
2982         used too,
2983         * (genPcall): REENTRANT flag is checked to see if variable prototype
2984         contains reentrant keyword, don't call a non-reentrant function, via
2985         a reentrant function pointer or vice versa, functions are never
2986         passed via WREG,
2987         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2988         D.Winkler,
2989         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2990         SIGSEGV when accessing a NULL register stucture,
2991         * (pic16_printGPointerType): modified to handle UPPER modifier for
2992         function initializers, changed prototype of function to simpler one,
2993         * (pic16_printIvalFuncPtr): check to see if function is already
2994         added in externs list,
2995         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2996         optimized a move from W to SFR with a move to the same register
2997         later after a CALL,
2998         * device/lib/pic16/debug: NEW directory, contains debug features
2999         which are enabled when linking with libdebug.lib, currently command
3000         line option --gstack enables stack pointer tracing for over/under
3001         flow, corresponding sources are in debug/gstack
3002
3003 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3004
3005         * doc/sdccman.lyx: updated SDCC version,
3006         * (PIC16 port): update list of command line options,
3007         * src/pic16/device.h (structure pic16_options_t): added field gstack
3008         to enable stack overflow tracing on push/pops,
3009         * src/pic16/device.c (statistics structure): added statistics
3010         structure,
3011         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3012         pic16_dump_int_registers): increase statistics counters for each
3013         * variable which is encountered
3014         * (pic16_dump_usection): emit each .udata variable to its own udata
3015         section,
3016         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3017         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3018         parameters via stack, otherwise use old scheme,
3019         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3020         assembler output file,
3021         * src/pic16/main.c: added command line options --gstack to enable
3022         push/pop tracing for stack overflow,
3023         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3024         instructions): added size of each instruction,
3025         * (pic16_countInstruction): estimate size of instructions in
3026         the_pFile list, inline assembly blocks are not counted,
3027         * (pic16_FixRegisterBanking): trace previous register usage, when
3028         banksel optimizations is greater than 0, don't emit a redudant
3029         banksel directive,
3030
3031 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3032
3033         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3034         * src/pic16/ralloc.c : applied same fix for pic16.
3035         * src/pic/gen.c : tidied it up a little.
3036
3037 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3038
3039         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3040         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3041
3042 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3043
3044         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3045
3046 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3047
3048         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3049         non-reentrant function __modsint in the interrupt function (thus
3050         corrupting math operations during serial I/O)
3051         * device/lib/ser_ir.c: as above, changed buffersize
3052         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3053         256.c,d for zeroing
3054         * doc/Makefile: added option -t for rsync
3055
3056 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3057
3058         * src/SDCCast.h (struct ast),
3059         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3060
3061 2004-10-20 Borut Razem <borut.razem AT siol.net>
3062
3063         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3064         package
3065
3066 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3067
3068         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3069         makefile targets,
3070         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3071         support functions to replace long sequences of MOVFF's from access
3072         bank registers to stack and vice versa,
3073         * src/pic16/device.h: added new field opt_flags, where optimization
3074         flags can be set to enable certain features,
3075         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3076         * pBlock, (genFunction, genEndFunction): surroung loop for
3077         saving/loading used registers in stack with PC_INFO pCodes,
3078         INF_LREGS. Code in between can then be optimized by pCode optimizer
3079         to support function calls,
3080         * (genDataPointerSet): fixed bug which loaded float fields in
3081         structures with corrupt data,
3082         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3083         in a standard way debug info on stderr. Feature used for developing
3084         and debugging only,
3085         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3086         obsolete chunks of code,
3087         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3088         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3089         * pic16/src/pcode.c (pic16_newpCodeInfo,
3090         * (pic16_newpCodeOpLocalRegs),
3091         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3092         feature,
3093         * (pic16_pCodeConstString): printing of the initial value of a
3094         symbol as a comment is inhibited since parsing was already done by
3095         copyStr and output is corrupt,
3096         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3097
3098 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3099
3100         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3101
3102 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3103
3104         * as/mcs51/lkarea.c: removed old K&R style,
3105           (lnksect): changed check on boundary error,
3106           (lnksect2): changed check on boundary error,
3107           (lnksect2): extend XSTK to end of page if size = 1
3108         * as/mcs51/lkmain.c: removed old K&R style,
3109           (Areas51): create l_IRAM symbol
3110         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3111         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3112           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3113         * device/lib/_mullong.c: added version to be compiled with xstack
3114         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3115         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3116         * device/lib/mcs51/crtxstack.asm: fixed comment
3117         * src/SDCCglue.c: maxInterrupts defaults to 0,
3118           (emitMaps): added pdata,
3119           (createInterruptVect): (re)moved default,
3120           (glue): added pdata,
3121           (glue): moved __start__xstack to XSTK with default size 1
3122         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3123           and options.float_rent when options.stackAuto is set,
3124           (linkEdit): only write XDATA_NAME if provided on command line
3125         * src/SDCCmem.h,
3126         * src/SDCCmem.c: added pdata
3127         * src/port.h: added pdata_name to PORT
3128         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3129           (saveRegisters, unsaveRegisters): removed usage of B,
3130           (genMinus): fixed accumulator clash,
3131           (genJumpTab): added comment, this needs another look
3132         * src/mcs51/gen.c: added check for "B in use" paranoia,
3133           added pushB() and popB()
3134         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3135           chance
3136         * src/avr/main.c,
3137         * src/ds390/main.c,
3138         * src/hc08/main.c,
3139         * src/mcs51/main.c,
3140         * src/pic/main.c,
3141         * src/pic16/main.c,
3142         * src/xa51/main.c,
3143         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3144           added PSEG (PAG,XDATA) or NULL to port specifier
3145         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3146         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3147           (_mcs51_genInitStartup): removed __start__xstack equ,
3148           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3149         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3150         * src/z80/gen.c (_rleAppend): fixed warnings
3151         * support/regression/tests/zeropad.c: added pdata test
3152         * .version: bumped to 2.4.6
3153
3154 2004-10-17 Borut Razem <borut.razem AT siol.net>
3155
3156         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3157         as a part of nightly build
3158
3159 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3160
3161         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3162         WREG holds the first byte function parameters,
3163         * (aopForSym): take special case for symbols which are in FARSPACE
3164         but in CODESPACE too,
3165         * (assignResultValue): modified to take into account _G.useWreg,
3166         * (genCall): don't use wreg for parameter passing when function is
3167         declared as reentrant, too, added optimization INCF to stack
3168         pointer when stack parameter count is 1,
3169         * (genFunction, genEndFunction): refurnished and fixed to not using
3170         wreg for passing parameters when function has varargs or is
3171         reentrant, fixed bug with symbol name compare for generating
3172         functions in absolute address,
3173         * (pic16_storeForReturn): refurnished,
3174         * (genCmp): began writing a new version of the function, not ready
3175         yet, therefore it is disabled,
3176         * (genAssign): do not read code memory when assigning a function to
3177         a pointer function,
3178         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3179         array of characters, not pointer,
3180         * (pic16initialComments): in debug mode emit an .ident directive for
3181         the assembler,
3182         * (_process_pragma): emit a new warning type (internal to pic16)
3183         when setting stack to default length, emit a similar warning when
3184         placing a function at absolute address and address is not word aligned
3185         * (_pic16_parseOptions): added 'return TRUE' statement,
3186         * (_pic16_linkEdit): if compiling a source, then add the source's
3187         file object, first in the list of objects to link,
3188
3189 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3190
3191         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3192         * src/pic/main.c : removed VC warning.
3193         * src/pic/gen.c : changed comment.
3194
3195 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3196
3197         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3198         reference to a deprecated symbol _GPTRREG was causing failure to
3199         link. Thanks G. M. Gallant for the info.
3200
3201 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3202
3203         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3204         comments for Bugs item #954788.
3205
3206 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3207
3208         * src/pic16/device.c (pic16_dump_gsection,
3209         * pic16_groupRegistersInSection): handle symbols declared to be in
3210         access bank differently,
3211         * src/pic16/gen.c (struct _G): added field resDirect,
3212         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3213         send values read from stack directly to result and don't allocate
3214         temporary values,
3215         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3216         same registers,
3217         * (pic16_sameRegsOfs): NEW,
3218         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3219         free because they were not allocated from temporary pool,
3220         * pic16_popRegFromString): workaround to fix a problem with
3221         allocating variables twice or never,
3222         * (genGenPointerGet): using PRODL instead of FSR0H,
3223         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3224         instead of FSR0H,
3225         * (genAssign): take advantage of the _G.resDirect flag,
3226         * (genCast): around line 11844, use mov2f instead of directly
3227         MOVFF'ing between operands to account for literal values,
3228         * src/pic16/genutils.c: some new debug functions for gpsim have been
3229         added,
3230         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3231         float with integer part only,
3232         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3233         place variables in access bank
3234         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3235         updated sources to reflect recent changes in gen.c
3236
3237 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3238
3239         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3240         sources that searched for headers in installation path, now the
3241         device/include/pic16 is used,
3242         * src/pic16/glue.c (pic16glue),
3243         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3244         .line directives if not in debug mode, this suppresses assembler's
3245         warnings for ignored directives
3246
3247 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3248
3249         * src/port.h: made reset_regparms prototype void parameter explicit.
3250         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3251         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3252         * doc/sdccman.lyx: documented warning disabling and how to use
3253           printf_large to make it print floats.
3254         * device/include/stdbool.h: NEW
3255         * device/lib/_atof.c,
3256         * device/lib/_divuint.c,
3257         * device/lib/_divulong.c,
3258         * device/lib/expf.c,
3259         * device/lib/printf_large.c,
3260         * device/lib/sincosf.c,
3261         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3262         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3263           a completely reentrant lib.
3264
3265 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3266
3267         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3268         * device/include/pic16/stdio.h: fixed bug with colon
3269
3270 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3271
3272         * device/include/pic16/stdio.h,
3273         * device/include/pic16/stdlib.h,
3274         * device/include/pic16/math.h: NEW
3275         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3276         declared as _naked to reduce overhead
3277         * device/lib/Makefile.in (target port-specific-objects-pic16):
3278         changed * to *.* so to ignore the CVS directory,
3279         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3280         stacked variables back in stack,
3281         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3282         corruption
3283
3284 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3285
3286         * .version: bumped version number to 2.4.5
3287         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3288         * support/Util/SDCCerr.c (messages structure): added entry for
3289         W_POSSBUG2
3290
3291         Large cumulative patch for pic16 port and libraries.
3292         * device/include/pic16/sdcc-lib.h,
3293         * device/include/pic16/stdarg.h,
3294         * device/include/asm/pic16/features.h,
3295         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3296         * device/include/pic16/float.h: changes reentrant keyword with
3297         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3298         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3299         updated target build-libraries to include objects from gptr,
3300         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3301         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3302         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3303         all function headings,
3304         * src/SDCCmain.c: added global parameter userIncDirsSet,
3305         * (parseCmdLine): when option -I is encountered add directory to
3306         userIncDirsSet too,
3307         * src/version.awk: added space between control and long,
3308         * src/pic16/NOTES: added some notes for the port,
3309         * src/pic16/gen.c: added prototype for mov2fp function,
3310         * (fReturnpic16[]): properly named return value registers,
3311         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3312         * (aopForSym): added code to handle symbols with onStack flag set,
3313         symbols onStack are allocated PTRSIZE bytes,
3314         * (aopFreeAsmop): handles special case where asmops are stack objects,
3315         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3316         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3317         added argument lock to trace flaws in allocating temporary registers
3318         when developing port,
3319         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3320         * (pic16_popRegFromString): reenabled allocating a direct register
3321         from string,
3322         * (assignResultValue): various beautifications,
3323         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3324         referenced function argument,
3325         * (genIpush): reenabled to allow stacked arguments, handles only
3326         ic->parmPush iCodes,
3327         * (genCall, genPcall): major changes to allow for variable argument
3328         functions, fixed a bug with falsely restoring stack pointer after
3329         returning from call,
3330         * (genFunction): pending code for critical function,
3331         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3332         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3333         * (genNearPointerGet): fixed bug with indirect reading, was always
3334         reading from INDF0
3335         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3336         pointers,
3337         * (genAddrOf): rewrote code to take address of a stacked function parameter
3338         * (genCast): fixed casting to generic pointer type,
3339         * src/pic16/gen.h: added AOP_STA,
3340         * (struct asmop): added field stk,
3341         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3342         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3343         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3344         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3345         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3346         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3347         generic pointers,
3348         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3349         and library paths,
3350         * (pic16_port structure): generic pointer size is set to 3,
3351         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3352         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3353         compiler warning,
3354         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3355         operand is an iTemp,
3356
3357 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3358
3359         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3360         * debugger/mcs51/simi.c: addapt new syntax of s51
3361
3362 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3363
3364         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3365         * src/pic16/pcode.c: commented out some calls to free() in order to
3366         fix bug #989576,
3367
3368 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3369
3370         * src/SDCCicode.h,
3371         * src/SDCCicode.c (isiCodeInFunctionCall),
3372         * src/avr/ralloc.c (selectSpil),
3373         * src/pic/ralloc.c (selectSpil),
3374         * src/pic16/ralloc.c (selectSpil),
3375         * src/ds390/ralloc.c (selectSpil),
3376         * src/hc08/ralloc.c (selectSpil),
3377         * src/xa51/ralloc.c (selectSpil),
3378         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3379         stack in the middle of a function call sequence (fixes bug #1020268)
3380         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3381         costs associated with the minimum switch case.
3382
3383 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3384
3385         * src/SDCC.lex: fixed bug #1030549
3386
3387 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3388
3389         * src/SDCCcse.h (struct cseDef),
3390         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3391         over a function call if the CSE is derived from a symbol whose
3392         address has been taken (fixes bug #1029883)
3393         * support/regression/tests/bug-1029883: a new regression test for
3394         this bug
3395
3396 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3397
3398         * src/hc08/gen.c (emitinline): fixed bug #1029778
3399         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3400         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3401         and starts toward RFE #905167)
3402
3403 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3404
3405         * src/pic16/gen.c (mov2f): New function to move an operand to
3406         another without considering if it is a literal or a register,
3407         * (pic16_sameRegs): don't check if they are both AOP_REG,
3408         * (AccRsh): removed andmask=0 lines,
3409         * (genLeftShift): duplicated to be improved in future versions,
3410         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3411         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3412         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3413         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3414         * (insertBankSwitch): fixed inserting banksel directives algorithm
3415         for instructions that follow a skip instruction, this fixes a report
3416         for broken subtraction code generation,
3417         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3418         iCode is a left op, just in case result and right share the same
3419         registers
3420
3421 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3422
3423         * src/hc08/main.c,
3424         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3425         preservation of HX
3426         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3427         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3428         on 2004-09-12; it was buggy
3429
3430 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3431
3432         * src/SDCCsymt.h: removed RESULT_CHECK
3433         * src/SDCCast.c,
3434         * src/SDCCglue.c,
3435         * src/SDCCval.c,
3436         * src/pic/glue.c,
3437         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3438
3439 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3440
3441         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3442         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3443         configuration values no more rejected by compiler, they are assigned
3444         to configuration registers with a warning message instead,
3445         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3446         the for-loop so last conf register is emitted too,
3447         * (_pic16_initPaths): link library libsdcc.lib by default,
3448         * (_hasNativeMulFor): modified test for multiplication according to
3449         Raphael Neider's remarks. Integer multiplication is also done with
3450         support functions,
3451         * device/include/pic16/pic18fregs.h: corrected type error in while
3452         testing and including 18f6720 header file
3453
3454 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3455
3456         * src/pic16/device.h (pic16_options): removed field use_crt,
3457         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3458         until an optimization to handle single bits is added,
3459         * (pic16_loadFSR0): moved before genUnpackBits,
3460         * (genAnd): some white lines removed,
3461         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3462         leave_reset flags in pic16_options when using crt modules,
3463
3464 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3465
3466         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3467           for bugs 898889 & 979599. Also used some safer print instructions.
3468
3469 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3470
3471         * src/pic16/device.h (pic16_options_t): added field use_crt,
3472         crt_name, no_crt,
3473         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3474         catch a probable future bug,
3475         * src/pic16/gen.c: aopIdx function commented out,
3476         * (genAssign): commented out old code which used aopIdx,
3477         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3478         code, added if conditionals to take into account the --use-crt
3479         command line options,
3480         * src/pic16/main.c (pic16_optionsTable): added new command line
3481         options, --use-crt= and --no-crt,
3482         * (_pic16_linkEdit): now the proper crt object is added in the
3483         linker command line except than when --no-crt is specified,
3484         * src/pic16/pcode.c,
3485         * src/pic16/pcode.h: added some structures and functions for a new
3486         optimization scheme to compansate for instruction overhead between
3487         same iCodes, this scheme is currently under development and is not
3488         working in any way,
3489         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3490         to && operator,
3491         * device/lib/pic16/startup/crt0i.c,
3492         * device/lib/pic16/startup/crt0iz.c: added global char variable
3493         __uflags to force the generation of an idata section
3494
3495 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3496
3497         * doc/Makefile,
3498         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3499         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3500
3501 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3502
3503         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3504         Frieder) and clarified the default code optimization mode
3505
3506 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3507
3508         * src/SDCC.lex (doPragma, process_pragma),
3509         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3510         "opt_code_size", and "opt_code_balanced"
3511         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3512         regrouped options by category, added support for category headers
3513         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3514         and "--opt-code-size"
3515         * doc/sdccman.lyx: documented these new options and pragmas
3516         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3517         preference into account
3518
3519 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3520
3521         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3522           geniCodePreDec): Fixed bug 904237 by generating a warning
3523         * src/SDCCerr.h,
3524         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3525
3526 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3527
3528         * src/pic/device.c : When no max ram set validate full memory range.
3529         * src/pic/pcode.c,
3530         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3531
3532 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3533
3534         * device/lib/_gptrget.c,
3535         * device/lib/_gptrput.c: updated comment
3536         * device/lib/calloc.c,
3537         * device/lib/free.c,
3538         * device/lib/malloc.c,
3539         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3540         * src/SDCCcse.c (cseBBlock),
3541         * src/SDCCicode.c (printOperand, geniCodeArray),
3542         * src/SDCCicode.h (struct operand): fixed bug 868103
3543         * support/regression/tests/bug-868103.c: added
3544         * src/SDCCast.c (searchLitOp),
3545         * src/SDCCcse.h (struct cseDef),
3546         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3547         * src/SDCCicode.h (struct operand),
3548         * src/SDCCsymt.h (struct sym_link),
3549         * src/avr/gen.c (hasInc),
3550         * src/ds390/gen.c (hasInc),
3551         * src/hc08/gen.c (genPlusIncr, hasInc),
3552         * src/mcs51/gen.c (hasInc),
3553         * src/pic16/glue.c (pic16_printIvalChar),
3554         * src/pic16/ralloc.c (regWithIdx),
3555         * src/xa51/gen.c (hasInc) : removed warnings
3556         * src/SDCCast.c (createBlock): added comment ???
3557         * src/hc08/ralloc.c: updated comments
3558
3559 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3560
3561         * doc/sdccman.lyx: updated section on switch statements, added
3562         section about semaphore locking
3563         * doc/Makefile: added option -info for latex2html
3564         * device/lib/_gptrget.c,
3565         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3566
3567 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3568
3569         * src/pic/device.h,
3570         * src/pic/device.c,
3571         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3572          maxram is less than 0x100.
3573
3574 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3575
3576         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3577
3578 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3579
3580         * src/port.h,
3581         * src/mcs51/main.c,
3582         * src/ds390/main.c,
3583         * src/z80/main.c,
3584         * src/hc08/main.c,
3585         * src/pic/main.c,
3586         * src/pic16/main.c,
3587         * src/avr/main.c,
3588         * src/xa51/main.c
3589         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3590         a jump table is the best form for a switch statement, including
3591         automatic insertion of missing cases to make the case range
3592         continuous. Developed in collaboration with Frieder Ferlemann.
3593
3594 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3597         accumulator result if it needs sign extension
3598
3599 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3600
3601         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3602
3603 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3604
3605         * device/lib/gbz80/printf.c,
3606         * device/lib/z80/printf.c: removed define for NULL
3607
3608 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3609
3610         * as/xa51/xa_link.c,
3611         * device/examples/ds390/ow390/ad26.c,
3612         * device/examples/ds390/ow390/cnt1d.c,
3613         * device/examples/ds390/ow390/counter.c,
3614         * device/examples/ds390/ow390/ds2480.h,
3615         * device/examples/ds390/ow390/ds2480ut.c,
3616         * device/examples/ds390/ow390/findtype.c,
3617         * device/examples/ds390/ow390/gethumd.c,
3618         * device/examples/ds390/ow390/owllu.c,
3619         * device/examples/ds390/ow390/ownetu.c,
3620         * device/examples/ds390/ow390/swt12.c,
3621         * device/examples/ds390/ow390/swtloop.c,
3622         * device/examples/ds390/ow390/temp.c,
3623         * device/examples/ds390/ow390/temp10.c,
3624         * device/examples/ds390/ow390/thermo21.c,
3625         * device/examples/ds390/ow390/tinilnk.c,
3626         * device/examples/ds390/ow390/tstfind.c,
3627         * device/examples/serialcomm/windows/serial.cpp,
3628         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3629         * device/include/reg51.h: fixed line endings for cvs
3630
3631 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3634         packRegsForAccUse, packRegisters): new accumulator register
3635         packing algorithm
3636         * support/regression/ports/hc08/support.c (_putchar): suppress
3637         warning of unused variable
3638         * src/SDCCicode.c: added SWAP entry to codeTable
3639
3640 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3641
3642         * device/lib/sprintf.c: forgot to add this file before previous commit
3643
3644 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3645
3646         * src/pic16/gen.c (genPackBits): added operand right in function
3647         parameters, load result directly if p_type is POINTER (that is
3648         called by genNearPointerSet)
3649         * (genUnPackBits): added operand left in function parameters,
3650         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3651         FSR0 if accessing bitfields,
3652
3653 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3654
3655         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3656           _print_format; updated printf, sprintf, vsprintf
3657         * device/include/asm/default/features.h: corrected comment/define
3658         * device/lib/Makefile.in: added sprintf.c
3659         * device/lib/libsdcc.lib: added sprintf module
3660         * device/lib/printf_large.c,
3661         * device/lib/vprintf.c,
3662         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3663           into these 3 files
3664         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3665         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3666         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3667           hc08 test
3668         * support/regression/tests/zeropad.c: define idata as data for hc08
3669
3670 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3673         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3674         labels are referenced at least once (even if a reference is not found)
3675         * src/hc08/gen.c (emitcode): set isComment flag for comments
3676         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3677         loads), rules 6a..6b (optimize jumps to return)
3678
3679 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3680
3681         * device/lib/acosf.c (acosf),
3682         * device/lib/asinf.c (asinf),
3683         * device/lib/atanf.c (atanf),
3684         * device/lib/ceilf.c (ceilf),
3685         * device/lib/cosf.c (cosf),
3686         * device/lib/coshf.c (coshf),
3687         * device/lib/cotf.c (cotf),
3688         * device/lib/fabsf.c (fabsf),
3689         * device/lib/floorf.c (floorf),
3690         * device/lib/log10f.c (log10f),
3691         * device/lib/logf.c (logf),
3692         * device/lib/sinf.c (sinf),
3693         * device/lib/sinhf.c (sinhf),
3694         * device/lib/sqrtf.c (sqrtf),
3695         * device/lib/tanf.c (tanf),
3696         * device/lib/tanhf.c (tanhf),
3697         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3698         replaced all instances of "reentrant" in the library functions
3699         defined in math.h with this macro.
3700         * support/regression/tests/float_trans.c: reenabled test for hc08
3701
3702 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3703
3704         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3705         erroneously deleted
3706
3707 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3708
3709         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3710         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3711         multi-byte volatile operands are used
3712         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3713         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3714         initialization to area GSINIT0 so that it would always precede
3715         any static initializers in GSINIT
3716         * support/regression/tests/zeropad.c: fixed idata define for hc08
3717         * support/regression/tests/bug-927659.c,
3718         * support/regression/tests/float_trans.c: disabled tests for hc08
3719         pending missing library routines
3720         * .version: increased version number to 2.4.4 - hc08 port now passes
3721         regression tests
3722
3723
3724 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3725
3726         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3727         * Makefile.common.in,
3728         * as/Makefile,
3729         * as/hc08/Makefile.in,
3730         * as/mcs51/Makefile.in,
3731         * as/z80/Makefile.in,
3732         * debugger/mcs51/Makefile.in,
3733         * device/include/Makefile.in,
3734         * device/lib/Makefile.in,
3735         * doc/Makefile,
3736         * link/Makefile,
3737         * link/z80/Makefile.in,
3738         * packihx/Makefile.in,
3739         * sim/ucsim/main_in.mk,
3740         * sim/ucsim/avr.src/Makefile.in,
3741         * sim/ucsim/doc/Makefile.in,
3742         * sim/ucsim/gui.src/serio.src/Makefile.in,
3743         * sim/ucsim/hc08.src/Makefile.in,
3744         * sim/ucsim/s51.src/Makefile.in,
3745         * sim/ucsim/xa.src/Makefile.in,
3746         * sim/ucsim/z80.src/Makefile.in,
3747         * src/Makefile.in,
3748         * support/cpp2/Makefile.in,
3749         * support/librarian/Makefile,
3750         * support/makebin/Makefile: added DESTDIR to the install path proposed
3751         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3752         * doc/sdccman.lyx: added DESTDIR documentation
3753
3754 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3755
3756         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3757         instruction for interrupt handlers, use fast returns when returning
3758         from high priority interrupts
3759
3760 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3761
3762         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3763         code generation
3764         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3765         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3766         bugs, ported much of Bernhard's code from mcs51
3767         * src/mcs51/gen.c (genSend),
3768         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3769         than one when calling a reentrant function
3770         * device/lib/_mullong.c: defined an alternate struct layout for big
3771         endian ports (hc08)
3772
3773 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3774
3775         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3776         test
3777
3778 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3779
3780         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3781         are sane and complete before asking the port its prefered parameter
3782         passing method (fixes bug #1017633)
3783         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3784         and _ret3
3785
3786 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3787
3788         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3789         problem in bitfields >= 8 bits.
3790
3791 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3792
3793         * src/SDCCsymt.c: undid changes that were not meant to be committed
3794
3795 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3796
3797         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3798
3799 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3800
3801         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3802           copied and wrong bit got inverted
3803
3804 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3805
3806         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3807         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3808         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3809         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3810         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3811         assignments to bitfields at known addresses
3812         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3813         reads from bitfields at known addresses
3814         * src/hc08/ralloc.c (packRegisters),
3815         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3816         genhc08Code): optimize pointer get values used as conditionals
3817         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3818         and branch
3819
3820 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3821
3822         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3823         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3824         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3825         as conditionals
3826
3827 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3828
3829         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3830
3831 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3832
3833         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3834         related problems
3835
3836 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3837
3838         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3839
3840 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3841
3842         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3843         mcs51 port
3844
3845 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3846
3847         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3848
3849 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3850
3851         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3852         cases use more compact code.
3853
3854 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3855
3856         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3857
3858 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3859
3860         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3861
3862 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3863
3864         * src/SDCCsymt.h,
3865         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3866         parameter of changePointer() from symbol* to sym_link*
3867         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3868         * src/SDCCsymt.c (compareType): void* type is castable to other
3869         pointers, but not necesarily an exact match.
3870         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3871         is no longer blindly treated as an exact match.
3872         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3873
3874 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3875
3876         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3877
3878 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3879
3880         * src/pic/gen.c,
3881         * src/pic/pcode.c,
3882         * src/pic/ralloc.h,
3883         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3884
3885 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3886
3887         * src/pic/device.c,
3888         * src/pic/device.h,
3889         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3890
3891 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3892
3893         * src/mcs51/gen.c (emitcode): fixed bug #992819
3894
3895 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3896
3897         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3898           there's no need to make it worse
3899
3900 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3901
3902         * src/mcs51/ralloc.c (deassignLR),
3903         * src/ds390/ralloc.c (deassignLR),
3904         * src/hc08/ralloc.c (deassignLR),
3905         * src/z80/ralloc.c (deassignLR),
3906         * src/pic/ralloc.c (deassignLR),
3907         * src/pic16/ralloc.c (deassignLR),
3908         * src/avr/ralloc.c (deassignLR),
3909         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3910         rlivePoint): fixed another part of bug #971834
3911
3912 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3913
3914         * src/z80/main.c: enabled "critical" keyword
3915         * src/z80/mappings.i,
3916         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3917         functions (fixes bug #979646)
3918         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3919
3920 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3921
3922         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3923           such as c:\mydir.
3924
3925 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3926
3927         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3928           doesn't disable too much optimizations
3929
3930 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3931
3932         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3933
3934 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3935
3936         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3937
3938 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3939
3940         * src/pic/gen.c tidied up tabs
3941         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3942         * src/pic/main.c tidied up tabs
3943         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3944         * src/pic/pcoderegs.c tidied up tabs
3945         * src/pic/ralloc.c tidied up tabs
3946
3947 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3950         to S_FIXED for pic16 port and when symbol is not in level 0,
3951         allocate for S_REGISTER storage class and pic16 port, too,
3952         * src/pic16/device.h: prototype for checkSym,
3953         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3954         * (pic16_assignConfigWordValue): test the value and the mask to
3955         validate that the value is suitable for the configuration word,
3956         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3957         collect extern declared symbols, don't emit symbol twice, check
3958         first if symbol is in publics set first,
3959         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3960         * added command line '--fstack' which enables an experimental
3961         feature for stack access, too buggy to be used yet...
3962         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3963         * (pic16_allocDirReg): when register has storage class S_REGISTER
3964         allocate in pic16_dynAccessRegs,
3965         * device/include/pic16/pic18f????.h: modified configuration word
3966         naming convention, words started as CONFIG0H but should be CONFIG1H
3967
3968 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3969
3970         * device/include/mcs51reg.h: fixed bug 970993
3971
3972 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3973
3974         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3975         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3976         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3977         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3978         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3979         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3980           error/warning numbers,
3981           added function setWarningDisabled()
3982         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3983         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3984           _memcmp.c _memmove.c calloc.c realloc.c free.c
3985         * support/regression/tests/malloc.c: added tests for new functionality
3986         * support/regression/tests/zeropad.c: added tests for truncated initializers
3987           and initialized char arrays starting with '\x0'
3988         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3989
3990 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3991
3992         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3993
3994 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3995
3996         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3997         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3998         peephole 177.e. Thanks to anonymous
3999
4000 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4001
4002         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4003         function isn't used in the source but referenced as a
4004         variable initializer then declare it as extern in .asm file
4005
4006 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4007
4008         * .version: increased version number to 2.4.3
4009
4010         Adding version extension according to ChangeLog CVS revision
4011         * src/Makefile.in (target all): added dependency 'version.h'
4012         * (rule version.h): added rule to create version.h from ChangeLog,
4013         * (rule dep): added dependency version.h,
4014         * src/version.awk: AWK script to create version.h
4015         * src/SDCCdwarf2.c (dwWriteModule),
4016         * src/SDCCglue.c (initialComments),
4017         * src/SDCCmain.c (printVersionInfo): modified to write after
4018         version string the version extension number,
4019         * src/SDCCutil.c: included "version.h"
4020         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4021         number,
4022         * src/SDCCutil.h: added prototype for getBuildNumber
4023
4024         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4025         includeDirsSet, too,
4026         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4027         const char [] is found in function prototype...
4028
4029         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4030         moving to WREG with source is already in WREG,
4031         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4032         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4033         * (aopForSym): stack'ed symbols are partially supported, added
4034         if-clause to support symbols in FARSPACE,
4035         * (sameRegs): added test for AOP_ACC to see if registers are same,
4036         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4037         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4038         * (pic16_popRegFromString): will not allocate a new register if it
4039         doesn't find one by name, bug may have introduced...
4040         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4041         * (genIpush): revived to use pic16 port's stack,
4042         * (genAddrOf): added incomplete case for stack'ed operand,
4043         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4044         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4045         can handle multibyte operands,
4046         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4047         * (pic16initialComments): added message for MPLAB compatibility
4048         mode enabled,
4049         * src/pic16/main.h: prototype for pic16_mplab_comp,
4050         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4051         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4052         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4053         because of increased complexity of procedure,
4054         * (_process_pragma): stack pragma changed to format 'stack pos len',
4055         emit symbol '_stack_end' to conform with gplink,
4056         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4057         to search for register,
4058         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4059         PO_GPR_REGISTER,
4060         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4061         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4062         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4063         case for PO_GPR_REGISTER,
4064         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4065         dies, the new era is ahead !...
4066         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4067         pic16_dynInternalRegs,
4068         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4069         * (pic16_allocDirReg): minor optimizations and bug fixes,
4070         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4071
4072         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4073         load stack and frame pointer with address of 'stack_end' symbol
4074
4075 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4076
4077         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4078         without source code but only variable initializers
4079
4080 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4081
4082         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4083         external are not declared as extern to reduce overhead while linking
4084
4085 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4088
4089 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4090
4091         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4092           Yee Keat for the patch
4093         * src/SDCCast.c (decorateType): fixed bug #979599
4094         * src/ds390/gen.h: removed local fReturnSizeDS390
4095         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4096         * src/ds390/gen.c (genAnd, genOr, genXor),
4097         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4098
4099 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4100
4101         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4102         add relFilesSet to $3, manipulate $2 to handle linking of object
4103         files without source files in command line,
4104         * device/include/pic16 (all headers): added ID location macros,
4105         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4106         entries for ID location bytes,
4107         * (pic16_assignIdByteValue): NEW,
4108         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4109         added field dumpcalltree to pic16_options_t,
4110         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4111         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4112         emitting rFalseIfx label after check_carry label,
4113         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4114         pic16_emitDIRegs), NEW
4115         * (pic16glue): dump .calltree file when option --calltree found,
4116         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4117         * (_pic16_genAssemblerPreamble): emit ID locations after
4118         configuration registers,
4119         * (pic16_linkCmd): modifications of the link command,
4120         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4121         * (pic16_pCodeInitRegisters): don't init stack registers,
4122         * (pic16_findPrevInstruction): fixed bug,
4123         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4124         bug with immediate registers,
4125         * (buildCallTree): traces stack push and pop,
4126         * (pct2): dump also stack usage for each function,
4127         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4128         * (pic16_allocDirReg): various modifications,
4129         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4130         fixed to 1,
4131
4132 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4133
4134         * src/pic16/pcode.c: removed buggy double colon
4135
4136 2004-07-01 Borut Razem <borut.razem AT siol.net>
4137
4138         * support/scripts/sdcc.nsi: added include/pic16 to setup
4139
4140 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4141
4142         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4143         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4144         target 'clean',
4145         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4146         specific command line arguments. Also added sample lkr script
4147         for placing a variable at a specific memory bank.
4148         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4149         at a specific memory bank,
4150         * (pic16_dump_isection): fixed bug which caused string literals to
4151         be omitted when dumping idata section,
4152         * (pic16_groupRegistersInSection): added code to handle registers
4153         in specific memory banks,
4154         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4155         public, all references are renamed too,
4156         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4157         AOP_DPTR2,
4158         * (pic16_storeForReturn): added case to handle when dest is WREG,
4159         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4160         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4161         pic16_rel_udata, check to see if that register is marked as being
4162         a member of a specific memory bank,
4163         * (pic16_printIvalCharPtr): added code to add string literals either
4164         to code or the idata sections,
4165         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4166         also accept the 'udata' pragma,
4167         * src/pic16/main.h: new structure types sectName and sectSym
4168         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4169         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4170         * (pic16_findPrevInstruction): fixed, it returned nothing,
4171         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4172         instruction combinations,
4173         * (pic16_FixRegisterBanking): heavily reorganised,
4174         * (pic16_AnalyzeBanking): if generating banksel directives is
4175         disabled, then don't call FixRegisterBanking at all,
4176         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4177         completely removed,
4178         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4179
4180 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4181
4182         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4183         Phuah Yee Keat <yk.phuah AT nestac.com>
4184
4185 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4186
4187         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4188         correctly the IVT even if it is relocated to some other location
4189
4190 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4191
4192         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4193         * device/include/pic16/pic18f2220.h: NEW,
4194         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4195         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4196         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4197         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4198         nodefaultlibs, ivt_loc is the location of the interrupt vector
4199         table, and nodefaultlibs signs that default libraries should not be
4200         linked in link stage,
4201         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4202         according to --ivt-loc argument,
4203         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4204         when pragma stack is found,
4205
4206 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4207
4208         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4209         256 (range check), 257 (do while), 258.a-f (bit banging
4210         f.e. on 3-wire SPI bus)
4211
4212 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4213
4214         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4215         variables used exclusively within a loop
4216
4217 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4218
4219         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4220
4221 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4222
4223         * src/SDCClrange.c (computeClash): fixed bug #971834
4224
4225 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4226
4227         * src/mcs51/gen.c (genCmp): fixed bug #975903
4228         * src/hc08/gen.c (operandsEqu),
4229         * src/ds390/gen.c (operandsEqu),
4230         * src/z80/gen.c (operandsEqu),
4231         * src/pic/gen.c (operandsEqu),
4232         * src/pic16/gen.c (operandsEqu),
4233         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4234         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4235
4236 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4237
4238         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4239
4240 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4241
4242         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4243         default case in switch statement,
4244         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4245         to eliminate problem with initialisation of pointers, but problem
4246         still exists,
4247         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4248         * (emitStaticSegment): removed various lines emitting debug info,
4249         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4250         added processor registers for utilizing EEPROM,
4251         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4252         configurable and set 8
4253
4254 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4255
4256         * .version: increased version number to 2.4.2,
4257
4258         Cumulative patch for pic16 port
4259         * src/pic16/device.c: changed scheme to dump initial values for
4260         variables in idata segment, all print_idata* functions were removed,
4261         now the pic16_printIval* will be called,
4262         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4263         * _pic16_printPointerType, pic16_printPointerType,
4264         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4265         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4266         NEW, similar to the respective functions in SDCCglue.c,
4267         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4268         way, emitting hex bytes,
4269         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4270
4271 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4272
4273         * src/avr/ralloc.c (serialRegAssign),
4274         * src/xa51/ralloc.c (serialRegAssign),
4275         * src/pic/ralloc.c (serialRegAssign),
4276         * src/pic16/ralloc.c (serialRegAssign),
4277         * src/hc08/ralloc.c (serialRegAssign),
4278         * src/z80/ralloc.c (serialRegAssign),
4279         * src/ds390/ralloc.c (serialRegAssign),
4280         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4281
4282 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4283
4284         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4285         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4286
4287 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4288
4289         Cumulative patch for pic16 port:
4290         * src/pic16/device.h (typedef PIC16_device) modified fields for
4291         defining microcontrollers,
4292         * src/pic16/device.c: added new info for all devices in Pics16 array,
4293         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4294         to be optimised out by the pCode optimiser,
4295         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4296         specially, bug reported by G.M. Gallant,
4297         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4298         as force'd so that cannot be optimised out by pCode optimiser,
4299         * src/pic16/pcode.c,
4300         * src/pic16/pcodepeeph.c,
4301         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4302         they are disabled by default, but can be enabled explicit with
4303         command argument --denable-peeps, for testing,
4304         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4305         --pomit-ivt in COMPILE_FLAGS
4306
4307 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4308
4309         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4310           compilation on MSVC
4311
4312 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4313
4314         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4315
4316 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4317
4318         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4319         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4320
4321 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4322
4323         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4324         would only assign 0x300001 register.
4325
4326 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4327
4328         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4329         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4330
4331 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4332
4333         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4334         for ds80c400
4335         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4336         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4337         added peephole 254 (left shift), 255 (jump table)
4338
4339 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4340
4341         * device/lib/Makefile.in: removed comment line with model-pic16,
4342         * (target port-specific-objects-pic16): the libraries and objects
4343         are copied to the build directory form the device/lib/pic16/bin
4344         directory
4345
4346         Cumulative patch concerning pic16 port:
4347         * library directory has been re-organized,
4348         * added support for PIC18F1220,
4349         * added headers and library sources for chips 18f1220,18f6520,
4350         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4351
4352         * configuration registers setting has changed, now each supported
4353         device has a complete description of the registers it uses,
4354         * all initialisations are moved to idata sections, these section
4355         can be absolute or relocatable,
4356         * fixed initialisation of codespace variables,
4357         * fixed warning about PCLATU and gpsim,
4358         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4359         * (genAssign): use table reads when assigning from variables in codespace,
4360         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4361         char/int variables placed in codespace,
4362         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4363         registers set in .asm file, no need for --pomit-config-words anymore,
4364         * (pic16glue): some 8051 legacy segments are commented out
4365         (to be removed completely),
4366         * added support for alternative assembler and linker with --asm=
4367         and --link= command line arguments,
4368         * peepholes are disabled automatically in the port, no need to
4369         specify on command line,
4370         * port supports natively char/int/long multiplication, but converts
4371         all divisions to support functions,
4372         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4373         to the file set in variable $2,
4374         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4375         strings in ASCII format and not in hex,
4376         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4377         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4378         allocate proper register if iCodes aren't temporary,
4379
4380 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4381
4382         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4383
4384 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4385
4386         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4387         is commented out
4388
4389 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4390
4391         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4392         computed address is reused
4393         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4394         multi-byte bitfields
4395
4396 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4397
4398         * src/z80/gen.c: (genArrayInit): must check for pointers too
4399
4400 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4401
4402         * support/regression/tests/zeropad.c: never meant to commit the
4403           nestedstruct test: removed, added check for GCC version
4404
4405 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4406
4407         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4408         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4409         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4410           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4411           bugs 928906 and 954082 half-empty initializers
4412         * src/SDCCsymt.h,
4413         * src/SDCCsymt.c (getAllocSize): added for above fix
4414         * src/z80/gen.c (genArrayInit): fixed bug 741044
4415         * support/regression/tests/zeropad.c: added tests
4416
4417 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4418
4419         * src/pic16/device.c (pic16_dump_section): corrected bug which
4420         caused some symbols of the libraries to be misplaced
4421
4422 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4423
4424         * src/pic16/glue.c,
4425         * src/pic16/ralloc.h,
4426         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4427         to fix conflict with pic port
4428
4429 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4430
4431         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4432         externs configuration variables,
4433         * src/pic16/ralloc.h,
4434         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4435         prototype in header, commented out some debug messages
4436
4437 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4438
4439         * src/pic16/glue.c,
4440         * src/pic16/main.c,
4441         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4442         for gpasm COFF object generation. Thanks to D. Hawkins for
4443         his patch info
4444
4445 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/ds390/main.c,
4448         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4449         Brock for spotting this)
4450         * src/ds390/gen.c (genEndFunction),
4451         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4452         interrupt handler and critical. Disable push/pop optimizations when
4453         peephole optimizations disabled.
4454
4455 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4456
4457         Updated pic16 library sources and headers.
4458         * device/lib/pic16/pic18f*/ ,
4459         * device/include/pic16/*.h: modified to handle structured SFR
4460         definitions
4461
4462 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4463
4464         * src/port.h (PORT structure): added hook initPaths, now each
4465         port can declare its own default search paths,
4466         which can been seen with the --print-search-dirs option,
4467         see pic16 port for example,
4468         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4469         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4470         * (doPrintSearchDirs): NEW, replaces in a central manner the
4471         printing of search dirs which was split in set*Paths functions,
4472         * (main): added call to port->initPaths and doPrintSearchDirs,
4473         * src/avr/main.c,
4474         * src/ds390/main.c,
4475         * src/hc08/main.c,
4476         * src/izt/i186.c,
4477         * src/izt/tlcs900h.c,
4478         * src/mcs51/main.c,
4479         * src/pic/main.c,
4480         * src/pic16/main.c: modified port structures to reflect addition of
4481         initPaths hook,
4482
4483         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4484         * (pic16_dump_section): for registers in same address reserve memory once,
4485         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4486         to no_banksel,
4487         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4488         result is greater in size than right or left,
4489         * (pic16_genUMult8X8_8): there are some cases where the result can
4490         be 16 bits size, so handle these,
4491         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4492         * (pic16_outBitC): modified to emit pcodes,
4493         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4494         or not,
4495         * (genDivOneByte): implemented algorithm to divide 8-bits,
4496         * (genCmp): uncommented goto, but issues still exist,
4497         * (genAnd): fixed a bug with variables >8bits,
4498         * (genPackBits): optimization added that uses BCF/BSF to change a
4499         single bit,
4500         * (genAssign): fixed bug when assigning floating point literals,
4501         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4502         __sdcc_gsinit_startup label,
4503         * src/pic16/main.c (_pic16_init): removed search directory
4504         initialisations,
4505         * (_pic16_initPaths): NEW, used to initialise search directories,
4506         * (_hasNativeMulFor): support functions for all except char/int
4507         multiplication, and char division,
4508         * (PIC16_port struct): modified entry for native mul support,
4509         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4510         no_banksel option,
4511         * (buildCallTree): call to register_usage is ifdef'ed out,
4512
4513 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4514
4515         * device/include/string.h: applied Stas Sergeev's patch to make this
4516         header file compatible with the preprocessor -Wundef option
4517         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4518         failure (fixes bug #941458)
4519
4520 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4521
4522         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4523         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4524         that the variable, not the function, should be static
4525         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4526         to be consistent with non-literal case
4527
4528 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4529
4530         * src/SDCCast.c (isConformingBody): fixed bug #949967
4531         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4532         convilong): fixed bug #952086
4533
4534 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4535
4536         * src/SDCCmem.c (allocVariables): fixed bug #955321
4537
4538 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4539
4540         * src/hc08/main.c (_hc08_genAssemblerEnd),
4541         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4542         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4543         completely eliminated the use of a temporary file
4544         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4545         when more than one file linked
4546         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4547
4548 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4549
4550         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4551         which fixes bug #543481
4552         * support/regression/tests/bug-751703.c: fixed comments left from a
4553         cut and paste error
4554         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4555         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4556         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4557         scopes
4558         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4559         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4560         are now changed to underscores in moduleName
4561
4562 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4563
4564         * as/mcs51/lkmem.c: better fix for bug #954173
4565
4566 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4567         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4568
4569         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4570         * device/include/c8051f000.h,
4571         * device/include/c8051f120.h,
4572         * device/include/c8051f300.h,
4573         * device/include/c8051f310.h,
4574         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4575         PWM16) and detab'ed
4576
4577 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4578
4579         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4580         and mailing lists, doc'ed --no-peep-comments, removed reference
4581         to knoppix (newest version has no LyX/LaTeX), other minor changes
4582         * src/SDCCglue.c (glue): save 2 bytes stack space with
4583         option --main-return. The ljmp could probably be avoided too
4584
4585 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4586
4587         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4588
4589 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4590
4591         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4592         * src/SDCCopt.c (isLocalWithoutDef),
4593         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4594         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4595         (credit to Maarten Brock for patch #949363, on which this is based)
4596         * support/regression/tests/bug-751703.c: some test cases of extern used
4597         within inner scopes.
4598
4599 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4600
4601         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4602         SPEC_STRUCT
4603         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4604         struct definitions
4605         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4606         dwWriteLabel): fix to create valid debugger symbols even when
4607         the module name has non-alphanumeric symbols in it
4608         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4609         when a variable's allocation has been optimized away
4610
4611
4612 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4613
4614         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4615         * src/hc08/main.c,
4616         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4617         * src/mcs51/main.c,
4618         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4619         * src/ds390/main.c,
4620         * src/z80/gen.c (z80_emitDebuggerSymbol),
4621         * src/z80/main.c,
4622         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4623         * src/pic/main.c,
4624         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4625         * src/pic16/main.c,
4626         * src/avr/gen.c (avr_emitDebuggerSymbol),
4627         * src/avr/main.c,
4628         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4629         * src/xa51/main.c,
4630         * src/SDCCdebug.c (emitDebuggerSymbol),
4631         * src/SDCCdebug.h,
4632         * src/port.h: added a debugger struct to the port struct. Added a
4633         callback for defining debugger symbols
4634
4635         * src/SDCCast.c (createLabel),
4636         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4637         with isitmp = 1
4638         * src/SDCCicode.h,
4639         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4640         iCode back to the ast for the function
4641
4642         * src/hc08/ralloc.c (hc08_assignRegisters),
4643         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4644         unneeded fields from the regs struct.
4645         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4646         pushReg() & pullReg() functions instead of emitcode()
4647
4648         * src/hc08/gen.c (genLabel, genhc08Code),
4649         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4650
4651         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4652         debugger hooks
4653
4654         * src/hc08/gen.c (genEndFunction, genhc08Code),
4655         * src/hc08/gen.h,
4656         * src/mcs51/gen.c (genEndFunction, gen51Code),
4657         * src/mcs51/gen.h,
4658         * src/ds390/gen.c (genEndFunction, gen390Code),
4659         * src/ds390/gen.h,
4660         * src/z80/gen.c (genEndFunction, genZ80Code),
4661         * src/z80/gen.h,
4662         * src/z80/z80.h,
4663         * src/pic/gen.c (genEndFunction, genpic14Code),
4664         * src/pic/gen.h,
4665         * src/pic16/gen.c (genEndFunction, genpic16Code),
4666         * src/pic16/gen.h,
4667         * src/avr/gen.c (genEndFunction, genAVRCode),
4668         * src/avr/gen.h,
4669         * src/xa51/gen.c (genEndFunction, genXA51Code),
4670         * src/xa51/gen.h,
4671         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4672         specific code to cdbFile.c and out of the backend code generators
4673
4674         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4675         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4676         starting address is now 0
4677
4678         * as/hc08/asm.h,
4679         * as/hc08/m08pst.c,
4680         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4681         assembler directive for DWARF support
4682         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4683
4684         * src/src.dsp,
4685         * src/Makefile.in,
4686         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4687
4688 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4689
4690         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4691         and inappropriate peephole optimization in jump tables
4692
4693 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4694
4695         * as/hc08/m08pst.c,
4696         * src/SDCCglue.c: sdccopt works for the hc08 port now
4697
4698 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4699
4700         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4701
4702 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4703
4704         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4705
4706 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4707
4708         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4709         rules
4710         * src/SDCCmain.c,
4711         * src/SDCCglobl.h,
4712         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4713         comments from the peephole optimizer replacement rules
4714         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4715         symbols
4716         * src/SDCCcse.c (updateSpillLocation),
4717         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4718         equivalents
4719         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4720         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4721         objects far pointers
4722
4723 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4724
4725         * src/SDCCsymt.h: a missing part of my last change
4726         * src/pic/ralloc.c (regTypeNum),
4727         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4728
4729 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4730
4731         * src/SDCCicode.h,
4732         * src/SDCCicode.c (aggrToPtrDclType),
4733         * src/SDCCptropt.h,
4734         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4735         ptrPseudoSymConvert),
4736         * src/pic/ralloc.c (regTypeNum),
4737         * src/pic16/ralloc.c (regTypeNum),
4738         * src/hc08/ralloc.c (regTypeNum),
4739         * src/ds390/ralloc.c (regTypeNum),
4740         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4741         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4742
4743 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4744
4745         * link/z80/lkmain.c (afile),
4746         * as/hc08/lkmain.c (afile),
4747         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4748         prevent a pointer problem when a filename has no directory and
4749         no extension specified.
4750
4751 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4752
4753         * link/z80/lkmain.c (afile): allow periods in directory names
4754         * link/z80/lkmain.c (afile),
4755         * as/mcs51/lkmain.c (afile),
4756         * as/hc08/lkmain.c (afile): allow linker script file to have an
4757         extension other than ".lnk"
4758         * link/z80/lklex.c (getfid),
4759         * link/z80/lkmain.c (parse),
4760         * as/mcs51/lklex.c (getfid),
4761         * as/mcs51/lkmain.c (parse),
4762         * as/hc08/lklex.c (getfid),
4763         * as/hc08/lkmain.c (parse): Support comments in the linker script
4764         file on lines by themselves and after filenames
4765
4766 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4767
4768         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4769
4770 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4771
4772         * src/z80/peeph-z80.def: removed some peephole rules that don't
4773         work with multibyte arithmetic (fixed bug #937126)
4774         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4775         to registers and not global variables
4776         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4777         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4778         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4779         checking for assignments not internally generated (fixed bug #931895)
4780         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4781         structure member (fixed bug #930072)
4782
4783 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4784
4785         * src/SDCCmain.c (linkEdit),
4786         * src/hc08/main.c (_hc08_parseOptions),
4787         * as/hc08/Makefile.in,
4788         * as/hc08/aslink.h,
4789         * as/hc08/asm.h,
4790         * as/hc08/m08pst.c,
4791         * as/hc08/lkrloc.c (relr, rele),
4792         * as/hc08/lkarea.c (lnkarea)
4793         * as/hc08/lkmain.c (afile, parse),
4794         * as/hc08/lkelf.c: support for ELF output
4795         * as/hc08/lks19.c (s19),
4796         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4797
4798 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4799
4800         * as/mcs51/lkihx.c: Fixed bug #899105.
4801
4802 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4803
4804         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4805         .dsp files from Unix to DOS.
4806
4807 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4810         function pointers; we have been compliant for several months now.
4811         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4812         change that was accidently commented out
4813         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4814         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4815         bug #922319
4816
4817 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4818
4819         * src/hc08/gen.c: output of all of the internal debugging information
4820         is now controlled by the D() macro; it is disabled by default
4821
4822 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4823
4824         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4825         harder to keep the same registers during a CAST iCode
4826         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4827         long via int can be done in a single cast, if the signedness is
4828         correct.
4829         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4830         putchar() in tinibios.c in ds390's library
4831
4832 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4833
4834         * src/SDCCast.c (decorateType): fixed bug #898889,
4835         cast result of a literal complement too
4836         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4837         fixed check for bitfields
4838
4839 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4840
4841         * src/SDCCicode.c (geniCodeLogic): made it static,
4842         (geniCodeLogicAndOr): added in order to fix bug #905492,
4843         (ast2iCode): fixed bug #905492
4844         * support/regression/tests/bug-905492.c: added
4845         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4846         (processParms): fixed bug #927659: don't copy parms, this will clear
4847         decorated flag
4848         * support/regression/tests/bug-927659.c: added
4849
4850 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4851
4852         * src/SDCCast.c (addCast): don't cast float to char
4853         * device/lib/libsdcc.lib: added _memmove
4854
4855 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4856
4857         * device/lib/large/Makefile: fixed parallel execution by
4858         replacing `make` by `$(MAKE)`
4859
4860 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4861
4862         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4863         offsets (fixes bug #923936)
4864
4865 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4866
4867         * device/lib/small/Makefile: fixed parallel execution by
4868         replacing `make` by `$(MAKE)`
4869
4870 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4871
4872         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4873
4874 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4875
4876         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4877         * src/regression/Makefile: Regression test was not running.
4878
4879 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4880
4881         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4882         complement if possible
4883         * src/SDCCval.c (valComplement),
4884         * src/SDCCicode.c (operandOperation): fixed complement of literal
4885         * support/regression/tests/onebyte.c (testComplement): added
4886
4887 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4888
4889         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4890         return an optimized tree; actually replace actParm with the new tree
4891         * src/SDCCast.h: added some parantheses to remove side effects
4892         * support/regression/tests/bug-920866.c
4893
4894 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4895         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4896         Bit operands were not being handled properly in the pic14 port.
4897         (now src/regression/add.c passes again).
4898
4899 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4900
4901         * src/SDCC.y (labeled_statement): case and default no longer require
4902         a following statement (RFE #893037)
4903
4904 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4905
4906         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4907         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4908         disabled (fixes bug #916294)
4909         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4910         "mov a,acc"; patch provided by Lenny Story
4911         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4912
4913 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4914
4915         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4916         functions
4917         * src/ds390/gen.c (genFunction, genEndFunction),
4918         * src/ds390/ralloc.c (ds390_assignRegisters),
4919         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4920         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4921         pushed if there are parameters passed on the stack. Also, a cleaner
4922         way to decide if r0/r1 should be pushed/popped. (Together they fix
4923         bug #918693)
4924
4925 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4926
4927         * doc/sdccman.lyx,
4928         * device/lib/mcs51/crtpagesfr.asm,
4929         * device/lib/mcs51/crtxinit.asm,
4930         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4931         to avoid confusion with Si Lab's SFRPAGE register.
4932
4933 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4934
4935         * src/SDCCglue.c (emitMaps): allow public sfr variables
4936         * src/SDCCglue.c (initialComments): include compiler build date
4937         with compiler version and put the timestamp of the generated
4938         assembly file on a serperate line to be less confusing.
4939         * src/port.h: added genInitStartup hook
4940         * src/avr/main.c,
4941         * src/ds390/main.c,
4942         * src/hc08/main.c,
4943         * src/pic/main.c,
4944         * src/pic16/main.c,
4945         * src/xa51/main.c,
4946         * src/z80/main.c: genInitStartup initialize as NULL (default to
4947         historical behaviour)
4948         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4949         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4950         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4951         library instead of hard coding it into the compiler.
4952         * support/regression/ports/mcs51-stack-auto/spec.mk,
4953         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4954         * device/lib/mcs51/Makefile,
4955         * device/lib/small/Makefile,
4956         * device/lib/large/Makefile,
4957         * device/lib/mcs51/crtpagesfr.asm,
4958         * device/lib/mcs51/crtstart.asm,
4959         * device/lib/mcs51/crtxclear.asm,
4960         * device/lib/mcs51/crtxinit.asm,
4961         * device/lib/mcs51/crtclear.asm,
4962         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4963         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4964         and into user configurable files.
4965         * device/lib/clean.mk: clean mcs51 directory too
4966         * support/regression/tests/longlit.c: added static to T1 declaration
4967         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4968         accesses in the initialization code
4969
4970 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4971
4972         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4973         OSCTRIMVAL as noted in bug #916008
4974
4975 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4976
4977         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4978         in loops with multiple exits (reported as incorrect registers
4979         used by Martin Helmling in Sdcc-user list)
4980
4981 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4982
4983         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4984         made ds390 register extensions look less like error messages
4985
4986 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4987
4988         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4989         reported by Adam Wozniak in Sdcc-user list
4990
4991 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4992
4993         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4994         arithmetic optimizations, added debug output
4995
4996 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4997
4998         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4999         * sdcc.spec: updated and split sdcc into 3 rpms
5000         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5001         needed for literals of LEFT_OP and '+'
5002         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5003         introduced RESULT_TYPE_NOPROM
5004         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5005         left shift
5006         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5007         limited promotion to int only for '*'
5008         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5009
5010 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5011
5012         * src/pic16/gen.c (genSkip),
5013         (genc16bit2lit), (gencjneshort): commented out
5014         (is_LitOp): new helper function, checks operand type
5015         (genCmpEq): rewritten
5016
5017 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5018
5019         * support/regression/tests/bug-908454.c: added
5020
5021 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5022
5023         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5024         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5025         (geniCodeCast): cosmetic, don't preserve bit storage class
5026         (geniCodeLeftShift): added promotion
5027         (geniCodeLogic): fixed regression
5028         * src/SDCCsymt.c (computeTypeOr): accept bits too
5029         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5030
5031 2004-03-07  Borut Razem <borut.razem AT siol.net>
5032
5033         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5034
5035 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5036
5037         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5038         version of pic16_genPackRegisters which does not check if ic is a
5039         CAST operator,
5040         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5041         function cause string1.c regression test fails
5042
5043 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5044
5045         * sim/ucsim/configure.in,
5046         * sim/ucsim/configure,
5047         * sim/ucsim/doc/Makefile.in: use docdir
5048         * src/SDCC.y: fixed sbit atrributes
5049         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5050         * src/SDCCast.c (decorateType): |^& need special promotion handling
5051         * src/SDCCast.h,
5052         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5053         * src/SDCCsymt.h (computeType),
5054         * src/SDCCicode.c: computeType() needs op
5055         * src/SDCCsymt.c (checkTypeSanity),
5056         * doc/sddman.lyx: "plain" bitfields are unsigned
5057         * src/SDCCsymt.c (computeTypeOr): added
5058         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5059         |^& ops
5060         * src/SDCCval.c (val*): computeType() needs op
5061         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5062         * support/regression/tests/onebyte.c: added tests for |^&
5063
5064 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5065
5066         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5067         for writing icode into asm output.
5068
5069 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5070
5071         * src/pic16/device.c: added some debug lines enabled
5072         with macro DEBUG_CHECK,
5073         * src/pic16/genarith.c: more debug in genPlus,
5074         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5075         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5076         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5077         * (aopForSym): onStack symbols are re-placed in data memspace,
5078         and onStack flag is cleared,
5079         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5080         copy temporary pcodeop,
5081         * (genPcall): added warning for not updating PCLATU,
5082         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5083         always true for pic16 port,
5084         * (genMultOneWord): NEW, supports integer multiplication,
5085         * (genMult): modified to call genMultOneWord,
5086         * (ifxForOp): added warning when return NULL,
5087         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5088         flag is set before call to operandFromSymbol for implicit
5089         added structures,
5090         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5091         options.intlong_rent are set by default,
5092         * (_hasNativeMulFor): modified to allow port generation of integer
5093         multiplication,
5094         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5095         set regtype to REG_SFR for all registers, restricting seting the
5096         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5097
5098 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5099
5100         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5101         more than 500 times in the regression tests
5102
5103 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5104
5105         * support/Util/SDCCerr.h,
5106         * support/Util/SDCCerr.c,
5107         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5108         enumerator_list),
5109         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5110         for symbol conflicts.
5111         * support/valdiags/tests/enum.c,
5112         * support/valdiags/tests/tentdecl.c,
5113         * support/valdiags/tests/struct.c: expect possible error messages
5114         referring to original symbol definitions.
5115         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5116         * src/SDCCsymt.h,
5117         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5118
5119 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5120
5121         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5122
5123 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5124
5125         * src/pic16/ralloc.c (newReg): fixed bug #908929
5126
5127 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5128
5129         * src/ds390/gen.c: added missing #include "main.h"
5130
5131 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5132
5133         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5134         checking if symbol is already in set,
5135         * src/pic16/device.h: prototype for checkAddSym,
5136         * src/pic16/gen.c: (_G): added entry interruptvector,
5137         * (assignResultValue): removed some commented out lines,
5138         * (genFunction): check for ISR via sym->type, absolute section for
5139         interrupt code is created via a new pBlock, the goto instruction is
5140         placed now correctly at the interrupt vector position, changed all
5141         references from ivec to _G.interruptvector,
5142         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5143         is the interrupt is a high priority one, same for return from ISR,
5144         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5145         externs to calls of checkAddSym,
5146         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5147         pic16_pcode_verbose flag is set,
5148         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5149         * src/pic16/pcoderegs.c: message about how many registers are saved
5150         will only be emitted if pic16_pcode_verbose flag is set,
5151
5152 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5153
5154         * src/ds390/ralloc.h,
5155         * src/ds390/ralloc.c (ds390_regWithIdx),
5156         * src/ds390/gen.c (emitcode),
5157         * src/ds390/main.h,
5158         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5159         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5160         ds390operandCompare, getRegsRead, getRegsWritten,
5161         initializeAsmLineNode): customized instruction size calculation for
5162         ds390, started basis for some register optimizations
5163         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5164         corresponding assembly output
5165         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5166         missing push/pop of r0/r1. Optimized push/pops
5167
5168 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5169
5170         * src/mcs51/main.c (instructionSize): fixed ACALL size
5171         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5172
5173 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5174
5175         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5176         the sorting of rlist with NULL elements
5177         * (print_idataType, print_idata): NEW to create idata sections
5178         * src/pic16/device.h: idataSymSet new variable
5179         * src/pic16/gen.c (genFunction): fixed some bugs in string
5180         comparing, improved the absolute section creation for ISRs,
5181         added FSR0L/FSR0H in registers that are saved in an ISR,
5182         * (genInline): fixed the processing of inline snippets,
5183         now they undergo no process by the peephole optimizer
5184         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5185         are placed in idataSymSet,
5186         * (pic16emitStaticSeg): extern symbols are added in externs,
5187         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5188         switching when aboslute variables are placed in access bank memory
5189         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5190         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5191         commented out with #if,
5192         * (pic16_packRegisters): reintroduce the check for CAST because some
5193         symbols are not correctly handled,
5194         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5195         pCodeInstruction instead of pCode,
5196         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5197         pCodeAsmDir definition,
5198         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5199         directive, then the argument directive is emitted without the leading
5200         tab, hack for inline labels which must be in the first column,
5201         * (compareLabel,pic16_findNextInstruction),
5202         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5203         * (insertBankSwitch): modified for the new pCodeAsmDir,
5204
5205 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5206         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5207
5208         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5209         instance,
5210         * (pushSide): commented out with #if,
5211         * (assignResultValue): fixed some typos in saving
5212         registers,
5213         * (genPcall): FIXED and sync'ed with genCall,
5214         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5215         * (genNearPointerGet): fixed to handle some more cases,
5216         implementation scheme via table reads,
5217         * (genConstPointerGet): modified to access code memory correct,
5218         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5219         and improved to handle some cases
5220         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5221         instead of "RETLW" for init data
5222         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5223         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5224         variables are placed in access bank memory (<0x80 and >=0xf80),
5225         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5226         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5227         TBLWT_POSTDEC,TBLWT_PREINC
5228         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5229         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5230         directives
5231         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5232         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5233         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5234         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5235
5236 2004-02-29  Borut Razem <borut.razem AT siol.net>
5237
5238         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5239         support/Util/findme.h, support/Util/system.h: enhance binary relative
5240         search for lib and include by using findProgramPath()
5241
5242 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5243
5244         * src/SDCCpeeph.h,
5245         * src/SDCCpeeph.c (pcDistance),
5246         * src/port.h,
5247         * src/mcs51/ralloc.h,
5248         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5249         * src/mcs51/main.h,
5250         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5251         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5252         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5253         size calculation port specific, started basis for some register
5254         optimizations
5255         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5256         missing push/pop of r0/r1. Optimized push/pops
5257         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5258         * device/lib/_modsint.c (_modsint),
5259         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5260         and stack version so regression tests pass
5261
5262 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5263
5264         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5265         * src/SDCCast.c (decorateType): catch another small optimization
5266         with '?' operator
5267         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5268         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5269         modified to finally use computeType() all over SDCC,
5270         see Feature Request #877103
5271         * src/SDCCval.h: cosmetic
5272         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5273         valCompare(); regression tested in muldiv.c
5274         * support/regression/tests/muldiv.c (testMod): mod sign follows
5275         dividend only
5276
5277 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5278
5279         * src/SDCCast.c (decorateType): fixed bug #902362
5280         * doc/INSTALL.txt: fixed install instructions for win32
5281
5282 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5283
5284         * device/include/Makefile.in (install): fixed by replacing spaces
5285         by tabs
5286         * doc/README.txt,
5287         * doc/INSTALL.txt: updated for release
5288         * doc/sdccman.lyx: added warning for --xstack being buggy
5289
5290 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5291
5292         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5293         to eliminate build warnings.
5294         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5295
5296 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5297            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5298
5299         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5300         removed -penable-stack, added comment for stack pragma, added
5301         warning for not initializing the stack/frame registers, removed
5302         comment at interrupts section
5303
5304         Stack is made permanent, there is no ability to disable stack usage.
5305         * src/pic16/device.h,
5306         * src/pic16/device.c: removed all references to USE_STACK macro,
5307         * src/pic16/device.c (pic16_dump_section): when no elements in
5308         rlist, free rlist before return,
5309         * (pic16_dump_int_registers): NEW, internal registers are a new set
5310         of general purpose registers reused by each function,
5311         * (checkAddReg): returns 1 if registers is added to set,
5312         * (pic16_groupRegistersInSection): when a registers is of type
5313         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5314         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5315         SRCASECMP macro is moved here from device.c
5316         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5317         PO_PCLATU, PO_PRODL, PO_PRODH,
5318         * (pic16_pCodeOpType, genMinus,
5319         changed compares to "a" register, with AOP_ACC,
5320         * (pic16_genPlus): fixed some bugs and indented properly,
5321         * (pic16_addSign): changed size to size+offset in the MOVWF
5322         instruction,
5323         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5324         multiply 8-bit operand by literal, result is 8-bit,
5325         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5326         multiply 2 8-bit operand, result is 8-bit,
5327         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5328         genUMult8X*_16,
5329         * src/pic16/gen.c: changed accUse to contain WREG only,
5330         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5331         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5332         true, do not use immediate addressing any more unless sym is a
5333         pointer in codespace,
5334         * (aopForRemat): do not use immediate addressing when symbol not in
5335         codespace and when symbol's address is requested,
5336         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5337         accUse size (= 1),
5338         * (aopGet): added case for AOP_ACC and don't return "accumulator
5339         bug" but WREG instead,
5340         * (popGetTempReg): pushes contents of temporary register in stack,
5341         * (popReleaseTempReg): pops contents of temporary register from
5342         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5343         * (pic16_popGet): separated case AOP_ACC to return register WREG
5344         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5345         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5346         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5347         the use of immediate pointers to certain cases only.
5348
5349         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5350         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5351         * (assignResultValue, genCall, genRet): modified to use the new
5352         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5353         genPcall is still broken,
5354         * (genFunction): added code to create 'A' type pBlocks when
5355         interrupt functions are generated, code not extensively tested yet,
5356         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5357         * (genEndFunction): modified so ISRs pop stored registers from stack,
5358         * (genMultOneByte): cleanup,
5359         * (AccRsh): added flag andmask, to and result with appropriate mask,
5360         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5361         * (genDataPointerGet): fixed and reenabled its use,
5362         * (genNearDataPointerGet): bugs fixed,
5363         * (genDataPointerSet): bugs fixed,
5364         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5365         pic16_DumpSymbol, pic16_DumpOp,
5366         * src/pic16/genutils.h: function prototypes for the above functions,
5367         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5368         pointers,
5369         * (pic16emitRegularMap): many many many improvements, but needs a
5370         major cleanup,
5371         * src/pic16/main.c: enable_stack in pic16_options is removed,
5372         * (_pic16_parseOptions): removed command line options -penable-stack,
5373         * (_process_pragma): emit stack symbol only when stack pragma is
5374         processed,
5375         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5376         redirected to FSR0L/FSR0H pair,
5377         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5378         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5379         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5380         for immediates,
5381         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5382         * (dumpPicOptype): NEW,
5383         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5384         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5385         with movff instruction,
5386         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5387         added pic16_int_regs, some packRegsFor* functions are commented out,
5388         because produce errors,
5389         * src/pic16/NOTES: minor modifications
5390
5391 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5392
5393         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5394         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5395         --pack-iram.
5396         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5397         * as/mcs51/lkaomf51.c: fixed bug #895763
5398
5399 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5400
5401         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5402
5403 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5404
5405         * doc/sdccman.lyx: added details about the HC08 storage classes and
5406         interrupts, fixed the register usage info for z80 & gbz80
5407
5408 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5409
5410         * doc/sdccman.lyx: added more pic16 port documentation
5411         * device/include/pic16/: added header pic18fregs.h
5412
5413 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5414
5415         * doc/sdccman.lyx: added Vangelis' contribution
5416
5417 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5418
5419         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5420         extend to the next CALL or PCALL, not just to the next CALL.
5421
5422 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5423
5424         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5425
5426 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5427
5428         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5429         bug #895752 and a better fix for bug #716790
5430
5431 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5434
5435 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5436
5437         * doc/sdccman.lyx: minor changes, minor changed
5438
5439 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5440
5441         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5442         which can't handle SDCC_NEWONEBYTEOPS,
5443         (geniCodeMultiply): removed conversion from mult to shift for pic14
5444         and pic16
5445
5446 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5447
5448         * src/hc08/gen.h,
5449         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5450         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5451         thus fixing bug #895406
5452
5453 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5454
5455         * device/lib/_modsint.c,
5456         * device/lib/_modslong.c: sign follows divisor only
5457         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5458         signs or signedness can be ignored
5459         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5460         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5461         added optimization for IFX,
5462         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5463         arguments;
5464         reenabled optimization for IFX, which was removed on 2004-01-11
5465         * src/SDCCast.h: added return type IFX
5466         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5467         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5468         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5469         SDCC_OLDONEBYTEOPS selects the old behaviour
5470         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5471         changed again and commented promotion rule
5472         * src/SDCCval.c (valDiv): promotion no longer necessary
5473         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5474         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5475         rewritten
5476         * support/regression/tests/onebyte.c: added
5477
5478 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5479
5480         * gen.c (genInline): reverted to old code for assemnling inline
5481         code because of bug reported James Chadd
5482
5483 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5484
5485         * ralloc.h: missing declarations from previous patch,
5486         seems that patch for ralloc.h was never applied, fixed
5487
5488 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5489            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5490
5491         * pcode.c,
5492         * pcode.h,
5493         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5494         indirect addressing. Marked FSR0 as deprecated
5495         * gen.c (pointerCode): commented out, not needed now
5496         (pic16_popGet2p): new MOVFF helper function
5497         (genGenPointerGet),
5498         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5499         (shiftRLong): removed duplicate debugging info
5500
5501 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * src/ds390/gen.c (genNearPointerGet),
5504         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5505         optimization with bits, but not bitfields.
5506         * src/ds390/ralloc.c (packRegisters),
5507         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5508
5509 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5512
5513 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5514
5515         * src/SDCCsymt.h,
5516         * src/SDCCicode.c (operandFromSymbol),
5517         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5518         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5519         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5520         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5521         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5522         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5523         bug #892038
5524         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5525         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5526         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5527         * src/SDCCsymt.c (newSymbol),
5528         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5529         enumerator_list),
5530         * src/SDCCval.h,
5531         * src/SDCCval.c (newiList): fixed bug #885705
5532
5533 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5534
5535         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5536         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5537
5538 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5539
5540         * device/include/c8051f120.h,
5541         * device/include/c8051f300.h,
5542         * device/include/c8051f310.h: added/updated header files for Silicon
5543         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5544         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5545         in new section Submitting patches
5546
5547 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5548
5549         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5550         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5551         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5552         genGenPointerSet),
5553         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5554         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5555         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5556         genGenPointerSet),
5557         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5558         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5559         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5560         genGenPointerSet),
5561         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5562         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5563         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5564         genGenPointerSet): fixed bug #892400
5565         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5566         to eliminate build warnings.
5567         * src/SDCCast.c (processParms),
5568         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5569         fixed bug 751859
5570         * support/valdiag/valdiag.py: added GCC to the list of defines active
5571         when compiling with gcc
5572
5573 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * support/Util/SDCCerr.h,
5576         * support/Util/SDCCerr.c,
5577         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5578         with an incomplete type (fixed bug #883734)
5579         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5580
5581 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5582
5583         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5584
5585 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5586
5587         * src/SDCCast.c (decorateType),
5588         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5589         function pointer implementation
5590         * support/regression/tests/funptrs.c: added tests to verify both forms
5591         of function pointers work correctly. Added tests to verify parameters
5592         are passed in the correct order.
5593
5594 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5595
5596         * device.c (regCompare): registers are sorted by ascending
5597         address and increasing size,
5598         * main.c (_pic16_finaliseOptions): removed the declaration
5599         of compiler macro MCU. Now a macro of the format pic18fxxxx
5600         will be defined from the command line
5601
5602 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5603             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5604
5605         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5606         PCOP_RLCF was overwritten!
5607         * gen.c (genSkip): commented out calls to pic16_emitcode,
5608         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5609         * (genlshTwo),
5610         * (genRRC): added debugging info,
5611         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5612         overwritten while shifting,
5613         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5614         overwritten while shifting,
5615         * (AccLsh),
5616         * (AccRsh),
5617         * (shiftLLeftOrResult),
5618         * (shiftRLeftOrResult),
5619         * (shiftRLong),
5620         * (shiftLLong): Implemented with pic16_emitpcode
5621         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5622         * (genLeftShift): Fixed bug, operand for shift by variable always
5623         was "and"ed with 0x0f,
5624         * (genLeftShiftLiteral),
5625         * (genrshTwo),
5626         * (genRightShiftLiteral): added debugging info,
5627         * (genrshFour): added comment,
5628         * (genRightShift): determined signedness from operand "left"
5629         instead of "result"
5630
5631 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5632
5633         * src/SDCCicode.c (geniCodeParms),
5634         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5635         function pointers, fixed function pointer bugs #861242 and #861896
5636
5637 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5638
5639         * device/include/c8051f000.h,
5640         * device/include/c8051f120.h,
5641         * device/include/c8051f300.h: added header files for Silicon
5642         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5643
5644 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5645
5646         * src/SDCCast.c (processParams): added new type flow and restructured
5647         (gatherAutoInit): added new type flow
5648         (addCast): cosmetic changes
5649         (getLeftResultType): added new type flow for array indices, patch
5650         provided by Stas, see FR #877103
5651         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5652         array index patch by Stas
5653         * src/SDCCast.h: added prototype getResultTypeFromType()
5654         * src/SDCCval.h,
5655         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5656         * src/pic/glue.c (pic14emitStaticSeg),
5657         * src/pic16/glue.c (pic16emitStaticSeg),
5658         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5659         for initialization of symbols
5660         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5661         * support/Util/SDCCerr.h:
5662         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5663         * .version: bumped version number to 2.3.8
5664         * device/include/Makefile.in (install),
5665         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5666         avoid warnings
5667
5668 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5669
5670         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5671         Slade Rich fixed an optimization bug
5672         * src/pic/pcodepeep.c,
5673         * src/pic/pcoderegs.c
5674         * doc/Makefile (install): added test for directory
5675
5676 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5679         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5680         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5681         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5682         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5683         * as/mcs51/asexpr.c (term),
5684         * as/hc08/asexpr.c (term): fixed bug #887146
5685
5686 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5687
5688         * src/z80/gen.c (genMult): handle single byte result product
5689         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5690         DUMMY_READ_VOLATILE (fixed bug #886367)
5691
5692 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5693
5694         * support/regression/tests/libmullong.c: fixed logic, on little endian
5695         hosts we ended without a mullong_wrapper()
5696
5697 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5698
5699         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5700         virus/worm forged address usage.
5701
5702 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5703
5704         Fixed promotion, it should be done on AST level:
5705         * src/SDCCast.c (addCast): added promotion to int
5706         (decorateType): updated call to upCast()
5707         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5708         usualUnaryConversions()
5709
5710 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5711
5712         * support/regression/tests/literalop.c (mulWrapper): Added a
5713         wrapper to remove integer overflow warnings.
5714
5715         * support/regression/tests/float_trans.c: Made work on host.
5716
5717         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5718         location of sz80.
5719
5720         * support/regression/generate-cases.py (main): Changed from inline
5721         to a main method.
5722
5723         * doc/Makefile (install): Changed to depth first to get rid of
5724         missing directory install warning.
5725
5726         * as/Makefile (install-doc): Made work on Mac.
5727
5728 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5729
5730         * src/SDCCast.c: added an additional type flow in decorateType() of
5731         opposite direction, see feature request #860006; it's enabled at runtime
5732         by setting the environment variable SDCC_NEWTYPEFLOW
5733         * src/SDCCast.h: changed prototype of decorateType()
5734         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5735         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5736         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5737         see feature request #877103
5738         * src/SDCCval.c: updated call of decorateType()
5739         (valBitwise): fixed bug #882876
5740         (valMinus): added promotion
5741         (valLogicAndOr): result is unsigned
5742         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5743         * src/SDCCsymt.c (computeType),
5744         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5745         must not cause an unsigned operation
5746         * src/pic/glue (pic14emitRegularMap),
5747         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5748
5749 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5750
5751         * src/pic/pcode.c (PCodeID): commented out left over debug code
5752
5753 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5754
5755         * support/valdiag/tests/overflow.c: added shift tests
5756         * src/pic/device.c,
5757         * src/pic/gen.c,
5758         * src/pic/gen.h,
5759         * src/pic/glue.c,
5760         * src/pic/main.c,
5761         * src/pic/pcode.c,
5762         * src/pic/pcode.h,
5763         * src/pic/pcodepeep.c,
5764         * src/pic/pcoderegs.c,
5765         * src/pic/ralloc.c,
5766         * src/pic/ralloc.h: applied patch from Slade Rich;
5767         added support for multiple code pages and multiple RAM banks on the
5768         PIC 14 port. The ASM files now no longer simply assume all the
5769         code / RAM are in the same page / bank. This means the linker can
5770         safely allocate code/RAM of separate ASM files to different pages/banks.
5771         * doc/sdccman.lyx: added Slade's tips
5772         * src/mcs51/peeph.def: fixed bug #880768
5773
5774 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5775
5776         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5777         * src/SDCCast.c (decorateType): fixed bug #880197
5778
5779 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5780
5781         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5782         getopt.h.
5783
5784         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5785         strtof is not part of C89 and isn't included with Mac OS X.
5786
5787 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5788
5789         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5790         shiftL2Left2Result): fixed bug #879326
5791         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5792         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5793         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5794         address fetch for clr instruction
5795         * device/lib/hc08/_mulint.c: created optimized assembly version
5796         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5797
5798 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5799
5800         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5801         proposed in FR #877103
5802
5803 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5804
5805         * src/SDCCval.c (cheapestVal): added missing checks
5806         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5807         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5808
5809 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5810
5811         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5812         equal operands
5813
5814 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5815
5816         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5817         loaded with the linker search paths (-L arguments) and the libraries
5818         to be linked with the current source (-l arguments). Changes
5819         currently will affect only the pic16 port.
5820         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5821         include path the port specific paths and port specific libraries,
5822         * gplink command now contains the $3 argument,
5823         * src/pic16/device.h,
5824         * src/pic16/device.c,: structure PIC_device is made public and
5825         renamed to PIC16_device, the same for variable Pics which is renamed
5826         to Pics16. Updated all references to them.
5827         * src/pic16/glue.c (pic16glue): corrected bug with code
5828         initialization which bypassed the variable initializations block.
5829
5830         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5831         COMPILE_FLAGS and added the --nostdinc option
5832
5833 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5834
5835         * device/include/mc68hc908jb8.h: Register defs for another member
5836         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5837
5838 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5839
5840         Documenting changes from previous commits.
5841         * configure.in (version 1.56),
5842         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5843         when generating output files to configure the pic16 library,
5844         but now I've commented it out, since gputils aren't installed in the
5845         SF compile farm, so library won't compile
5846
5847         * device/lib/Makefile.in (version 1.56): initially I've added in
5848         target 'all' the prerequestive 'model-pic16' so it compiled the
5849         pic16 library, but now I've commented it out for the same reasons
5850         above,
5851         * added targets 'model-pic16' and 'objects-pic16' to compile the
5852         library
5853         * added target 'port-specific-objects-pic16' to handle the
5854         generated libraries and copy them into the build/ directory
5855         * added target 'clean-intermediate-pic16' to clean intermediate
5856         files into pic16 directory
5857         * in target 'installdirs' added line to create directory pic16 in
5858         the installation path
5859
5860         * device/include/Makefile.in (version 1.11): in target 'install'
5861         added lines to copy all header files to installation path,
5862         * in target 'installdirs' added line create directory for pic16
5863         headers in the installation path
5864
5865 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5866
5867         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5868          a function call
5869
5870 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5871
5872         * configure,
5873         * device/lib/configure.in,
5874         * device/lib/configure: fixed for autoconf 2.57
5875
5876 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5879         option so that it actually works. Made it specific to the z80, since
5880         the gbz80 doesn't have these kinds of I/O ports.
5881
5882 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * device/include/z180.h,
5885         * device/lib/_memcpy.c,
5886         * device/lib/_memmove.c,
5887         * device/lib/_mulint.c,
5888         * device/lib/ser_ir.c,
5889         * device/lib/ser_ir_cts_rts.c,
5890         * device/lib/_strcmp.c,
5891         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5892         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5893         portmode; added deprecation warning for bank= and protmode= forms.
5894         Also, guard against buffer overflow.
5895         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5896
5897 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5898
5899         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5900         changed interrupt vector table generation to only emit declared vectors.
5901         * device/include/Makefile.in: added missing backslash
5902         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5903
5904 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         Mainly changes to support compilation of the device libraries
5907         * src/pic16/device.c: stack is allocated via symbol and not
5908         via literal number. The symbol is placed in the corresponding
5909         position of the data ram
5910         * (pic16_dump_section): relocatable and absolute uninitialized
5911         data are now emitted in sorted order to reduce section naming,
5912         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5913         weren't marked as being in the access bank,
5914
5915 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5916
5917         Added portion of GNU PIC Library under the directory
5918         device/include/pic16 and device/lib/pic16. These files
5919         contain the declarations of SFRs for the PIC18Fxx2 devices.
5920         The directory is initialized via configure from toplevel.
5921
5922 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5923
5924         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5925         the spilllocations to be compared correctly
5926
5927 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5928
5929         * src/SDCCast.c (decorateType): fixed bug introduced today
5930
5931 2004-01-12  Borut Razem <borut.razem AT siol.net>
5932
5933         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5934         doc/sdccman.lyx: upper case pragmas are deprecated
5935
5936 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5939         in simpler and even better code
5940
5941 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5942
5943         * src/SDCCicode.c (operandOperation): fixed bug #874819
5944         * src/SDCCast.c (decorateType): fixed
5945         char foo (unsigned long ul) { return ul > 0; }
5946
5947 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5948
5949         * doc/sdccman.lyx: Moved and added some sections, small changes
5950         all over. Telling LaTeX to be less strict with word spacing
5951         to better keep the right margin. Changed some notes about
5952         maintainance of the ports in section 3.2.1 - is it OK like this?
5953
5954 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5955
5956         SDCC source changes:
5957         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5958         convilong): modified to inform the pic16 port that builtin functions
5959         are external
5960
5961         PIC16 PORT specific changes:
5962         * src/pic16/device.c pic16_dump_equates() added,
5963         processor registers declared internally by the port are emitted in
5964         the translation as equates,
5965         * src/pic16/gen.c: inline code is passed unprocessed to the
5966         translation,
5967         * (pic16_popGetLit2): fnuction modified to take second operand as
5968         pCodeOp pointer and not as literal,
5969         * (popRegFromIdx): prefixed with pic16_,
5970         * (pic16_popCombine2): modified to receive already allocated pCode
5971         operands,
5972         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5973         * (genFunction): initializes local stack frame and pushes on stack
5974         all the registers used by this function,
5975         * (genEndFunction): restores all registers from stack and restores
5976         stack frame,
5977         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5978         improvements,
5979         * (pic16glue): changed the program startup sequence,
5980         * added new dbName code 'A' for functions placed in absolute section
5981         * src/pic16/main.c: added function attribute _naked,
5982         * added pragma 'code' to place a fnuction at an absolute address,
5983         * added command line arguments --debug-ralloc and --pcode-verbose,
5984         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5985         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5986         * (pic16_newpCodeOpLit2): modified to take the second operand as
5987         pCodeOp pointer,
5988         * (pic16_printpBlock): modified to emit each function in a separate
5989         section,
5990         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5991         UPPER for immediate operands,
5992         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5993         instruction,
5994         * src/pic16/peeph.def: all peepholes with movff are commented out,
5995         because there is a problem in the pcode peep optimizer,
5996         * src/pic16/ralloc.c: the register allocator can now reuse local
5997         function symbols for another function. This saves register usage.
5998         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5999
6000         Added file src/pic16/NOTES with information about program writing on
6001         the current port version.
6002
6003 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6004
6005         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6006         and peephole 252 (array access)
6007
6008 2004-01-09  Borut Razem <borut.razem AT siol.net>
6009
6010         * src/SDCCmain.c : fixed #872250: -l command line defined library
6011           files are scanned before standard library files
6012
6013 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/SDCCast.c (decorateType): fixed bug #874046
6016
6017 2004-01-09  Borut Razem <borut.razem AT siol.net>
6018
6019         * support/scripts/sdcc.nsi: remove previous installation
6020
6021 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6022
6023         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6024         bytes for last interrupt vector (mcs51)
6025         * sdcc.spec: fixed typo
6026
6027 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6030         gen51Code): more efficient parameter receive for --model-large
6031         ("bug" #845294)
6032
6033 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6034
6035         * src/ds390/main.c,
6036         * src/z80/main.c: added missed needLinkerScript flags (more than
6037         one port structure defined in these file)
6038         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6039         bug #795325
6040
6041 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6042
6043         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6044         * src/port.h: added flag needLinkerScript in port->linker
6045         structure to inform whether to create a .lnk file or not,
6046         * src/avr/main.c,
6047         * src/ds390/main.c,
6048         * src/hc08/main.c,
6049         * src/mcs51/main.c,
6050         * src/pic/main.c,
6051         * src/pic16/main.c,
6052         * src/xa51/main.c,
6053         * src/z80/main.c: changed appropriately to configure
6054         needLinkerScript flag
6055         * src/pic/gen.c,
6056         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6057         * src/pic/glue.c: added variable udata_section_name to
6058         override default uninitialized data segment definition for
6059         devices only with SHAREBANK memory (reported from Erik Epetrich)
6060         * (pic14emitOverlay): modified to emit a commented overlay segment
6061         directive when no overlay data exist
6062         * (picglue): modified to emit uninitialized data segment
6063         according to udata_section_name
6064         * src/pic/main.c (_pic14_parseOptions): added command line
6065         options --udata-section-name=[name] to override default
6066         udata definition name
6067         * modified _linkCmd and _asmCmd to include compiler passed
6068         arguments via -W option
6069         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6070         object file from '.rel' to '.o' in port->linker structure,
6071         changed size of fptr from 2 to 3 in port structure
6072
6073 2004-01-07  Borut Razem <borut.razem AT siol.net>
6074
6075         * support/scripts/sdcc.nsi: update PATH
6076         * support/scripts/sdcc.ico: craeted
6077
6078 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6079
6080         * device/include/Makefile.in: fix install
6081         * doc/Makefile: fix install
6082
6083 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6086         in bug #860505
6087         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6088         how the function variable allocation summary is displayed; also
6089         include information about variables allocated to the overlay
6090         segment
6091
6092 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6093
6094         * as/mcs51/lkmain.c: Help about -Y option
6095         * as/mcs51/lkarea.c: Fixed gcc warnings
6096
6097 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6098
6099         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6100         fixed warning
6101         * support/valdiag/tests/overflow.c: added
6102         * src/SDCCast.c (decorateType),
6103         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6104         LEFT_OP (left shift)
6105
6106 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6107
6108         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6109         (default behaviour).
6110
6111 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         A python script to validate compiler diagnostic messages. It can be
6114         used to verify that sdcc complains about bad c source code and
6115         gives a good location of the error.
6116         * support/valdiag/Makefile,
6117         * support/valdiag/valdiag.py,
6118         * support/valdiag/tests/*
6119
6120 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6123         * src/SDCCsymt.c (newEnumType),
6124         * src/SDCCsymt.h
6125         * support/Util/SDCCerr.c,
6126         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6127         enum related bugs.
6128         * support/regression/tests/enum.c: added test for enum values that
6129         require at least 2 bytes of storage.
6130
6131 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6132
6133         * src/common.h: added ifndef/define/endif macros
6134         around the header file.
6135         Bug reported from Jesus Calvino-Fraga
6136
6137 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6138
6139         * sdcc.spec: updated
6140         * device/include/Makefile.in: don't install CVS directories
6141         * device/lib/Makefile.in: added removal of CVS directories after install
6142         * doc/Makefile: fixed install, added local_icons
6143         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6144         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6145         * src/ds390/gen.c (genRightShift): fixed bug #870788
6146         * src/SDCCast.c (decorateType): fixed bug #870781
6147
6148 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6149
6150         PIC16 port related changes:
6151         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6152         added variable stackPos,
6153
6154         * gen.c: genCall, assignResultValue: added support for
6155         pushing/retrieving function parameters to/from stack,
6156         genFunction,genEndFunction: setup stack frame for the
6157         generated function,
6158         genAddrOf: will be changed according to bug 863624
6159
6160         * added files genutils.c and genutils.h which contain gen*
6161         debugged and optimised functions extracted from gen.c
6162
6163         * glue.c: added variable 'externs' which holds extern symbols,
6164         pic16emitRegularMap: is modified to properly handle relocatable
6165          symbols under the new scheme,
6166         pic16createInterruptVect: is modified
6167         pic16printPublics: is modified to emit 'global' assembler directives,
6168         added pic16_printExterns to print extern symbols,
6169         pic16glue: initializes stack/frame pointer in the beginning of
6170         the assembly output. Temporary hack, will be corrected later,
6171         because gplink yet does not support stack and SDCC does not
6172         yet support a type of crt0.o object to create the final binary.
6173
6174         * Removed many lines that contain 8051 legacy code.
6175         * The code is finally placed under a 'code' directive.
6176         * Added port specific options.
6177
6178         * _process_pragma: simplified since now we do not need *special*
6179         include file to define SFR registers. But a separate header
6180         will be needed. This will be developed later.
6181         * _pic16_parseOptions: added, parses port specific options:
6182         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6183         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6184         --preplace-udata-with=
6185
6186         * _pic16_setDefaultOptions: modified to initialize section names,
6187         but hack is temporarly out of order since it needs improvement.
6188         * _pic16_genAssemblerPreamble: configuration words are emitted by
6189         their address instead of their name. This part is incomplete and
6190         supports only the 18Fxx2 devices. Other devices will emit an error
6191         during assembly since they do not contain the same set of config
6192         registers
6193         * _pic16_genIVT: is modified,
6194
6195         * pcode.c: added definitions for some hardware registers that are needed
6196         for stack support
6197         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6198         All PCI entries are updated. Now LFSR is supported.
6199         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6200         * added pic16_newpCodeOpLit2 to support instructions with
6201         two literal arguments
6202         * pic16_pCode2str: corrected code that emits assembler instructions
6203         with two literal operands and those that have an access bit modifier
6204         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6205         this fixes a bug which caused some labels to be lost, when an
6206         assembler directive was added, i.e. banksel,
6207         * pic16_FixRegisterBanking: improved logic that causes the insertion
6208         of bank switching,
6209         * InlineFunction: functions that are called once, are not any more
6210         inlined. This can be a port option in the future,
6211
6212         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6213
6214         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6215         hold the corresponding uninitialized symbols,
6216         * pic16_allocProcessorRegister: registers have explicit marked the
6217         accessBank field,
6218         * pic16_allocInternalRegister: registers are explicit marked as
6219         not used,
6220         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6221         processing list, so bit registers were lost,
6222         *
6223
6224         * ralloc.h: added field 'accessBank' and original symbol operand
6225         in register definition,
6226         * removed the field isMapped from register definition,
6227
6228         ** Several functions have been removed from various sources:
6229         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6230         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6231         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6232         pic16_assignRelocatableRegisters
6233
6234         ** others have been introduced:
6235         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6236         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6237
6238 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6239
6240         * support/scripts/inc2h.pl: changed definition of BIT_AT
6241         to emit 'sbit at' instead of 'bit at'. This was a request.
6242
6243         PIC16 port related preliminary changes:
6244         * gen.c: prefixed function popRegFromString with
6245         pic16_ and all references to it corrected
6246         * pcode.c: all pic16_pc_* hardware registers prefixed
6247         with underscore (_),
6248         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6249         * ralloc.c: newReg(): when register is REG_SFR then
6250         set address to rIdx,
6251         pic16_allocProcessorRegister(): marks register wasUsed=0
6252         pic16_writeUsedRegs(): added a call to assign processor
6253         registers via pic16_assignFixedRegisters
6254
6255 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6256
6257         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6258         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6259         variables in unused register banks.  Also the SSEG is placed
6260         wherever there is enough space for it, and IDATA can be anywhere
6261         in internal RAM.  For now compile using -Wl-Y[stack_size].
6262         The mem file is different for this option as well, since it
6263         makes no sense of talking about DSEG lenght.
6264
6265 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6266
6267         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6268         in certain cases, e.g. when ROM assignment, patch provided
6269         from Albert den Haan.
6270
6271 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6272
6273         Many signedness and type propagation fixes:
6274         * src/SDCCicode.c: made geniCodeCast() static
6275         replaced SPEC_ by IS_ (cosmetic)
6276         (operandOperation): fixed div and mod operation
6277         (usualBinaryConversions): added support for promotion of char
6278         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6279         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6280         (geniCodeAdd): an array index will stay unsigned, even if promoted
6281         from char to int
6282         (geniCodeArray): ditto
6283         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6284         * src/SDCCsymt.c (computeType): added more support for char;
6285         promotion of char is selectable by promoteCharToInt, fixed signedness
6286         for all cases
6287         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6288         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6289         * src/SDCCval (val*): replaced signedness calculation by
6290         computeType()
6291         rearranged if-branches (cosmetic)
6292         (valShift): added warning W_SHIFT_CHANGED
6293         (valCompare): fixed problem with different types
6294         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6295         * support/regression/tests/literalop.c: added many cases
6296         * support/regression/tests/ast_constant_folding.c: changed finally to
6297         'unsigned int'
6298         * .version: new year, new version: 2.3.7
6299         * src/SDCCmain.c (main): applied patch #866468
6300         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6301         provided by Scott Bronson
6302         * doc/sdccman.lyx: updated documentation for sdcdb
6303         updated and added chapter tips
6304
6305 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6306
6307         * src/SDCCsymt.h: missing from yesterday's commits
6308
6309 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6310
6311         * src/SDCC.y (struct_or_union_specifier),
6312         * support/Util/SDCCerr.c,
6313         * support/Util/SDCCerr.h: verify that struct & union tags are used
6314         as declared.
6315
6316 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/SDCCglobl.h: missing from yesterday's commits
6319
6320 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6321
6322         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6323         sft_attributes, struct_declaration, parameter_declaration,
6324         type_name, start_block, declaration_list),
6325         * src/SDCC.lex (check_type): support redefinition of typedef names
6326
6327 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6328
6329         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6330         aligned xdata arrays. Erik helped me with the if clause.
6331
6332 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6333
6334         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6335         warning
6336
6337 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6338
6339         * src/SDCCast.h,
6340         * src/SDCCast.c (newAst_),
6341         * src/SDCCicode.h,
6342         * src/SDCCicode.c (ast2iCode, newiCode),
6343         * src/SDCCglobl.h,
6344         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6345         expr, statement, expression_statement, selection_statement,
6346         iteration_statement, expr_opt, jump_statement): foundation for tracking
6347         sequence points
6348         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6349         point code too)
6350
6351 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6352
6353         * support/Util/SDCCerr.c,
6354         * src/SDCCast.h,
6355         * src/SDCCast.c (createCase, createDefault, decorateType),
6356         * src/SDCClabel.c (labelUnreach),
6357         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6358         to error messages.
6359         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6360         (with thanks to Stas Sergeev)
6361         * device/include/time.h,
6362         * device/lib/time.c (CheckTime): suppress unreachable code warning
6363
6364 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6365
6366         * src/SDCCast.c (createIvalCharPtr),
6367         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6368         bug #753752)
6369         * support/regression/tests/nullstring.c: tests for these two bugs
6370
6371 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6372
6373         * support/Util/SDCCerr.h,
6374         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6375         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6376         about storage class and 'at' used inside struct or union
6377         * src/SDCCBBlock.c (iCodeFromeBBlock),
6378         * src/SDCCcse.c (ifxOptimize),
6379         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6380         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6381         printIval, emitStaticSeg, emitOverlay),
6382         * src/SDCClabel.c (deleteIfx),
6383         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6384         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6385         gatherAutoInit, processParms),
6386         * support/Util/SDCCerr.h,
6387         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6388         reporting for post-parse errors.
6389
6390 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6393         implicit casts via union; they don't work on big endian systems
6394         (possible fix for bug #861138)
6395
6396 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6397
6398         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6399         * src/mcs51/main.c: fixed the fix for bug #737001
6400
6401 2003-12-15  Borut Razem <borut.razem AT siol.net>
6402
6403         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6404
6405 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * support/makebin/makebin.c: put output in binary mode
6408
6409 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6410
6411         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6412         xdata and data memory on startup. Set the environment variable
6413         SDCC_NOGENRAMCLEAR to disable this.
6414         * src/mcs51/peephole.def,
6415         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6416         (allows non-interrupt and interrupt code to safely compete for a resource
6417         without the non-interrupt code having to disable interrupts)
6418
6419 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         * src/SDCCicode.c (geniCodeAdd),
6422         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6423         with valFromType if type might be a pointer and host is big endian).
6424         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6425         types, not just integer types.
6426         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6427         multiply defined with mismatching "at" address.
6428
6429 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6432         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6433         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6434         with embedded nulls (fixed bug #753752)
6435
6436 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6437
6438         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6439         Apparently this did not see much testing (endless loop)
6440
6441 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6442
6443         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6444
6445 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6448         gracefully handle NULL memmap pointers
6449
6450 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6451
6452         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6453         instead of deleting the iCode when an operand is volatile
6454         * src/z80/gen.c (genDummyRead),
6455         * src/mcs51/gen.c (genDummyRead),
6456         * src/ds390/gen.c (genDummyRead),
6457         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6458         not just IC_RIGHT
6459         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6460         * src/SDCC.y: fixed bug #850420
6461
6462 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         Applied z80 i/o port patch from Peter Townson and fixed some operators
6465         to better handle operands in A register.
6466         * device/include/z180.h
6467         * src/SDCC.y
6468         * src/SDCCglue.c
6469         * src/z80/gen.c
6470         * src/z80/gen.h
6471         * src/z80/main.c
6472         * src/z80/peeph-z80.def
6473         * src/z80/peeph.def
6474         * src/z80/z80.h
6475
6476 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6477
6478         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6479
6480 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6481
6482         * device/lib/hc08/_mullong.c: Removed extra #endif
6483
6484 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6485
6486         * sim/ucsim/hc08.src/inst.cc,
6487         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6488         carries from x to h
6489         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6490         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6491         * device/include/stdarg.h: fixed varargs for hc08
6492         * device/lib/Makefile.in,
6493         * device/lib/hc08/Makefile,
6494         * device/lib/hc08/_mulint.c,
6495         * device/lib/hc08/_mullong.c: fixed some endian problems
6496
6497 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6498
6499         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6500         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6501         * device/lib/_gptrget.c,
6502         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6503
6504 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6507         * src/SDCCast.c (astErrors): fixed bug #846007
6508         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6509
6510 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         * src/SDCCast.c (decorateType): disabled a transformation I added in
6513         revision 1.188 (access to fields of a structure at an absolute address);
6514         it breaks with bitfields, extern declarations, and gcse analysis.
6515         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6516         could be assigned through a pointer, so don't complain.
6517         * src/SDCCast.c (astErrors),
6518         * src/SDCCast.h,
6519         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6520
6521 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6522
6523         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6524         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6525         output of __config directives, since gpasm now supports them
6526         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6527         pre-processor macro, i.e. -DMCU=p18f452
6528         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6529         and modified to handle 'cast' icode similarly to '=' icode
6530         * src/pic16/device.h (typedef struct PIC_device): added field
6531         'extMIface' to indicate that chip has external memory interface
6532         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6533         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6534         18F8720
6535
6536 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6537
6538         * src/SDCC.y (pointer): fixed bug #846006
6539         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6540         * src/SDCCast.c (decorateType): fixed bug #846009
6541         * src/ds390/peeph.def,
6542         * src/ds390/gen.c (genAnd, genOr),
6543         * src/mcs51/peeph.def,
6544         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6545
6546 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6547
6548         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6549         * src/SDCCdflow.c
6550         * src/SDCCcse.c
6551         * src/SDCCcse.h
6552         * src/SDCCBBlock.h
6553         * src/SDCCBBlock.c
6554
6555 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6556
6557         fixed bug #845089
6558         * src/SDCCbitv.h,
6559         * src/SDCCbitv.c: added function to free a bitvector
6560         * src/SDCClrange.h,
6561         * src/SDCClrange.c: added function to recompute the liveranges
6562         * src/avr/ralloc.c,
6563         * src/ds390/ralloc.c,
6564         * src/hc08/ralloc.c,
6565         * src/mcs51/ralloc.c,
6566         * src/pic/ralloc.c,
6567         * src/pic16/ralloc.c,
6568         * src/xa51/ralloc.c,
6569         * src/z80/ralloc.c: recompute the liveranges after register packing
6570
6571 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6572
6573         * src/SDCCloop.c (newInduction): fixed bug #845630
6574
6575 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6578         inadvertantly left behind from my 2003-11-12 change
6579
6580 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6581
6582         Updated headers I neglected to commit yesterday.
6583         * src/SDCClrange.h,
6584         * src/SDCCicode.h
6585
6586 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6589         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6590         * src/SDCCopt.c (eBBlockFromiCode),
6591         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6592         the creation of the key hash table from the sequencing so it can be used
6593         earlier (for some GCSE bug fixes still pending)
6594
6595 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6596
6597         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6598         * support/regression/tests/addsub.c: testing genPlus shortcut
6599
6600 2003-11-15  Borut Razem <borut.razem AT siol.net>
6601
6602         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6603
6604 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6605
6606         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6607         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6608         ordering is immaterial.
6609         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6610
6611 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6612
6613         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6614         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6615         (SIGSEV) of bug #840381
6616         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6617         unlink new file before rename if new and old filenames are the same)
6618
6619 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6620
6621         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6622         uninitialized variables) for the mcs51. Set environment variable
6623         SDCC_GENRAMCLEAR to test.
6624         xdata initialization slightly shorter
6625
6626 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6627
6628         * src/SDCCsymt.h,
6629         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6630         #838241 & 780691 (basicly the same bug)
6631         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6632         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6633
6634 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6635
6636         * src/SDCCmain.c (linkEdit): "fix" #834252
6637
6638 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6641         * src/SDCCast.h,
6642         * src/SDCC.y: fixed bug #819403
6643
6644 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6645
6646         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6647         the reentrant attribute.
6648         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6649         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6650         simulation
6651         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6652         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6653         erroneously reduced to a literal.
6654         * src/hc08/ralloc.c (packRegisters, rematStr),
6655         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6656         some cases
6657
6658 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6659
6660         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6661         * doc/sdccman.lyx: changed from 'article' to 'book'
6662         * doc/Makefile: readded test_suite_spec and cdbfileformat
6663
6664 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6665
6666         * device/include/stdlib.h: include malloc.h to comply with ANSI
6667         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6668
6669 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6670
6671         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6672         * doc/clean.mk: also remove *.out files
6673         * doc/sdccman.lyx: some additions, larger top/bottom margins
6674
6675 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6676
6677         * src/SDCC.y: fixed bug #837365
6678         * support/regression/tests/bitopcse.c
6679         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6680         a symbol (might be valop instead)
6681         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6682         * device/lib/clean.mk: added hc08 to the cleaning list
6683
6684 2003-11-04  Borut Razem <borut.razem AT siol.net>
6685
6686         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6687           made 2003-11-04
6688         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6689           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6690           malloc is declared in standard stdlib.h
6691
6692 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * device/lib/hc08/Makefile: need to clean .rel not .o files
6695         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6696
6697 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6698
6699         * src/port.h,
6700         * src/hc08/main.c,
6701         * src/mcs51/main.c,
6702         * src/ds390/main.c,
6703         * src/z80/main.c,
6704         * src/avr/main.c,
6705         * src/pic/main.c,
6706         * src/pic16/main.c,
6707         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6708         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6709         tests (which uses the port's oclsExpense function)
6710         * src/SDCC.y,
6711         * src/SDCCast.c,
6712         * src/SDCCicode.c,
6713         * src/hc08/gen.c,
6714         * src/ds390/gen.c,
6715         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6716
6717 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/SDCCcse.c (ifxOptimize),
6720         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6721         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6722         deleting the IFX iCode.
6723         * src/hc08/ralloc.c: reduced unneeded slocs
6724         * src/hc08/gen.c: fixed bug in asmopToBoolean
6725
6726 2003-11-04  Borut Razem <borut.razem AT siol.net>
6727
6728         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6729           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6730           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6731           transferred to configure
6732
6733 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6734
6735         Use headers defined in the C[++] standards:
6736         * sim/ucsim/gui.src/serio.src/fileio.cc
6737         * sim/ucsim/gui.src/serio.src/frontend.cc
6738         * sim/ucsim/gui.src/serio.src/main.cc
6739         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6740         * support/Util/NewAlloc.c
6741         * as/hc08/lklibr.c
6742         * as/mcs51/lklibr.c
6743         * as/z80/aslist.c
6744         * as/z80/assym.c
6745
6746 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6747
6748         * Added MSVC projects for hc08 assembler and linker:
6749         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6750         /as/hc08/link_hc08.dsp
6751
6752 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6753
6754         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6755
6756 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6757
6758         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6759
6760 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6761
6762         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6763
6764 2003-10-31  Borut Razem <borut.razem AT siol.net>
6765
6766         * support/cpp2/cpplib.h,
6767           support/cpp2/cpplib.c,
6768           support/cpp2/cpplex.c,
6769           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6770           to switch _asm block preprocessing on / off. Default is
6771           #pragma preproc_asm +
6772
6773 2003-10-31  Borut Razem <borut.razem AT siol.net>
6774
6775         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6776           when outputting comment blocks (when executed with -C option) and
6777           _asm (SDCPP specific) blocks
6778
6779 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6780
6781         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6782
6783 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6784
6785         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6786
6787 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6788
6789         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6790         * src/SDCCast.c (decorateType): fixed bug #832664
6791
6792 2003-10-31  Borut Razem <borut.razem AT siol.net>
6793
6794         * support\cpp2\cpplex.c: fixed for SDCPP:
6795           comments(when executed with -C option) and _asm blocks
6796           were included even if they where in skipped #if block.
6797           Applied solution from GCC cpp 3.3.2
6798
6799 2003-10-31  Borut Razem <borut.razem AT siol.net>
6800
6801         * src/SDCC.lex: sdcc now understands both formats:
6802           '# <line_number> <file_name>' and
6803           '#line <line_number> <file_name>'
6804         * support/cpp2/cppmain.c: sdcpp now generates the standard
6805           '# <line_number> <file_name>' instead of former
6806           '#line <line_number> <file_name>'
6807
6808 2003-10-30  Borut Razem <borut.razem AT siol.net>
6809
6810         * support/cpp2/cpphash.h,
6811         * support/cpp2/cpplib.h
6812         * support/cpp2/cpplex.c,
6813         * support/cpp2/cppmain.c,
6814         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6815
6816 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6817
6818         Fixed a number of problems revealed by bug #827883.
6819         * src/SDCCloop.c (loopInvariants): Spill location of the
6820         result operand should be recomputed if extracted from
6821         a loop. Also, don't extract assignments of an iTemp
6822         from a literal.
6823         * src/SDCCast.c (isConformingBody): loop reversal should
6824         not occur if the control variable is involved with a
6825         relational operator.
6826
6827 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6828
6829         * .version: bumped to 2.3.6 to reflect the big improvements
6830         made by Erik and Klaus. Thanks!
6831
6832 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6833
6834         Replaced the livrange code.
6835         * src/SDCClrange.c: added new LR code
6836         * src/SDCCloop.c,
6837         * src/SDCCBBlock.h: removed remainig parts from old LR code
6838         * src/ds390/ralloc.c,
6839         * src/ds390/gen.c: minor fixes to make it work with new code
6840
6841 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6842
6843         * as/hc08/asm.h,
6844         * as/hc08/lkrloc.c,
6845         * src/hc08/gen.c,
6846         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6847         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6848         (tweaked fix for bug #818696)
6849
6850 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6853
6854 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6855
6856         * src/SDCCmain.c,
6857         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6858         * src/mcs51/gen.c (gencjneshort),
6859         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6860         more efficient (per Scott Bronson's suggestion)
6861
6862 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         Extended the semantics of the critical keyword to include
6865         individual statements. See RFE #827755 and #799831
6866         * src/SDCC.y
6867         * src/SDCCicode.c
6868         * src/SDCCopt.c
6869         * src/SDCCast.c
6870         * support/Util/SDCCerr.c
6871         * support/Util/SDCCerr.h
6872         * src/mcs51/gen.c
6873         * src/ds390/gen.c
6874         * src/hc08/gen.c
6875
6876 2003-10-19  Borut Razem <borut.razem AT siol.net>
6877
6878         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6879
6880 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6881
6882         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6883         Fixed bug #818696
6884         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6885         and predecrement operand is displayed
6886
6887 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6888
6889         * src/SDCCval.c (valMinus): fixed bug #826041
6890
6891 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6892
6893         Some hc08 related updates that I missed earlier
6894         * sim/ucsim/stypes.h
6895         * support/regression/ports/hc08/spec.mk
6896
6897 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6898
6899         New target "hc08" for the Motorola 68hc08 family of micros
6900
6901         * configure
6902         * configure.in
6903         * Makefile
6904         * src/hc08/*
6905         * src/SDCCmain.c
6906         * src/port.h
6907         * sim/ucsim/hc08.src/*
6908         * sim/ucsim/configure.in
6909         * src/ucsim/configure
6910         * sim/ucsim/packages_in.mk
6911         * as/hc08/*
6912         * as/Makefile
6913         * device/include/mc68hc908qy.h
6914         * device/lib/hc08/*
6915         * device/lib/Makefile.in
6916         * support/regression/ports/hc08/*
6917         * support/regression/Makefile
6918
6919 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6922         regression test
6923         * src/ds390/gen.c (genCast): fixed bug #821957
6924
6925 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * device/lib/logf.c: "fixed" overlay bug
6928         * support/regression/ports/host/spec.mk: added m library
6929         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6930         * support/regression/tests/float_trans: added (for Eric)
6931
6932 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6933
6934         * src/mcs51/gen.c (genCpl): fixed bug
6935         http://sf.net/mailarchive/message.php?msg_id=6263915
6936
6937 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6938
6939         * src/SDCCast.c (decorateType): added extended constant folding
6940         * src/SDCCsymt.c (computeType): cleanup
6941         * src/SDCCval.c (valShift): minor optimization
6942         * support/regression/tests/ast_constant_folding.c: added
6943
6944 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6945
6946         * src/SDCCmain.c: removed some unintended changes
6947
6948 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6951         * src/z80/gen.c: fixed part of bug #817589
6952         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6953
6954 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6955
6956         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6957         * src/SDCCcflow.c
6958         * src/SDCCcse.c
6959         * src/SDCCdflow.c
6960         * src/SDCClabel.c
6961         * src/SDCClrange.c
6962         * src/SDCCmem.c
6963         * src/SDCCopt.c
6964         * src/SDCCpeeph.c
6965         * src/SDCCset.c
6966         * src/avr/ralloc.c
6967         * src/ds390/ralloc.c
6968         * src/izt/ralloc.c
6969         * src/mcs51/ralloc.c
6970         * src/pic/ralloc.c
6971         * src/pic16/ralloc.c
6972         * src/xa51/ralloc.c
6973         * src/z80/ralloc.c
6974         * src/z80/gen.c: removed unused label "release:"
6975
6976 2003-10-06  Borut Razem <borut.razem AT siol.net>
6977
6978         * src/SDCC.lex: removed definition of unused variables
6979           save_optimize and save_options
6980
6981 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6982
6983         * clean.mk: removed '=' in "-maxdepth=1"
6984         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6985         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6986
6987 2003-10-06  Borut Razem <borut.razem AT siol.net>
6988
6989         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6990           my_unput() replaced by unput()
6991
6992 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6993
6994         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6995         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6996         type-punned pointer will break strict-aliasing rules"
6997         Old LR behaviour is again default; Klaus' LR can be choosen by
6998         defining the environment variable LRKLAUS
6999         * src/SDCCBBlock.h
7000         * src/SDCCloop.c
7001         * src/SDCClrange.c
7002         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7003         * clean.mk: fixed removal of files in bin/CVS/
7004         * device/lib/clean.mk: fixed removal of directories small and large
7005         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7006         * src/SDCCicode.c,
7007         * src/SDCCval.c: removed superflous test for pedantic
7008
7009 2003-10-05  Borut Razem <borut.razem AT siol.net>
7010
7011         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7012           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7013           message "unmatched #pragma SAVE and #pragma RESTORE"
7014
7015 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7016
7017         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7018           assembly, critical functions, atomic, nojtbound)
7019
7020 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7021
7022         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7023         * src/SDCCBBlock.h
7024         * src/SDCCloop.c
7025         * src/SDCCloop.h
7026         * src/SDCClrange.c
7027
7028 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/z80/gen.h,
7031         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7032         * src/mcs51/gen.h
7033         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7034         * src/ds390/gen.h
7035         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7036         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7037         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7038
7039 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7040
7041         * src/z80/gen.c (genRet): fixed bug #524753
7042         * src/z80/gen.c (genCast): fixed internal error on cast from
7043         pointer to long
7044         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7045         fix for bug #477835 to the z80
7046         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7047         for tracking iCodes in the peephole optimizer for z80
7048
7049 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7052         the other part of bug #814548
7053         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7054
7055 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7056
7057         * src/SDCCcse.c: fixed part of bug #814548
7058
7059 2003-09-28  Borut Razem <borut.razem AT siol.net>
7060
7061         * src/asm.c: rewrite of printILine() to use temporary file instead
7062           a pipe
7063         * src/xa51/main.c: commented out declaration of int rewinds
7064
7065 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7066
7067         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7068
7069 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7070
7071         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7072         * src/asm.c (printILine): Fixed bug #811015
7073
7074 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7075
7076         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7077         freeing.
7078
7079 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7080
7081         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7082         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7083         to correctly handle general case of AOP_PAIRPTR
7084         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7085
7086 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7087
7088         * src/mcs51/ralloc.c (fillGaps),
7089         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7090         register positioning bug)
7091
7092 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7093
7094         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7095
7096 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7099         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7100         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7101         (ralloc doesn't intentionally do this now, but perhaps later)
7102         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7103         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7104         register positioning bugs (Fixed bug #762602 and #795325)
7105         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7106         (Fixed bug #808779)
7107         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7108         lines that --i-code-in-asm generates
7109
7110 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7111
7112         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7113         trying to fclose a FILE* that was already closed.
7114
7115 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7116
7117         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7118         of const struct should be treated as if const themselves)
7119
7120 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7121
7122         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7123
7124 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7125
7126         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7127         Unix (/n) and DOS (/r/n) line terminations.
7128
7129 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7130
7131         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7132         bug #613775
7133
7134 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7135
7136         * src/mcs51/gen.c (genFunction, genEndFunction),
7137         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7138         and restore of EA so that stack offsets to parameters are
7139         correct when using both critical and reentrant/stack-auto.
7140         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7141         size (can be triggered in error if sloc is shared between
7142         different sized objects)
7143         * device/include/float.h: fixed macros to explicitly use
7144         unsigned long where needed
7145
7146 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7147
7148         Feature req. 799831: added code to allow nesting of critical functions
7149         * src/mcs51/gen.c (genFunction, genEndFunction)
7150         * src/ds390/gen.c (genFunction, genEndFunction)
7151
7152 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7153
7154         * src/SDCCsymt.c (sclsFromPtr),
7155         * src/SDCCsymt.h,
7156         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7157         support for standard C idiom of memory mapped variables; for
7158         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7159         to xdata int at 0x1234 tempvar = 1.
7160         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7161         provided by Akiya ISHIDA
7162
7163 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7164
7165         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7166         * src/SDCCval.c (constVal): added reduction from int to char
7167         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7168         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7169         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7170         to ignore the sign
7171         * support/regression/tests/shifts.c: fixed
7172
7173 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7174
7175         * src/z80/gen.c (genXor): Fixed bug #805445
7176
7177 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7178
7179         Fixed bug #621531 (const & volatile confusion in the type chain).
7180         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7181         refer to the const or volatile state of the pointer itself.
7182
7183         * src/SDCCast.c
7184         * src/SDCCglue.c
7185         * src/SDCCicode.c
7186         * src/SDCCsymt.c
7187         * src/SDCCval.c
7188         * src/SDCC.y
7189         * src/SDCCsymt.h
7190         * src/pic/gen.c
7191         * src/pic/ralloc.c
7192         * src/pic16/gen.c
7193         * src/pic16/ralloc.c
7194         * support/regression/tests/const.c
7195
7196 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7197
7198         When checking for duplicated modules, use absolute paths
7199         instead of relative paths.  Files changed:
7200
7201         * as/mcs51/lklib.c
7202         * link/z80/lklib.c
7203
7204 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7205
7206         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7207
7208 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * device/include/string.h: added size_t typedef, changed
7211         prototypes to use size_t, eliminated separate reentrant and
7212         non-reentrant declarations, added _memmove declaration
7213         * device/lib/_memcpy.c: changed to use size_t instead of int,
7214         changed /4 to >>2 to avoid division library call
7215         * device/lib/_memcmp.c,
7216         * device/lib/_memset.c,
7217         * device/lib/_strncat.c,
7218         * device/lib/_strncpy.c,
7219         * device/lib/_strncmp.c: changed to use size_t instead of int
7220         * device/lib/_memmove.c: new file (fixed bug #772294)
7221         * device/lib/Makefile.in: added _memmove.c
7222         * device/lib/z80/asm_strings.s: fixed bug #772290
7223         * support/regression/tests/bitfields.c: attempt to fix host assertion
7224         failure on amd64-unknown-linux2.2
7225
7226 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7227
7228         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7229         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7230         * as/z80/asmain.c (main): fixed bug #801766
7231
7232 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7233
7234         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7235         compilers
7236
7237 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7238
7239         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7240         reported in bug #800609
7241
7242 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7243
7244         * Top header beautifications in src/pic16 directory:
7245           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7246           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7247           pcoderegs.h, ralloc.c, ralloc.h
7248         * main.c: added top header and GPL license notice
7249         * pcode.c: fixed the if-conditional warning
7250
7251 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7252
7253         * device/lib/_mullong.c: replaced int by short for gcc
7254
7255 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7256
7257         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7258         and JUMPTABLE iCodes properly now (worked by accident before)
7259         * src/mcs51/gen.c (leftRightUseAcc),
7260         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7261         iCode properly now. Use getSize instead of nRegs since a & b
7262         aren't part of the nRegs tally.
7263
7264 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7265
7266         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7267         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7268           before instructions that use the _STATUS register
7269
7270 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7273         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7274         fetching of the pointer
7275         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7276         copied from genNearPointerSet()
7277         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7278         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7279         If they pop r0/r1 they must be called in the opposite order than aopOp().
7280         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7281         (resp. --stack-auto), prepared for --xstack
7282
7283 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7284
7285         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7286
7287 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7288
7289         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7290         these ports have their own __sdcc_external_start()
7291
7292 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7295         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7296         type for bits was changed. It resulted in bit variables becoming
7297         global, which is not permitted in PIC 14 assembly output.
7298
7299 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7300
7301         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7302
7303 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7304
7305         Z80 and MCS51 linkers complaint if a public symbol is defined
7306         in more than one library module:
7307
7308         * as/mcs51/lklib.c
7309         * link/z80/lklib.c
7310         * as/mcs51/Makefile.in
7311
7312 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7313
7314         A few small changes that speed up the peephole optimizer.
7315
7316         * src/SDCCpeeph.c
7317
7318 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7319
7320         Try to make the peephole optimizer smarter by maintaining
7321         an association between the assembly source code and the
7322         iCodes that originated them. Put this information to use
7323         with a new peephole rule condition "notVolatile" so that
7324         the rules can be aggressive yet still safe.
7325
7326         * src/SDCCpeeph.c
7327         * src/SDCCpeeph.h
7328         * src/mcs51/gen.c
7329         * src/mcs51/peeph.def
7330
7331 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7332
7333         Fixed bug #741761
7334
7335         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7336         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7337         if the left or right operand symbols have the accuse flag set.
7338
7339 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7340
7341         Changed the type of the result of the ! (NOT) operator to char;
7342         previously it returned the same type as the source. This allows
7343         us to eliminate all the genFloatNot functions (all of its target
7344         implementations were very buggy) since !float can use the same
7345         code as !long now.
7346
7347         * src/SDCCicode.c (ast2iCode): ! returns char
7348         * src/mcs51/gen.c (genNot, genNotFloat),
7349         * src/ds390/gen.c (genNot, genNotFloat),
7350         * src/z80/gen.c (genNot, genNotFloat),
7351         * src/pic/gen.c (genNot, genNotFloat),
7352         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7353
7354 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7355
7356         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7357         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7358            during interrupts. Ensure WSAVE is located at a shared bank address.
7359         2. Fixed page selection in some places
7360         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7361            the registers name strings.
7362         4. Fixed "signed / unsigned compare" compiler warnings.
7363         5. The PIC port manages its own allocation of the general purpose
7364            registers, but makes no attempt to reuse them. As a result when
7365            compiling it soon runs out of general purpose registers. Some
7366            additional code was added to the files pcode.c and device.c to walk
7367            through the function call tree and rename the registers so that they
7368            get reused.
7369
7370         * src/pic/device.c
7371         * src/pic/gen.c
7372         * src/pic/glue.c
7373         * src/pic/pcode.c
7374         * src/pic/pcode.h
7375         * src/pic/ralloc.c
7376         * src/pic/ralloc.h
7377         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7378         genPlus() & genMinus() when the result is the same as left or right
7379
7380 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7381
7382         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7383
7384 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7385
7386         Made bitfield a distinct type from bit so that bitfields
7387         convert as per ANSI C and bits retain their traditional
7388         boolean style behaviour. Implemented bitfield support in
7389         the z80 port.
7390
7391         * src/SDCCsymt.h,
7392         * src/SDCCsymt.c,
7393         * src/SDCCast.c,
7394         * src/cdbFile.c,
7395         * src/mcs51/gen.c,
7396         * src/ds390/gen.c: bit v bitfield split
7397         * src/z80/gen.c: New support for bitfields
7398         * support/regression/tests/bitfields.c: reenabled z80,
7399         added more tests
7400
7401 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7402
7403         Rules 246.x, 247.x relate to bitfields, the others speed up
7404         access to xdata mapped I/O devices.
7405
7406         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7407
7408 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7409
7410         Cleaned up genPackBits and genUnpackBits and added two helper
7411         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7412         for literal assignments in genPackBits (thanks to Frieder for
7413         reminding me).
7414
7415         * src/mcs51/gen.c
7416         * src/ds390/gen.c
7417
7418 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7419
7420         Fixed bug #748310 (pointer to function type mishandled when the
7421         function name is omitted). Also fixed a SIGSEGV when a function
7422         attribute (reentrant, etc) is used on a non-function or on a
7423         function but misplaced before the parameter list.
7424
7425         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7426         bug #748310
7427         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7428         * support/Util/SDCCerr.h,
7429         * support/Util/SDCCerr.c: Added func attr misuse error msg
7430
7431 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         Fixed bug #787649 by anonymous
7434         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7435         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7436
7437 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7438
7439         Fixed numerous bitfield problems.
7440
7441         * src/SDCC.y: More bitfield related error checking
7442         * src/SDCCsymt.h,
7443         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7444         * support/Util/SDCCerr.h,
7445         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7446         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7447         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7448         * support/regression/tests/bitfields.c: tests added
7449
7450 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7451
7452         Made the constant following the "interrupt" keyword optional. If
7453         omitted, the function will not automatically be given an entry
7454         in the interrupt vector table (similar to #pragma NOIV, but
7455         less syntacticly kludgy). The interrupt number is also now
7456         range checked. Also fixed a bug in the high order bit example
7457         in the manual.
7458
7459         * src/SDCC.y
7460         * src/SDCCmem.c
7461         * src/SDCCglue.c
7462         * src/SDCCsymt.h
7463         * support/Util/SDCCerr.c
7464         * support/Util/SDCCerr.h
7465         * doc/sdccman.lyx
7466
7467 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7468
7469         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7470         * src/SDCCicode.c (operandOperation): rewritten some ops
7471         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7472         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7473         other type
7474         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7475         be re-activated by defining REDUCE_LITERALS)
7476         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7477         unsigned, but are signed by default
7478         * src/SDCCval.c (constVal): rearranged
7479         * src/SDCCval.c (valMod): preliminary fix
7480         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7481         * support/regression/literalop.c: added, work in progress
7482
7483 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7484
7485         Generate warnings for useless declarations like "char data;"
7486         that don't do what new users expect.
7487
7488         * src/SDCC.y
7489         * support/Util/SDCCerr.h
7490         * support/Util/SDCCerr.c
7491
7492 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7493
7494         * src/SDCCval.c (valMult): fix overflow detection of negative int
7495
7496 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7497
7498         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7499
7500         Changes to support big endian targets:
7501
7502         * src/ports.h
7503         * src/SDCCglue.c
7504         * src/avr/main.c
7505         * src/ds390/main.c
7506         * src/izt/i186.c
7507         * src/mcs51/main.c
7508         * src/pic/main.c
7509         * src/pic16/main.c
7510         * src/xa51/main.c
7511         * src/z80/main.c
7512
7513 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7514
7515         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7516         * device/lib/time.c: fixed warning "integer overflow in expression"
7517
7518 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7519
7520         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7521         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7522         constants are unsigned; added recognition of "u" flag for unsigned
7523         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7524         * src/SDCCval.c (valDiv, valMod): fixed signdness
7525         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7526         signedness of modulo, left and right shift
7527         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7528         * support/Util/SDCCerr.h: added warning W_INT_OVL
7529         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7530         * src/SDCCast.c (ast_print): improved output of constants
7531
7532 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7533
7534         Fixed some warnings when building with MSVC:
7535
7536         * as\mcs51\asdata.c
7537         * as\z80\asdata.c
7538         * as\mcs51\asm.h
7539         * as\z80\asm.h
7540         * link\z80\aslink.h
7541         * link\z80\lkdata.c
7542         * link\z80\lkeval.c
7543         * link\z80\lkgb.c
7544         * link\z80\lkihx.c
7545         * link\z80\lks19.c
7546         * link\z80\lksym.c
7547         * support\cpp2\cpplib.c
7548         * src\ds390\gen.c
7549         * src\mcs51\gen.c
7550
7551 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7554
7555 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7556
7557         * support\librarian\clean.mk: Do not remove Makefile.
7558         * support\librarian\Makefile: added.
7559
7560 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7561
7562         Added librarian to MSVC build:
7563         * all.dsp
7564         * sdcc.dsw
7565         * support\librarian\librarian.dsp
7566
7567         'configure' not needed for librarian, removed:
7568         * support\librarian\configure
7569         * support\librarian\configure.in
7570         * support\librarian\config_in.h
7571         * support\librarian\Makefile.in
7572
7573         Hopefully these ones built the librarian and the rest of sdcc properly:
7574         * Makefile
7575         * Makefile.common.in
7576
7577         Messed up 'configure', so revert to previous version:
7578         * configure
7579         * configure.in
7580
7581 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7582
7583         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7584         there, while the mantissa of a double is "only" 53 bits wide.
7585
7586 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7587
7588         Adding sdcclib to the build.  MSVC project coming soon.
7589         Files added/changed:
7590
7591         * support\librarian\clean.mk
7592         * support\librarian\configure
7593         * support\librarian\configure.in
7594         * support\librarian\config_in.h
7595         * support\librarian\Makefile.bcc
7596         * support\librarian\Makefile.in
7597         * support\librarian\sdcclib.c
7598         * Makefile.bcc
7599         * Makefile
7600         * Makefile.common.in
7601         * configure
7602         * configure.in
7603
7604 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7605
7606         Linker now complaints if linked modules have conflicting options, for
7607         example, one compiled using --model-large and another one compiled with
7608         --model-small.  The following files were modified:
7609
7610         * as\mcs51\asdata.c
7611         * as\mcs51\aslink.h
7612         * as\mcs51\asm.h
7613         * as\mcs51\asmain.c
7614         * as\mcs51\asout.c
7615         * as\mcs51\i51pst.c
7616         * as\mcs51\lkdata.c
7617         * as\mcs51\lklibr.c
7618         * as\mcs51\lkmain.c
7619         * as\z80\asdata.c
7620         * as\z80\asm.h
7621         * as\z80\asmain.c
7622         * as\z80\asout.c
7623         * as\z80\z80pst.c
7624         * link\z80\aslink.h
7625         * link\z80\lkdata.c
7626         * link\z80\lklibr.c
7627         * link\z80\lkmain.c
7628         * src\SDCCglue.c
7629
7630 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7631
7632         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7633         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7634
7635 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7636
7637         * src/z80/mappings.i: fix _mul[us][int,long] entries
7638
7639 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7640
7641         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7642
7643 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7646         * support/regression/tests/bitopcse.c: added
7647         fixed warning:
7648         * src/avr/gen.c:
7649         * src/pic/gen.c:
7650         * src/pic16/gen.c:
7651         * src/z80/gen.c:
7652         * src/xa51/gen.c:
7653
7654 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7655
7656         added support for new library format to z80, gbz80 linkers:
7657         *link/z80/aslink.h
7658         *link/z80/lklex.c
7659         *link/z80/lklib.c
7660         *link/z80/lklist.c
7661
7662 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7663
7664         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7665         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7666
7667 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7668
7669         added DUMMY_READ_VOLATILE:
7670         * src/SDCC.y:
7671         * src/avr/gen.c:
7672         * src/xa51/gen.c:
7673         * src/z80/gen.c:
7674         * src/pic/gen.c:
7675         * src/pic16/gen.c:
7676         * src/mcs51/gen.c:
7677         * src/ds390/gen.c:
7678         * src/SDCCcse.c (algebraicOpts): many improvements
7679         * src/SDCCcse.h: removed algebraicOpts()
7680         * src/SDCCicode.c (picDummyRead): added
7681
7682 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7683
7684         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7685         "Insufficient space in data memory".
7686
7687 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7688
7689         * src/mcs51/gen.c: fixed bug #771358
7690         * src/z80/gen.c: fixed bug #759087
7691
7692 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         * src/pic16/glue.c: minor cleanup by Vangelis
7695
7696 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7697
7698         * device/include/regc515c.h: fixed #758477
7699         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7700         * device/lib/_gptrput.c: saved a few bytes
7701         * my tab spacing is 8, yours too?)
7702         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7703         * device/lib/serial.c: process RX bytes earlier than TX bytes
7704         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7705
7706 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7707
7708         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7709
7710 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7711
7712     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7713
7714 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         * device/lib/Makefile.in: bad fix, reverted to 1.43
7717
7718 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7719
7720         * device/lib/Makefile.in: added missing z80 object files
7721
7722 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7723
7724         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7725         pic16 progress by Vangelis:
7726         * src/SDCCglobl.h:
7727         * src/SDCCmain.c:
7728         * src/pic/Makefile:
7729         * src/pic:
7730         * pic/Makefile:
7731         * pic16/device.c:
7732         * pic16/device.h:
7733         * pic16/gen.c:
7734         * pic16/gen.h:
7735         * pic16/genarith.c:
7736         * pic16/glue.c:
7737         * pic16/main.c:
7738         * pic16/pcode.c:
7739         * pic16/pcode.h:
7740         * pic16/pcodepeep.c:
7741         * pic16/peeph.def:
7742
7743 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7744
7745     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7746
7747 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7748
7749     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7750     added gbz80 build to MSVC project.
7751     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7752     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7753     from 8051 stuff and setup so it links using a .lnk file.
7754
7755 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7756
7757     * support/librarian/sdcclib.c: sdcc librarian.
7758     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7759     with sdcclib.
7760
7761 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7762
7763     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7764
7765 2003-07-02  Borut Razem <borut.razem AT siol.net>
7766
7767         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7768         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7769         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7770         src/xa51/main.c, src/z80/main.c:
7771         virtualization of glue() function: each port has it's own glue function,
7772         which is accessed by do_glue function pointer in PORT.general structure
7773
7774 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7775
7776         * DS800C400 fun, improved ROM interface and tinibios.
7777
7778 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7779
7780         * More support for DS80C400. Now includes beginning of interface to ROM.
7781
7782 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7785
7786 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7787
7788         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7789
7790 2003-06-19  Borut Razem <borut.razem AT siol.net>
7791
7792         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7793
7794 2003-06-19  Borut Razem <borut.razem AT siol.net>
7795
7796         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7797         fixed Z80 port - crt0.o: cannot open.
7798
7799 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7800
7801         * support/Util/MySystem.c (merge_command): revert bad fix
7802
7803 2003-06-18  Borut Razem <borut.razem AT siol.net>
7804
7805         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7806
7807 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7808
7809         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7810         option --use-stdout sends errors to stdout instead of stderr.
7811
7812 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7815
7816 2003-06-15  Borut Razem <borut.razem AT siol.net>
7817
7818         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7819         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7820         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7821         fixed width array of pointers replaced with sets;
7822         multiple include and lib paths ared transferred to preprocessor and linker
7823         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7824         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7825         fixed width array of pointers
7826         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7827         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7828         fixupPath(), getPathDifference()
7829         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7830         fixed width array of pointers
7831
7832 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7833
7834         * src/pic16/ralloc.c: fix warnings
7835         * src/pic16/pcode.c: fix warning
7836
7837 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7838
7839          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7840         know all the details, but essentially this set of changes enable
7841         the pic16 port to generate movff instructions and generate assembler
7842         directives,
7843         * src/SDCCmain.c:
7844         * src/pic16/gen.c:
7845         * src/pic16/glue.c:
7846         * src/pic16/pcode.c:
7847         * src/pic16/device.c:
7848         * src/pic16/main.c:
7849         * src/pic16/pcode.h:
7850         * src/pic16/pcoderegs.c:
7851         * src/pic16/ralloc.c:
7852         * src/pic16/ralloc.h:
7853
7854 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7855
7856         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7857         added option --vc, so sdcc errors and warnings are compatible with
7858         Microsoft Visual Studio.
7859
7860 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7861
7862         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7863           device/lib/libfloat.lib: added atof function.
7864
7865 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7866
7867         * doc/sdccman.lyx: updated to Lyx 1.3
7868         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7869         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7870         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7871
7872 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7873
7874         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7875
7876 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7877
7878         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7879           additions to the "related tools/documentation" section
7880
7881 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7884
7885 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7886
7887         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7888         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7889
7890 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7891
7892         * doc/sdccman.lyx: fix double dash and other minor things
7893         * doc/Makefile: fix double dash
7894
7895 2003-05-28  Karl Bongers(patches from Martin Helmling)
7896         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7897           condition and ignore commands.
7898
7899 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7900
7901         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7902           is in parts still quite out of date, I did changes as far as I felt makes sense
7903           for a non-native english speaker.
7904           Please feel free to add to the manual or to correct my changes.
7905         * doc/Makefile: undid touching the date of intermediate tex files.
7906
7907 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7908
7909         * doc/sdccman.lyx: Manual has an index now
7910
7911 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7912
7913         Finalize muluint/mulsint and mululong/mulslong merging:
7914         * device/lib/_mulint.c
7915         * device/lib/_mullong.c
7916         * device/lib/gbz80/mul.s
7917         * device/lib/gbz80/stubs.s
7918         * device/lib/z80/mul.s
7919         * device/lib/z80/stubs.s
7920         * src/SDCCsymt.c (initCSupport)
7921
7922 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7923
7924         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7925         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7926           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7927           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7928           instead of /Zm500.
7929
7930 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7931
7932         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7933           the regression tests I'm not brave enough to enable 245.b, 245.c
7934         * doc/sdccman.lyx: added latex preamble for hyperref package.
7935           Using pdflatex this will give you a hyperlinked pdf file with
7936           bookmarks. (prepend '%' before /usepackage if this breaks something)
7937
7938 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7939
7940          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7941
7942 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7943
7944         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7945
7946 2003-05-21    <johan AT balder>
7947
7948         * src/SDCCglue.c (printIval): fixed bug #739934
7949
7950 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         Applied patch from bug 737905 (renamed yylineo to mylineno):
7953         * src/altlex.c
7954         * src/SDCCast.c
7955         * src/SDCglobl.h
7956         * src/SDCC.lex
7957         * src/SDCCsymt.c
7958         * src/SDCCval.c
7959         * src/pic16/pcode.c: Cleaned warnings
7960         * src/pic16/pcodeflow.c: Cleaned warnings
7961         * src/pic16/pcoderegs.c: Cleaned warnings
7962
7963 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7964
7965         * src/pic16/pcode.c: Cleaned warnings
7966         * src/pic16/pcodepeep.c: Cleaned warnings
7967         * src/pic16/ralloc.c: Cleaned warnings
7968
7969 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7970
7971         * doc/sdccman.lyx: fixed bug 739745
7972         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7973
7974 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7977         it can be defined with CFLAGS when running configure
7978         * src/SDCCmain.c: fixed compiling + linking with object files
7979
7980 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7981
7982         * configure.in: configure for pic16 port,
7983             added --disable-pic16-port
7984         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7985         * src/SDCCmain.c: linkOptions is changed to set *,
7986             added if/endif conditional macros to remove options help
7987             messages from optionsTable when a port is not configured, added
7988             support for the PIc16 port in the ports table, when executing
7989             the compiler with no port specified on command line, a default
7990             port is selected with the new macro DEFAULT_PORT which is
7991             defined in port.h, in setDefaultOptions() linkOptions is removed
7992             from initialization assignment, since now it is a set,
7993             parseCmdLine uses setParseWithComma for linkOptions, in
7994             linkEdit() linkOptions are accessed with new function indexSet()
7995             which returns the i'th item of a set variable. See SDCCset.c, in
7996             linkEdit() when calling buildCmdLine(), added linkOptions as
7997             last argument. Now users can pass arguments to gplink via the
7998             -Wl option, main() uses pic16glue() to glue up pic16 programs
7999         * src/SDCCpeeph.c: various changes to support pic16
8000         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8001             return the i'th item of the set
8002         * src/SDCCset.h: added function prototype for indexSet()
8003         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8004         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8005         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8006             added macro DEFAULT_PORT
8007         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8008         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8009             generated
8010         * src/pic16/glue.c: commented out some error producing lines
8011         * src/pic16/main.c: __config directives are commented out to stop
8012             gpasm complaining and test the linkage with gplink, _linkCmd and
8013             _asmCmd changed to be more gplink and gpasm friendly
8014         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8015             produced an error when parsed, peep rule 12 is added to utilize
8016             movff, but it is commented out since the pCode does not support
8017             yet a command with 2 address arguments
8018
8019 2003-05-18    <johan AT balder>
8020
8021         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8022         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8023 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8024
8025         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8026   Added feature to script commands from file.
8027
8028 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8029
8030         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8031         * src/SDCCutil.c: include ctype.h for win32
8032
8033 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8034
8035         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8036
8037 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8038
8039         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8040   Fixed so you can set breakpoints prior to run, run does not stop
8041   on entry now.  Add tbreak.  Other enhancements and fixes for use
8042   with ddd.
8043
8044 2003-05-12  Borut Razem <borut.razem AT siol.net>
8045
8046         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8047
8048 2003-05-11  Borut Razem <borut.razem AT siol.net>
8049
8050         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8051         the path of bin directory, so that PATH is the only env. variable, which has to be set
8052         in case of standard installation.
8053         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8054         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8055         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8056
8057 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8060         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8061         temp files are in the port dir; clean the gen/test directory when
8062         generating new test.c
8063         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8064         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8065         * support/regression/tests/zeropad.c: added
8066
8067 2003-05-09    <johan AT balder>
8068
8069         * src/SDCCglue.c: fixed bug #597940
8070
8071 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8072
8073         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8074   cache sfr, optimize next,step, fix off by one sourceline,
8075   support ddd list function.
8076         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8077
8078 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8079
8080         * support/regression/HTMLgen.py: added compare_s2f()
8081         * support/regression/Makefile: redo 1.27
8082         * support/regression/generate-cases.py: redo 1.5
8083
8084 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * support/regression/tests/float.c: workaround 33 bit hex constant
8087         * support/regression/tests/simplefloat.c: fix division for host
8088
8089 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8090
8091         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8092         that tame's the PIC's over-aggressive optimizer.
8093
8094 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8095
8096          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8097          support for MSVC.
8098
8099 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8100
8101         Initial support for DS80C400. "Hello world" runs on TINIm400
8102         (with polled I/O).
8103
8104 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8105
8106          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8107          * Some notes on ddd usage added in debugger/README
8108          Martin Helmling adding more features and fixes for ddd GUI debugger.
8109          Code added for nexti, stepi, up, down, and other adjustments.
8110
8111 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8112
8113         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8114         * src/pic/peeph.def Added two rules to optimize carry manipulation
8115         * src/pic/* removed debug printfs
8116
8117 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * debugger/mcs51/cmd.c: added header newalloc.h
8120
8121 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8122
8123         * as/Makefile: new EXEEXT
8124         * as/z80/Makefile: remove trailing slash of BUILDIR
8125         * as/z80/clean.mk: new EXEEXT
8126         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8127         * support/cpp2/Makefile.in: new EXEEXT
8128         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8129
8130 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8131
8132         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8133         EXEEXT was introduced to fix all related problems with targets
8134         "clean", "install" and "uninstall"; a couple of further flaws
8135         especially with "clean" have been fixed too
8136         * as/mcs51/Makefile.in
8137         * as/mcs51/clean.mk
8138         * as/z80/Makefile
8139         * Makefile
8140         * clean.mk
8141         * debugger/mcs51/Makefile.in
8142         * debugger/mcs51/clean.mk
8143         * link/z80/Makefile
8144         * link/z80/Makefile.in
8145         * link/z80/clean.mk
8146         * link/Makefile
8147         * packihx/Makefile.in
8148         * packihx/clean.mk
8149         * sim/ucsim/Makefile
8150         * sim/ucsim/clean.mk
8151         * sim/ucsim/avr.src/Makefile.in
8152         * sim/ucsim/avr.src/clean.mk
8153         * sim/ucsim/s51.src/Makefile.in
8154         * sim/ucsim/s51.src/clean.mk
8155         * sim/ucsim/xa.src/Makefile.in
8156         * sim/ucsim/xa.src/clean.mk
8157         * sim/ucsim/z80.src/Makefile.in
8158         * sim/ucsim/z80.src/clean.mk
8159         * sim/ucsim/main_in.mk
8160         * sim/ucsim/packages_in.mk
8161         * sim/ucsim/gui.src/Makefile.in
8162         * sim/ucsim/gui.src/serio.src/Makefile.in
8163         * sim/ucsim/gui.src/serio.src/clean.mk
8164         * src/Makefile.in
8165         * src/clean.mk
8166         * support/cpp2/Makefile.in
8167         * support/cpp2/clean.mk
8168         * support/makebin/Makefile
8169         * support/makebin/clean.mk
8170         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8171         * doc/sdccman.lyx: --program-suffix no longer needed
8172
8173 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8174
8175          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8176          Martin Helmling added support for ddd GUI debugger.
8177          Code added to display assembly, set variables, and other commands
8178          to interface to ddd.
8179
8180 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8181
8182         * as/Makefile: fix target clean
8183         * as/clean.mk: fix target clean
8184         * as/z80/clean.mk: fix target clean
8185
8186 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8187
8188         * Makefile.common.in: added  AT EXEEXT AT
8189         * configure.in: removed all mingw32 stuff
8190         * configure: rebuilt from configure.in
8191         * doc/sdccman.lyx: updated section "installation"
8192         * support/scripts/sdcc_mingw32: adapted to configure
8193         * support/scripts/sdcc_cygwin_mingw32: added
8194
8195 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8196
8197         * src/pic Added object file support for the PIC port
8198         * src/pic Applied patch from Craig Franklin (this started the object file support)
8199         * src/regression Updated the PIC regression tests for object files
8200
8201 2003-04-20  Borut Razem <borut.razem AT siol.net>
8202
8203         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8204           lklex.c: In function `getfid':
8205           lklex.c:203: warning: array subscript has type `char'
8206         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8207           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8208         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8209           stack handling macros
8210
8211 2003-04-19  Borut Razem <borut.razem AT siol.net>
8212
8213         * "handling space characters in file path" task:
8214         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8215         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8216         * support/Util/MySystem.h: make it self-sufficient
8217         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8218           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8219           handling space characters in file path
8220         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8221           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8222         * support/Util/MySystem.c: handling space characters in executable's path
8223
8224 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8225
8226         * as/z80/Makefile: fix permanent rebuild of z80
8227         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8228         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8229
8230 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8231
8232         * src/SDCCopt.c: add special case optimization to replace modulo by
8233           a power of two with a bitwise AND.
8234
8235 2003-04-18    <johan AT balder>
8236
8237         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8238
8239 2003-04-17    <johan AT balder>
8240
8241         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8242         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8243
8244 2003-04-13  Borut Razem <borut.razem AT siol.net>
8245
8246         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8247         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8248           fixed mingw problem in adl_NORMALIZE_PATH
8249
8250 2003-04-12  Borut Razem <borut.razem AT siol.net>
8251
8252         * fixed "#pragma SAVE/RESTORE can not be nested":
8253         * src/SDCC.lex: reworked pragma handling functions
8254         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8255         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8256
8257 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8258
8259         * src/SDCCutil.c (pathEquivalent): defined but not used
8260         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8261         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8262         * configure: rebuilt from configure.in
8263         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8264         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8265         * device/include/Makefile.in: replace sdcc_datadir
8266         * device/lib/Makefile.in: replace sdcc_datadir
8267         * Makefile.common.in: add LDFLAGS from configure
8268         * packihx/Makefile.in: use LDFLAGS
8269         * src/Makefile.in: use LDFLAGS
8270         * support/cpp2/Makefile.in: add LDFLAGS from configure
8271         * support/makebin/Makefile: use LDFLAGS
8272         * .version: bumped version number to 2.3.5
8273
8274 2003-04-12  Borut Razem <borut.razem AT siol.net>
8275
8276         * completed "different paths" task:
8277         * src/SDCCmacro.c: fixed bug in handling quotes
8278         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8279         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8280
8281 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8282
8283         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8284
8285 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8286
8287         * ds390/gen.c ds390/peeph.def: fix bug 706781
8288
8289 2003-04-11  Borut Razem <borut.razem AT siol.net>
8290
8291         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8292
8293 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8294
8295         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8296         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8297          set - this bit used to not be set...).
8298         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8299           bad code in PIC Port
8300         * src/regression/and2.c added to test bug 609268
8301         * src/regression/Makefile added and2.c to regression test
8302
8303
8304 2003-04-08    <johan AT CP255758-A>
8305
8306         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8307         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8308         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8309
8310 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8311
8312         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8313         fix bug #487815
8314         * support/cpp2/Makefile.in: fix bug #487815
8315         * configure: rebuilt from configure.in
8316         * Makefile.common.in: docdir changed, new path suffixes
8317         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8318         * sdcc_vc_in.h: reflect changes from sdccconf.h
8319         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8320         * src/SDCCutil.h: remove BINDIR hack
8321         * doc/sdccman.lyx: update new path hierarchy
8322
8323 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8324
8325         * src/SDCCpeeph.c: added okToRemoveSLOC test
8326
8327 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8328
8329         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8330
8331 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8332
8333         * src/SDCCpeeph.c: added labelIsReturnOnly test
8334         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8335
8336 2003-04-05    <johan AT balder>
8337
8338         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8339         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8340         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8341         * src/SDCCast.c: fixed a warning
8342         * src/SDCCast.h: fixed a warning
8343         * src/SDCCicode.c (operandFromAst): fixed a warning
8344
8345 2003-04-04    <johan AT balder>
8346
8347         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8348         * src/SDCCast.c (decorateType): fixed bug #715076
8349         * src/SDCC.y: fixed bug #702907
8350
8351 2003-04-03    <johan AT balder>
8352
8353         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8354         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8355         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8356         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8357         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8358
8359 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * _decdptr.c: fix return values
8362         * _gptrget.c: fix return values
8363         * _gptrgetc.c: fix return values
8364         * _gptrput.c: fix return values
8365         * _mulint.c: fix return values
8366         * as/z80/Makefile: fix 'make -j' problem
8367
8368 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8371         * configure.in: big cleanup, updated to autoconf 2.5x
8372         * configure: rebuilt from configure.in
8373         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8374         * sdcc_vc_in.h: reflect changes from sdccconf.h
8375         * doc/Makefile: fixed a flaw in "make install"
8376
8377 2003-04-02    <johan AT balder>
8378
8379         * src/ds390/gen.c (genCmp): no comments
8380         * src/mcs51/gen.c (genCmp): no comments
8381         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8382         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8383
8384 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         * support/regression/generate-cases.py: place generated file in given sub directory
8387         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8388         * support/regression/Makefile: improvements for 'make -j';
8389         side effect: it's simpler and faster now
8390
8391 2003-03-31  Borut Razem <borut.razem AT siol.net>
8392
8393         * src/z80/main.c: link-{port} and as-{port} defined without path
8394         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8395
8396 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8399
8400 2003-03-30  Borut Razem <borut.razem AT siol.net>
8401
8402         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8403           changed type of list parameter to set
8404         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8405         * src/port.h: changed type of do_assemble() parameter to set
8406         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8407           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8408           definition of "cppoutfilename" macro with NULL value in preProcess()
8409         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8410         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8411         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8412           replaced with set *binPathSet
8413         * shash_add() deallocates the item, if allready exsists, before adding the new one
8414         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8415
8416 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8417
8418         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8419           a nested for loop bug in the PIC port
8420         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8421           for loops
8422
8423 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8424
8425         * support/Util/dbuf.h: remove C++ stuff to make it portable
8426
8427 2003-03-28  Borut Razem <borut.razem AT siol.net>
8428
8429         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8430           literal strings in stringLiteral()
8431         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8432         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8433           to the project
8434
8435 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8436
8437         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8438
8439 2003-03-26    <johan AT balder>
8440
8441         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8442         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8443         * src/SDCCast.c (decorateType): fixed " -v < 3"
8444
8445 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8446
8447         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8448         Added Lenny Story's debug infrastructure changes:
8449         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8450         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8451         * src/cdbFile.c: added
8452         * src/SDCCdebug.c: added
8453         * src/SDCCdebug.h: added
8454         * src/SDCCast.c (createFunction)
8455         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8456         * src/SDCCmain.c (parseCmdLine, main)
8457         * src/SDCCmem.c (redoStackOffsets)
8458         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8459         * src/SDCCsymt.h
8460         * src/common.h
8461         * src/avr/gen.c (genAVRCode)
8462         * src/ds390/gen.c (gen390Code)
8463         * src/mcs51/gen.c (gen51Code)
8464         * src/pic/gen.c (genpic14Code)
8465         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8466         * src/xa51/gen.c (genXA51Code)
8467         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8468
8469 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8470
8471         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8472         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8473
8474 2003-03-22    <johan AT balder>
8475
8476         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8477
8478 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8479
8480         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8481         * doc/cdbfileformat.lyx: added, written by Lenny Story
8482         * doc/Makefile: added cdbfileformat.lyx
8483         * doc/clean.mk: added cdbfileformat.lyx
8484
8485 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8486
8487         * src/mcs51/peeph.def: fix bug #705773
8488
8489 2003-03-20    <johan AT balder>
8490
8491         An sfr/sbit can have an "at #" AND an initializer
8492         * src/SDCCsymt.c (checkSClass):
8493         * src/SDCCmem.c (allocGlobal):
8494         * src/SDCCmem.c (allocLocal):
8495         * src/SDCCast.c (createBlock):
8496
8497 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8498
8499         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8500
8501 2003-03-16    <johan AT balder>
8502
8503         Undid the hackup of const and volatile, the problem is much bigger
8504         * src/SDCC.y:1.65
8505         * src/SDCCast.c:1.171
8506         * src/SDCCglue.c:1.138
8507         * src/SDCCicode.c:1.146
8508         * src/SDCCsymt.c:1.150
8509         * src/SDCCval.c:1.65
8510
8511 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8512
8513         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8514         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8515
8516 2003-03-13    <johan AT balder>
8517
8518         Hackup const and volatile modifiers in type chains a bit:
8519         * src/SDCC.y:1.63
8520         * src/SDCCast.c:1.169
8521         * src/SDCCglue.c:1.136
8522         * src/SDCCicode.c:1.143
8523         * src/SDCCsymt.c1.146
8524         * src/SDCCsymt.h1.59
8525         * src/SDCCval.c:1.63
8526
8527 2003-03-12    <johan AT balder>
8528
8529         * src/SDCCBBlock.h: more LRH debugging junk
8530         * src/SDCCcflow.h: more LRH debugging junk
8531         * src/SDCCloop.c: more LRH debugging junk
8532         * src/SDCC.y (struct_declaration): fixed bug #697590
8533         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8534         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8535         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8536
8537 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8538         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8539         test function names must now match exactly).
8540         * src/SDCCcse.c: added special case in findCheaperOp to allow
8541         extending a short integer. Makes less awful code for bug 700121 test case.
8542
8543 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8544
8545         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8546         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8547
8548 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8549
8550         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8551         actually called (operandsNotEqual() was called for all
8552         operandsNotEqualX tests).
8553
8554 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8555
8556         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8557         with shorter literals. Fixes bug 700121.
8558
8559 2003-03-11    <johan AT balder>
8560
8561         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8562
8563 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8564
8565         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8566         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8567
8568 2003-03-10  Borut Razem <borut.razem AT siol.net>
8569
8570         * src/SDCCmain.c: pipe preprocessor's output
8571         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8572         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8573         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8574         which closes all pipes in pipeSet set
8575         * src/SDCCset.c: free deleted item in function deleteSetItem()
8576         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8577         moved from z80 to src subproject
8578         * .version: increased version number to 2.3.4
8579
8580 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8581
8582         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8583         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8584         * support/regression/ports/xa51/spec.mk: fix typo
8585
8586 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8587
8588         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8589
8590 2003-03-09  Borut Razem <borut.razem AT siol.net>
8591
8592         * src/SDCCmain.c: pipe preprocessor's output
8593         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8594         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8595         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8596         which closes all pipes in pipeSet set
8597         * src/SDCCset.c: free deleted item in function deleteSetItem()
8598         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8599         moved from z80 to src subproject
8600
8601 2003-03-09  Borut Razem <borut.razem AT siol.net>
8602
8603         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8604         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8605         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8606         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8607         * src/SDCCglobl.h: unification of WIN32 native definitions
8608
8609 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8610
8611         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8612
8613 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         * src/configure.in:   check for endianess (even while cross-compiling)
8616         * src/configure:      check for endianess (even while cross-compiling)
8617         * src/configure_in.h: check for endianess (even while cross-compiling)
8618         * src/avr/gen.c:        remove old endianess stuff
8619         * src/mcs51/gen.c:      remove old endianess stuff
8620         * src/ds390/gen.c:      remove old endianess stuff
8621         * src/pic/gen.c:        remove old endianess stuff
8622         * src/pic/genarith.c:   remove old endianess stuff
8623         * src/pic/glue.c:       fix endianess check
8624         * src/pic16/gen.c:      remove old endianess stuff
8625         * src/pic16/genarith.c: remove old endianess stuff
8626         * src/pic16/glue.c:     fix endianess check
8627         * src/xa51/gen.c:       remove old endianess stuff
8628         * src/z80/gen.c:        fix endianess check
8629         * src/SDCCglue.c:       fix endianess check
8630         * src/ds390/peeph.def: fix bug 700036
8631
8632 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8633
8634         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8635         * src/configure: find appropriate data-types on host for SDCC's int and long
8636         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8637         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8638         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8639
8640 2003-03-07    <johan AT balder>
8641
8642         Just a big NOOP:
8643                 some minor cleanups before the big shot
8644                 OP_DEFS and OP_USES now use Kevin's protection
8645                 new option --nolabelopt
8646
8647         * src/SDCCBBlock.c:
8648         * src/SDCCast.c,:
8649         * src/SDCCcflow.c:
8650         * src/SDCCcse.c:
8651         * src/SDCCicode.c:
8652         * src/SDCCicode.h:
8653         * src/SDCClabel.c:
8654         * src/SDCCloop.c:
8655         * src/SDCCmain.c:
8656         * src/ds390/ralloc.c:
8657         * src/mcs51/ralloc.c:
8658         * src/pic/ralloc.c:
8659         * src/xa51/ralloc.c:
8660         * src/z80/ralloc.c:
8661
8662 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8663
8664         * src/pic/pcode.c (get_op): fix 64 bit warnings
8665         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8666         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8667         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8668         * support/regression/tests/malloc.c: fix 64 bit warnings
8669
8670 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8671
8672         * src/mcs51/gen.c (genMinus): fixed bug 696436
8673
8674 2003-03-02  Borut Razem <borut.razem AT siol.net>
8675
8676         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8677
8678 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8679
8680         * configure.in: test for mkstemp
8681         * sdccconf_in.h: add HAVE_MKSTEMP
8682
8683 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8684
8685         * device/include/ctype.h: removed warning while using --stack-auto
8686         * device/include/malloc.h: removed warning while using --stack-auto
8687         * device/include/string.h: removed warning while using --stack-auto
8688
8689 2003-02-23  Borut Razem <borut.razem AT siol.net>
8690
8691         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8692         because NDEBUG is defined (see man assert)
8693         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8694
8695 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8696
8697         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8698         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8699
8700 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8701
8702         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8703         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8704
8705 2003-02-18    <johan AT balder>
8706
8707         * as/mcs51/asmain.c (asmbl): module can start with a digit
8708         * as/z80/asmain.c (asmbl): module can start with a digit
8709
8710 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8711
8712         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8713         * src/asm.c: fix pipe() for Mingw32
8714
8715 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8718         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8719         make -V work again; --c1mode reads now from stdin
8720         * doc/sdccman.lyx: added --c1mode
8721         * support/Util/SDCCerr.c: new messages for c1 mode
8722         * support/Util/SDCCerr.h: new messages for c1 mode
8723         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8724
8725 2003-02-15    <johan AT balder>
8726
8727         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8728
8729 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8730
8731         * doc/sdccman.lyx: Environment variables, -o and other minor things
8732
8733 2003-02-14    <johan AT balder>
8734
8735         * src/xa51/main.c: before anyone really tries to use it :)
8736
8737         * Install doc's in share/sdcc/doc
8738         * removed some obsolete files
8739         * Do a proper make distclean and uninstall
8740         M Makefile.common.in
8741         R sdccbuild.sh
8742         M as/Makefile
8743         M device/include/Makefile.in
8744         M device/lib/Makefile.in
8745         M doc/sdccman.lyx
8746         M link/Makefile
8747         M sim/ucsim/doc/Makefile.in
8748         M src/clean.mk
8749         R src/avr/peeph.rul
8750         R src/xa51/peeph.rul
8751         M support/cpp2/Makefile.in
8752         M support/makebin/Makefile
8753
8754
8755 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8756
8757         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8758
8759 2003-02-10  Borut Razem <borut.razem AT siol.net>
8760
8761         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8762         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8763         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8764         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8765         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8766         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8767         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8768         src/z80/Makefile.bcc: Borland Makefile cleanup
8769         * as/z80/Makefile.bcc: Added Borland Makefile
8770         * support/cpp2/borland.h: Removed
8771
8772 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8773
8774         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8775         * src/SDCC.lex: new pragma NOIV
8776         * src/SDCCglobl.h: new pragma NOIV
8777         * src/SDCCmem.c: new pragma NOIV
8778
8779 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8780
8781         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8782
8783 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8784
8785         * src/SDCCmain.c: signal handling is switched off by --debug
8786         * doc/Makefile: small fix for install; use clean.mk again
8787         * doc/clean.mk: clean *.pdf and *.html too
8788
8789 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8790
8791         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8792         * device/lib/printfl.c: fix a ds390 bug by making it portable
8793         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8794         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8795         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8796         * debugger/mcs51/cmd.c: converted multi-line string literals
8797         * sim/ucsim/globals.cc: converted multi-line string literals
8798         * src/SDCCmain.c: introduced signal handler to remove temp files
8799         * doc/Makefile: small tweaks, implement clean
8800         * doc: removed generated files
8801
8802 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8803
8804         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8805         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8806         Address Record is not correctly generated for DS390."
8807
8808 2003-02-02  Borut Razem <borut.razem AT siol.net>
8809
8810         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8811         * as/mcs51/asm.h: fixed compilation with Borland C
8812         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8813         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8814         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8815         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8816         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8817         src/z80/Makefile.bcc: delete $(LIB) only if exist
8818         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8819
8820 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8821
8822         * device/include/malloc.h: introduced NULL
8823         * device/include/string.h: introduced NULL
8824         * device/include/stdlib.h: introduced NULL
8825         * device/lib/_memcpy.c: removed NULL
8826         * device/lib/_strcat.c: removed NULL
8827         * device/lib/_strchr.c: removed NULL
8828         * device/lib/_strcmp.c: removed NULL
8829         * device/lib/_strcpy.c: removed NULL
8830         * device/lib/_strcspn.c: removed NULL
8831         * device/lib/_strlen.c: removed NULL
8832         * device/lib/_strncat.c: removed NULL
8833         * device/lib/_strncmp.c: removed NULL
8834         * device/lib/_strncpy.c: removed NULL
8835         * device/lib/_strpbrk.c: removed NULL
8836         * device/lib/_strrchr.c: removed NULL
8837         * device/lib/_strspn.c: removed NULL
8838         * device/lib/_strstr.c: removed NULL
8839         * device/lib/_strtok.c: removed NULL
8840         * device/lib/malloc.c: removed NULL, include own header
8841
8842 2003-02-02    <johan AT balder>
8843
8844         * 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
8845         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8846         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8847         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8848         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8849         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8850
8851 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8852
8853         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8854         area 'DATA'"
8855
8856 2003-02-01    <johan AT balder>
8857
8858         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8859
8860 2003-01-31    <johan AT CP255758-A>
8861
8862         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8863
8864 2003-01-30    <johan AT balder>
8865
8866         * src/SDCCBBlock.c: automatic bug detection
8867         * src/SDCCicode.c: automatic bug detection
8868
8869 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8870
8871         * src/SDCCglobl.h:   now --xram-size 0 works
8872         * src/SDCCmain.c:    now --xram-size 0 works
8873
8874 2003-01-29    <johan AT balder>
8875
8876         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8877
8878 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879
8880         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8881         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8882         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8883         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8884         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8885         * src/SDCCmain.c:    Added options --xram-size and --code-size
8886
8887 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8890         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8891
8892 2003-01-27    <johan AT balder>
8893
8894         * src/SDCC.y: fixed bug #613764
8895
8896 2003-01-26    <johan AT balder>
8897
8898         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8899         * src/SDCCsymt.h: fixed bug #673374
8900         * src/SDCCglue.c: fixed bug #661910
8901         * src/SDCCast.c: fixed bug #458099 and 673374
8902
8903 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8904
8905         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8906         * as/mcs51/strcmpi.h: added
8907         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8908         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8909         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8910         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8911         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8912         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8913         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8914         * as/mcs51/Makefile.aslink: new module strcmpi
8915         * as/mcs51/Makefile.asx8051: new module strcmpi
8916         * as/mcs51/Makefil.bcc: new module strcmpi
8917         * as/mcs51/Makefile.in: new module strcmpi
8918         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8919
8920 2003-01-26    <johan AT balder>
8921
8922         * src/SDCCglue.c: reverted back to 1.124
8923         * src/SDCCast.c: reverted back to 1.156
8924         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8925
8926 2003-01-25    <johan AT balder>
8927
8928         * src/SDCCglue.c: A better fix for bug #661910
8929         * src/SDCCast.c: A better fix for bug #661910
8930         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8931
8932 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8933
8934         * src/Makefile.in: remove spawn.o
8935         * src/SDCCmain.c: remove spawn.h
8936         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8937         * src/spawn.c: removed
8938         * src/spawn.h: removed
8939         * support/regression/ports/ds390/spec.mk: link with -r
8940
8941 2003-01-24    <johan AT CP255758-A>
8942
8943         * src/ds390/gen.c (aopOp): fixed bug #667458
8944         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8945         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8946         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8947
8948 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8949
8950         * src/mcs51/peeph.def: better assembler identation by Frieder
8951         * src/mcs51/gen.c: better assembler identation by Frieder
8952
8953 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8954
8955         * as/z80/string.h: removed for gcc 3.2
8956         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8957         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8958
8959 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8960
8961         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8962         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8963         * support/regression/Makefile: separate temp files for ports
8964         * support/regression/generate-cases.py: separate temp files for ports
8965         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8966         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8967
8968 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         * moved tinitalk to device/examples/ds390
8971
8972 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8973
8974         * as/mcs51/lkmem.c: rflag is for DS390
8975         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8976         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8977                          (linkEdit): move mem- and map-files the same way as ihx-files
8978         * src/z80/main.c (_setDefaultOptions): removed --generic
8979         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8980         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8981         * src/pic/glue.c (picglue): --c1mode works again
8982         * src/pic16/glue.c (pic16glue): --c1mode works again
8983         * src/asm.c (printCLine): fix #660034
8984
8985 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8988         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8989         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8990         * as/mcs51/lkmem (summary): better fix for sp problem
8991         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8992         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8993         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8994                                               remove --stack-after-data
8995
8996 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8999         * src/SDCCutil.c (join): ugly bug: missing '\0'
9000         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9001
9002 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9003
9004         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9005         * src/port.h: typo
9006         * src/pic/main.c (_asmCmd): gpasm supports -o
9007         * src/z80/main.c: more general macros
9008         * device/lib/Makefile.in: remove intermediate files
9009
9010 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9011
9012         * .version: Bumped version number to 2.3.3
9013         * src/SDCCBBlock.c: new option -o
9014         * src/SDCCglobl.h: new option -o
9015         * src/SDCCglue.c: new option -o
9016         * src/SDCCmain.c: new option -o
9017         * src/asm.c: new option -o
9018         * src/ds390/main.c: new option -o
9019         * src/pic/glue.c: new option -o
9020         * src/pic/pcode.c: new option -o
9021         * src/pic/ralloc.c: new option -o
9022         * src/pic16/glue.c: new option -o
9023         * src/pic16/pcode.c: new option -o
9024         * src/pic16/ralloc.c: new option -o
9025         * src/z80/main.c: new option -o
9026         * device/lib/Makefile.in: use -o
9027         * support/regression/ports/ds390/spec.mk: use -o
9028         * support/regression/ports/gbz80/spec.mk: use -o
9029         * support/regression/ports/mcs51/spec.mk: use -o
9030         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9031         * support/regression/ports/z80/spec.mk: use -o
9032         * support/regression/ports/ucz80/spec.mk: use -o
9033         * support/regression/ports/xa51/spec.mk: use -o
9034         * support/regression/fwk/lib/timeout.c: fix usage string
9035
9036 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9037         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9038
9039 2003-01-07    <johan AT balder>
9040
9041         * src/SDCCast.c (decorateType): fixed bug #600035
9042
9043 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9044         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9045         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9046         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9047         * src/pic/pcode.c: outcommented unused variable to remove warnings
9048         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9049
9050 2003-01-06    <karl AT turbobit.com>
9051         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9052    regression tests.
9053
9054 2003-01-06    <johan AT balder>
9055
9056         * src/SDCCicode.c: fixed array add
9057
9058 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9059         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9060         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9061
9062 2003-01-04    <johan AT balder>
9063
9064         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9065
9066 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9067         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9068
9069 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9070         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9071         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9072
9073 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9074         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9075
9076 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9077         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9078
9079 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9080         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9081
9082 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9083
9084     * in \sdcc\as\mcs51\ changed these files in order to create an
9085     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9086     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9087     following files to include the previous two files: aslink.dsp,
9088     Makefile.aslink, Makefile.bcc, and Makefile.in.
9089
9090     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9091     .adb instead of .cdb
9092
9093 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9094
9095         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9096         value from option --iram-size.
9097
9098 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9099
9100         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9101         dram[] array.
9102
9103 2002-09-18    <wiml AT hhhh.org>
9104
9105         * SDCClrange.h: exposed setFromRange() and setToRange()
9106         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9107           packRegsForAccUse() (bug 542397)
9108         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9109           multiple times and emitting the fetch operations more than once
9110           added aopGetUsesAcc() function to allow binary operators to
9111           fetch their operands in the correct order; made genMinus() emit
9112           compact code for X = LITERAL - Y
9113
9114 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9115         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9116         sprintf() in line 1267.
9117
9118 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9119         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9120         like ports.
9121
9122 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9123         Changes to aslink (All the changes are marked with 'JCF'):
9124
9125         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9126         summary().
9127
9128         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9129         area BSEG.  Also moves, if possible, the DATA area down into the internal
9130         ram so more space is available.
9131
9132         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9133         sflag.
9134
9135         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9136         not bytes.  Function summary() which creates a memory usage summary
9137         file with extension .mem.  Reports of overlaping stack and small stack
9138         size.  If the space for the stack is less than 16 bytes aslink trows a
9139         warning.
9140
9141         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9142         the 8051.  Option 'y' for memory summary output file.
9143
9144         Changes to sdcc (All the changes are marked with 'JCF'):
9145
9146         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9147
9148         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9149         overlaying area for it (uses RegBankUsed[4]).
9150
9151         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9152         bank zero as used by default.  By default aslink locates the stack
9153         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9154         the creation of the .mem file.  Delegates the allocation of data area
9155         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9156         the begining of the stack area to aslink.
9157
9158         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9159         glue() in SDCCglue.c creates an area for it.
9160
9161 2002-09-03  Borut Razem <borut.razem AT siol.net>
9162         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9163         sdcc/src/pic/glue.c:
9164         introduced atexit() handler for teporay files removal in case of
9165         errors, assertions, ...
9166
9167 2002-08-29  Borut Razem <borut.razem AT siol.net>
9168         * sdcc/support/cpp2/auto-host_vc_in.h:
9169         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9170         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9171         Maybe there is a similar problem with BORLANDC? It should be checked!
9172
9173         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9174         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9175         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9176         was not executed, and the compiler (cl) launched a warning:
9177         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9178
9179 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9180         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9181
9182 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9183         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9184
9185         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9186           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9187           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9188           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9189           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9190           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9191           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9192         - added Release configuration in VS projects
9193         - review of compiler an linker options
9194         - VC .exe files are generated in bin_vc directory, not to interfere
9195           with binaries generated from other projects (cygwin, mingw, bcc ...)
9196
9197         * sdcc/src/yacc.dsp: added
9198
9199         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9200         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9201         and insert the version number definitions from .version
9202
9203         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9204
9205         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9206         added - genarate auto-host.h using auto-host_vc_in.h as template
9207
9208         * sdcc/sdcc_vc.h,
9209         removed from CVS, generated automatically
9210
9211 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9212         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9213
9214 2002-08-11  Borut Razem <borut.razem AT siol.net>
9215         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9216
9217 2002-08-10  Borut Razem <borut.razem AT siol.net>
9218         * src/SDCCmain.c (main):
9219         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9220         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9221         The consequence was that some temporary files were not removed.
9222
9223         * src/SDCCglue.c:
9224         unification of code in functions tempfilename() and tempfile():
9225         function tempnam() is defined in Visual Studio 6.0 and .NET
9226
9227         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9228
9229         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9230           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9231         - removed compiler command line option /WX: Treats all warnings as errors
9232         - update a list of source files, included into the project
9233
9234         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9235           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9236         changed project type to Generic Project so that can be correcly converted to VS.NET project
9237
9238         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9239
9240         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9241
9242         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9243
9244         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9245         added return 0 statements after assert() to make compiler happy
9246
9247         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9248         added newline in the def file to keep MSC compiler satisfied
9249
9250         * sdcc/src/z80/gen.c:
9251         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9252           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9253         - solved MSC error in function aopDump()
9254
9255         * sdcc_vc.h: define PREFIX as "\\sdcc"
9256
9257 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9258         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9259
9260 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9261         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9262         - Rewrote the register banking algorithm.
9263         - Added pCode live-range analysis to registers (for now, only non-used and
9264         singly-used registers optimized away)
9265
9266         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9267
9268         * 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.
9269
9270 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9271         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9272
9273 2002-04-22  Michael Hope  <michaelh AT vroom>
9274
9275         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9276
9277         * configure.in (DD_COPT): Added include support required for gbdk.
9278
9279         * .version: Bumped version number just to increase it.
9280
9281         * src/SDCCmain.c: Added -nostdinc to the default options.
9282
9283 2002-04-15  Michael Hope  <michaelh AT vroom>
9284
9285         * device/lib/z80/printf.c (sprintf): Added.
9286
9287         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9288
9289         * src/z80/peeph.def: Added transpose redundent load rule.
9290
9291         * src/z80/main.c: Added force callee saves for jaune.
9292
9293         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9294
9295         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9296
9297 2002-03-28  Johan Knol  <johan AT balder>
9298
9299         * src/SDCCval.c: fixed bug #532436
9300
9301 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9302         * /src/port.h:
9303         Added "char *Processor" field to the port structure.
9304
9305         * /src/SDCCmain.c:
9306         Added -p option. Allows port dependent processor to be specified.
9307
9308         * all ports:
9309         Initialized the new field char *Processor field to NULL in all ports
9310
9311         * /src/pic/*:
9312         Compiler generated registers for interrupt context saving
9313         were not getting allocated.
9314
9315 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9316
9317         * /src/SDCCast.c:
9318         Fixed left shift. Will promote the left side of a left shift
9319         if a) left shifting more than size of operand or b) when assigned
9320         to something size > size of left side
9321
9322 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9323         * src/pic/*
9324         tons of changes. Register allocation has been
9325         rewritten. Added customization for the various PICs. Flow
9326         analysis is restructured. ...
9327
9328         * src/pic/device.h:
9329         Added
9330
9331         * src/pic/device.c:
9332         Added. device.c is a PIC port hack to accomodate variations
9333         in PIC devices.
9334
9335 2002-03-13  Michael Hope  <michaelh AT vroom>
9336
9337         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9338
9339 2002-03-04  johanknol  <johanknol AT manik>
9340
9341         * /src/SDCCval.c: fixed
9342
9343         const unsigned char arr[][2] = { { 0, 1 } };
9344         t18.c:1: error: Initializer element is not constant
9345
9346 2002-03-04  bela  <bela AT manik>
9347
9348         * /device/include/mcs51reg.h:
9349         ds89c420 register definition update
9350
9351 2002-03-03    <johan AT FRIJA>
9352
9353         * support/Util/SDCCerr.c: did something, but don't no why anymore
9354
9355         * support/regression/tests/bug-524691.c: made it a little less shy
9356
9357         * src/SDCCast.c (decorateType): fixed bug #524697
9358
9359         * src/SDCCast.c: made some lineno improvements
9360
9361         * src/SDCCval.c (getNelements): changed warning to error
9362
9363         * src/SDCCglue.c (printIvalArray): changed warning to error
9364
9365         * src/SDCCicode.c: fixed a warning for mingw
9366
9367         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9368
9369         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9370
9371 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9372
9373         * src/ds390/peeph.def:
9374         Added some more peephole rules
9375
9376         * src/ds390/gen.c: Various fixes & enhancements
9377
9378         * src/SDCClrange.c, src/SDCClrange.h:
9379         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9380
9381         * src/ds390/ralloc.c:
9382         various fixes & enhancements (ds390) specific
9383
9384         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9385         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9386         from rallocs.
9387
9388         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9389
9390 2002-03-02    <johan AT FRIJA>
9391
9392         * src/SDCCast.c (decorateType): fixed bug #524708
9393
9394         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9395
9396         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9397
9398 2002-03-01  Michael Hope  <michaelh AT vroom>
9399
9400         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9401
9402         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9403
9404 2002-03-01    <johan AT FRIJA>
9405
9406         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9407
9408         * src/SDCCast.c (decorateType): fixed bug #524209
9409
9410         * src/SDCCval.c (valNot): fixed bug #524195
9411
9412 2002-02-26    <johan AT balder>
9413
9414         * src/xa51/gen.c: fixed a warning
9415
9416         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9417
9418         * src/SDCCast.c (decorateType): fixed bug #522534
9419
9420 2002-02-23    <johan AT balder>
9421
9422         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9423
9424 2002-02-22    <johan AT balder>
9425
9426         * src/SDCCast.c: fixed bug #514865
9427
9428         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9429
9430 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9431
9432         * sdcc/src/SDCCloop.c:
9433         Previous fix was not good. basic blocks that have "break" or "return" are
9434         not really partof a loop , but live ranges used in these blocks should
9435         be live thru the entire loop, so set partOfLoop but don't add them to
9436         loop region
9437
9438 2002-02-21    <johan AT FRIJA>
9439
9440         * src/SDCCcse.c: fixed bug #514308
9441
9442 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9443
9444         * src/SDCCloop.c:
9445         Fixed BUG #519583. If a conditional block ended in a return/break
9446         statement inside a loop, it was not being considered part of the loop.
9447
9448         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9449
9450 2002-02-10  Karl Bongers <karl AT turbobit.com>
9451
9452         * debugger/*:
9453         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9454         with lots of comments and notes.
9455
9456         * device/examples/test2.c:
9457         Fix bug, "red" variable not being initialized(compiler complained).
9458
9459         * device/examples/Makefile, examples/test3.c:
9460         Add Makefile in device/examples folder, compiles test3.c
9461         for use as a multiple module SDCDB test case.
9462
9463         * sim/ucsim/cmd.src/cmdset.cc:
9464         Took out debug printfs in ucsim "next" command.
9465
9466         * sim/ucsim/xa.src:
9467         Karl and Johan start ucsim XA support.  Most dissassembly working,
9468         about 75% emulation done(plenty of work remaining).
9469
9470         * sim/ucsim/z80.src:
9471         Add Z80 support to ucsim, add test-ucz80 regression test,
9472         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9473         Notice z80 compiler fails on examples/test3.c/crc code.
9474
9475 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9476
9477         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9478         Added support for --parms-in-bank1
9479
9480         * src/ds390/peeph.def:
9481         added a few more peephole optimzations
9482
9483         * src/ds390/main.c:
9484         1) added __builtin_inp & __builtin_outp used to read in data of given length
9485            from a memory mapped port
9486         2) added __builtin_memcmp
9487         3) added __builtin_swapw swap bytes of a short
9488
9489         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9490         1) handle multiple send & receives from register bank1
9491         2) ralloc can now allocate DPTR1 to some liveRanges
9492
9493         * src/SDCCsymt.c, src/SDCCsymt.h:
9494         changes to handle multiple sends & receives
9495
9496         * src/SDCCptropt.h:
9497         added some pointer arithmetic optimization
9498
9499         * src/SDCCptropt.c:
9500         added some pointer arithmetic optimizations but not stable yet so not
9501         called from anywhere (will get this working shortly)
9502
9503         * src/SDCCopt.c: fixed for multiple sends & receives
9504
9505         * src/SDCCmain.c:
9506         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9507         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9508            set preprocessor defines (depending on options)
9509
9510         * src/SDCCicode.c, src/SDCCicode.h:
9511         changes made to handle multiple sends & receives
9512
9513         * src/SDCCglobl.h:
9514         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9515
9516         * src/SDCCcse.c, src/SDCCcse.h:
9517         added function findbackward def (to be used in upcoming optimization)
9518
9519         * src/SDCCcflow.c, src/SDCCcflow.h:
9520         added function returnAtEnd - to determine if a basic block terminates with
9521         a RETURN iCode
9522
9523         * src/SDCCast.c, src/SDCCast.h:
9524         added option parms-in-bank1
9525
9526         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9527         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9528         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9529         adjusted for --parms-in-bank1 option
9530
9531         * device/include/string.h:
9532         donot redefine "reentrant" keyword
9533
9534         * device/include/ds80c390.h: Added some more SFRs
9535
9536 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9537
9538         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9539
9540 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9541
9542         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9543
9544 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9545
9546         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9547
9548 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9549
9550         * Added --xram-movc option
9551
9552 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9553
9554         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9555
9556 2002-01-11  Johan Knol
9557
9558         * Added math lib of Jesus Calvino-Fraga
9559
9560 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9561
9562         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9563         * support/regression/Makefile: new target test-mcs51-stack-auto
9564         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9565
9566 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9567
9568         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9569
9570 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9571
9572         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9573
9574 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9575
9576         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9577
9578         * src/SDCCglue.h: add definition for printIvalChar()
9579
9580 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9581
9582         * src/SDCCast.c: fix #498138 by Johan
9583
9584         * src/SDCCglue.c: fix #498138 by Johan
9585
9586 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9587
9588         * support/regression/Makefile: fix clean
9589
9590         * support/regression/ports/ds390/support.c: fix transmission of last character
9591
9592 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9593
9594         * /sdcc/src/ds390/gen.c:
9595         a) improved computing address of stack variable
9596         b) took out some #if 0 code
9597         c) improved parmBytes adjustment
9598         d) improved genPlusIncr & genMinusIncr
9599         e) genCmp could generate bad code (when left assigned to DPTR)
9600         f) Fixed bug in hasInc
9601
9602         * /sdcc/src/ds390/ralloc.c:
9603         a) packRegsForSupport could mess up live information (Fixed)
9604         b) packRegsDPTRuse could be incorrect for left & right shift
9605
9606         * /sdcc/src/mcs51/ralloc.c:
9607         packRegsForSupport could mess up the live information (Fixed)
9608
9609         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9610
9611         * /sdcc/src/SDCCast.c:
9612         can reverse a loop even if function call is present as long
9613         as the loop control variable is local & is not passed as parameter
9614
9615 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9616
9617         * /sdcc/ChangeLog: *** empty log message ***
9618
9619         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9620         More builtin function additions for TININative
9621
9622         * /sdcc/src/ds390/ralloc.c:
9623         Had broken the regression testsuite
9624
9625         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9626
9627         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9628         Added funcattr hasStackParms will be set for reentrant functions when there
9629         are paramteres on the stack, this helps in minimizing frame pointer generation
9630         typeFromStr can handle function pointers now
9631
9632         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9633         *** empty log message ***
9634
9635 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9636
9637         * /src/ds390/gen.c, /src/ds390/main.c:
9638         More builtin function additions for TININative
9639
9640         * /src/ds390/ralloc.c:
9641         Had broken the regression testsuite
9642
9643         * /src/SDCCast.c: Fixed a bug in dumptree
9644
9645         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9646         Added funcattr hasStackParms will be set for reentrant functions when there
9647         are paramteres on the stack, this helps in minimizing frame pointer generation
9648         typeFromStr can handle function pointers now
9649
9650         * /doc/builtins.txt, /doc/TININative.txt:
9651         *** empty log message ***
9652
9653
9654 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9655
9656         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9657         ALPHA version for -mTININative
9658
9659         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9660         updated to reflect changes in the port structure
9661
9662         * /src/port.h:
9663         added function do_assemble (similar to do_link) if non-null this function
9664         will be called to do assembly (-mTININative) requires a multi command
9665         assembly
9666         added function genAssemblerEnd will be called to generate assembler Epilogue
9667
9668         * /src/SDCCsymt.c:
9669         added _JavaNative to debug info printing
9670
9671         * /src/SDCCmain.c: added option --tini-libid
9672         added port->do_assemble function (-mTININative) has a multi command assemble
9673
9674         * /src/SDCCglue.c: Disabled "constExpr" check
9675         added port->genAssemblerEnd function
9676
9677         * /src/SDCCglobl.h: Added option --tini-libid value
9678
9679         * /src/SDCCast.h:
9680         tookout optimizeCompare from the header (has no external references)
9681
9682         * /src/SDCCast.c: made one more function "static"
9683
9684 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9685
9686         * src/z80/mappings.i: Added z80asm support.
9687
9688         * src/z80/main.c: Added z80asm support on --asm=z80asm
9689
9690         * src/z80/gen.c: Fixed asm portability issues.
9691
9692         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9693
9694         * src/SDCCglue.c (printExterns): Added global/extern split.
9695
9696 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9697
9698         * support/regression/Makefile: added test for mcs51 model large
9699
9700         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9701
9702         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9703
9704 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9705
9706         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9707
9708 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9709
9710         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9711
9712         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9713
9714 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9715
9716         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9717
9718         * support/regression/tests/simplefloat.c: Port to mcs51.
9719
9720 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9721         * support/regression/tests/bug-485362.c: Added.
9722
9723         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9724
9725         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9726
9727         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9728
9729         * src/z80/gen.c (aopDump): Added a dump function.
9730
9731 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9732         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9733
9734         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9735
9736         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9737
9738         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9739
9740         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9741
9742         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9743
9744         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9745
9746         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9747
9748         * support/regression/ports/ds390/support.c: Use tinibios.
9749
9750         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9751
9752 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9753
9754         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9755         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9756
9757         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9758
9759         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9760
9761 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9762
9763         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9764
9765         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9766         (packRegsForIYUse): Created and optimised.
9767
9768 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9769
9770         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9771 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9772
9773         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9774
9775         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9776
9777         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9778
9779 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9780
9781         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9782
9783         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9784
9785 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9786
9787         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9788
9789         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9790
9791         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9792
9793 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9794
9795         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9796         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9797         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9798
9799         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9800
9801         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9802         (genNotFloat): Added.
9803         (genUminusFloat): Added.
9804
9805         * device/lib/z80/Makefile: Added floating pt stubs.
9806
9807         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9808
9809         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9810
9811         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9812
9813 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9814
9815         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9816
9817         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9818
9819         * sdcc/support/regression/Makefile: Add port ds390.
9820
9821         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9822
9823         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9824
9825         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9826
9827         * sdcc/support/regression/ports/ds390/support.c: Added.
9828
9829         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9830
9831         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9832
9833         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9834
9835 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9836
9837         * device/include/malloc.h: Added z80 and gbz80 support.
9838
9839         * device/lib/gbz80/heap.s: Added.
9840
9841         * device/lib/z80/heap.s: Added.
9842
9843         * device/lib/malloc.c: Added z80 and gbz80 support.
9844
9845         * support/regression/tests/malloc.c (testMalloc): Added.
9846
9847         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9848
9849         * support/regression/tests/bug-478094.c: Added.
9850
9851         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9852
9853 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9854
9855         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9856
9857         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9858
9859         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9860
9861         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9862
9863         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9864
9865 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9866
9867         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9868
9869 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9870
9871         * support/regression/tests/bug-477927.c: Added.
9872
9873         * src/z80/peeph.def: Added minor rules.
9874
9875         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9876
9877         * src/z80/peeph.def: Added jump optimisation modification.
9878
9879 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9880
9881         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9882
9883 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9884
9885         * support/regression/tests/funptrs.c: Added.
9886
9887 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9888
9889         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9890
9891 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9892
9893         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9894
9895         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9896
9897         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9898         (movLeft2ResultLong): Created.
9899
9900         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9901         (joinPushes): Added.  Joins two char pushes into a word push.
9902
9903 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9904
9905         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9906
9907         * support/makebin/Makefile (install): Added creation of dest dir.
9908
9909 2001-10-24 Karl Bongers <karl AT turbobit.com>
9910
9911         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9912
9913 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9914
9915         * src/z80/ralloc.c: Turned off faulty pack for one use.
9916
9917         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9918
9919         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9920
9921 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9922
9923         * support/regression/Makefile: Improved clean
9924
9925         * support/regression/ports/gbz80/spec.mk: Added clean
9926
9927         * support/regression/ports/host/spec.mk: Added clean
9928
9929         * support/regression/ports/z80/spec.mk: Added clean
9930
9931         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9932
9933         * support/regression/ports/mcs51/timeout.c: little improvements
9934
9935 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9936
9937         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9938
9939         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9940
9941         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9942
9943 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9944
9945         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9946
9947         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9948
9949 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9950         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9951
9952         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9953
9954         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9955
9956         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9957
9958         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9959
9960         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9961
9962         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9963
9964         * support/regression/tests/longor.c: Added.
9965
9966 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9967
9968         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9969
9970         * as/mcs51/aslink.h: define PATH_MAX
9971
9972         * as/mcs51/asm.h: define PATH_MAX
9973
9974         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9975
9976         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9977
9978         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9979
9980         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9981
9982         * src/SDCCglobl.h: define PATH_MAX
9983
9984         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9985
9986         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9987
9988 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9989
9990         * src/z80/gen.c (gencjneshort): Fixed
9991
9992         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9993
9994 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9995
9996         * support/regression/tests/bug-469671.c: Added.
9997
9998         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9999
10000 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10001
10002         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10003
10004         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10005
10006 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10007
10008         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10009
10010         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10011
10012         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10013
10014         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10015
10016         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10017
10018         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10019
10020         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10021
10022 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10023
10024         * 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.
10025
10026         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10027
10028         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10029
10030 2001-10-07    <johan AT FRIJA>
10031
10032         * device/lib/gets.c (gets): fixed the return value.
10033
10034 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10035         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10036
10037         * 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.
10038
10039         * 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.
10040
10041         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10042
10043         * src/pic/gen.c: Removed Safe_strdup.
10044
10045         * configure.in: Added option to enable libgc support.
10046
10047         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10048         (bitVectUnion): Optimised.
10049         (bitVectIntersect): Optimised.
10050         (bitVectBitsInCommon): Optimised.
10051         (bitVectCplAnd): Optimised.
10052
10053         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10054
10055 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10056
10057         * src/SDCCmain.c: distinguish between assembler debug and plain options
10058
10059         * src/avr/main.c:   remove standard assembler options
10060
10061         * src/ds390/main.c: remove standard assembler options
10062
10063         * src/mcs51/main.c: remove standard assembler options
10064
10065         * src/port.h: removed "PENDING" comment
10066
10067 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10068
10069         * src/device/lib/_mulint.c  : new, with assember functions
10070
10071         * src/device/lib/_mullong.c : new, with assember functions
10072
10073         * src/device/lib/_divuint.c : with assember functions
10074
10075         * src/device/lib/_divsint.c : with assember functions
10076
10077         * src/device/lib/_divulong.c: with assember functions
10078
10079         * src/device/lib/_divslong.c: with assember functions
10080
10081         * src/device/lib/_moduint.c : with assember functions
10082
10083         * src/device/lib/_modsint.c : with assember functions
10084
10085         * src/device/lib/_modulong.c: with assember functions
10086
10087         * src/device/lib/_modslong.c: with assember functions
10088
10089         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10090
10091         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10092
10093         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10094                                       replaced _mululong.c and _mulslong.c by _mullong.c
10095
10096 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10097
10098         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10099
10100 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10101
10102         * src/SDCCglue.c: test, if win32api is available for MINGW
10103
10104 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10105
10106         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10107         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10108         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10109         * support/regression/ports/host/spec.mk: removed GENERIC
10110         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10111         * support/regression/ports/z80/spec.mk: removed GENERIC
10112
10113 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10114
10115         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10116
10117         * support/regression/tests/bug-467035.c: Created.
10118
10119 2001-10-01    <johan AT FRIJA>
10120
10121         * src/SDCC.y: fixed bug #466586 part 1
10122
10123 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10124
10125         * SDCCicode.c: z80 has no generic pointers
10126         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10127
10128 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10129
10130         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10131
10132 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10133
10134         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10135
10136         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10137
10138 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10139
10140         * configure.in: Fixed up so that ucsim is only configured once.
10141
10142         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10143
10144         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10145         (getPathDifference): As above.
10146
10147         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10148
10149         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10150
10151 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10152         * .version: Updated to 2.3.1
10153
10154         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10155         Added copyright header.
10156
10157         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10158         (assemble): Added support for macro based assembler commands.
10159         (linkEdit): Added support for macro based linker commands.
10160         (preProcess): Changed the pre-processor to use macros.
10161         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10162         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10163
10164         * device/lib/z80/crt0.s: Added module name for debugging.
10165
10166 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10167
10168         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10169
10170         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10171
10172         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10173
10174         * src/Makefile.in: Added SDCCmacro and SDCCutil
10175
10176 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10177
10178         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10179
10180 2001-09-16    <johan AT FRIJA>
10181
10182         * 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.
10183
10184 2001-09-15    <johan AT FRIJA>
10185
10186         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10187         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10188
10189 2001-09-11    <johan AT FRIJA>
10190
10191         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10192
10193 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10194
10195         * support/regression/tests/bug-460444.c: Added test case.
10196
10197         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10198         (genCast): Added justification for all of the asserts.
10199
10200 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10201
10202         * support/regression/support.c: _xdata replaced by xdata
10203
10204         * support/regression/spec.mk: removed _generic
10205
10206 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10207
10208         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10209
10210         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10211         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10212
10213         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10214
10215         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10216
10217         * support/regression/tests/bug-460010.c: Added test case.
10218
10219         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10220
10221 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10222
10223         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10224
10225         * support/regression/testfwk.c: removed workaround for bug #436344
10226
10227         * support/regression/tests/bp.c: use less memory with mcs51
10228
10229         * support/regression/tests/bug-441448.c: use less memory
10230
10231         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10232
10233         * support/regression/collate-results.py: typo
10234
10235 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10236
10237         * support/regression/tests/fetchoverlap.c: Added new test case.
10238
10239         * support/regression/tests/bp.c: Added new test case.
10240
10241         * support/regression/tests/bug-448984.c: Added new test case.
10242
10243         * support/regression/tests/pow2shifts.c: Added new test case.
10244
10245         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10246         (genlshTwo): Fixed right shift for count > 8.
10247
10248         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10249
10250 2001-09-08    <johan AT FRIJA>
10251
10252         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10253
10254 2001-09-07    <johan AT FRIJA>
10255
10256         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10257
10258         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10259
10260 2001-09-06    <johan AT FRIJA>
10261
10262         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10263         * bernhard noted me at this: "() equals to (void)" (1.38)
10264
10265 2001-09-05    <johan AT FRIJA>
10266
10267         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10268
10269 2001-09-04    <johan AT FRIJA>
10270
10271         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10272
10273
10274 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10275
10276         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10277
10278 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10279
10280         * link/z80/aslink.h: Fixed path for PATH_MAX
10281
10282 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10283
10284         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10285
10286         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10287
10288         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10289
10290         * 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.
10291
10292 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10293
10294         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10295         (genCmp): Fixed up genCmp for the GB with longs.
10296
10297         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10298
10299         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10300
10301         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10302
10303         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10304
10305 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10306
10307         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10308
10309 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10310
10311         * 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.
10312
10313         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10314
10315 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10316
10317         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10318
10319         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10320
10321 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10322
10323   * sim/ucsim/configure:    little improvement of Cygwin-detection
10324   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10325   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10326   * support/regression/tests/bug-221100.c: small changes for mcs51
10327   * support/regression/tests/bug-221168.c: small changes for mcs51
10328   * support/regression/tests/bug-227710.c: small changes for mcs51
10329   * support/regression/tests/staticinit.c: small changes for mcs51
10330   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10331   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10332   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10333
10334 $Revision$