* src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false while loop
[fw/sdcc] / ChangeLog
1 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
4         while loop
5         * support/regression/tests/bug-1406131.c: added
6
7 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * src/SDCCast.c (decorateType): fix promotion of unary minus
10         * src/SDCCsymt.c (computeType): beautified
11         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
12         (valUnaryPM, valComplement): fix sign and promotion,
13         (valNot): ANSI: result type is int (SDCC: unsigned char)
14         * support/regression/tests/uminus.c: speedup by removing superflous
15         test case 'int'
16         * support/regression/tests/onebyte.c: added promotion and signedness
17         tests for unary minus
18         * support/regressions/tests/bug-477927.c: disable warning about
19         uninitialized variables
20         * support/regression/tests/not.c: added
21
22 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
23
24         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
25         * src/mcs51/gen.c (gen51Code): show final register usage after
26         fillGaps in asm with --i-code-in-asm
27         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
28         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
29         incUsed, rliveClear, adjustIChain): made static,
30         (setFromRange): excluded because it's unused,
31         (findPrevUseSym, markWholeLoop): added,
32         (findPrevUse): rewritten; fixes bug 895992; now a complete search
33         through all branches of predecessors enables sdcc to emit the warning
34         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
35         (rlivePoint): made static, added parameter emitWarnings which is only
36         true during the first run out of two,
37         (findRecursiveSucc, findRecursivePred): removed,
38         (computeLiveRanges): made static, added parameter emitWarnings,
39         (dumpIcRlive): added for debugging only
40         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
41         removed prototype of setFromRange()
42         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
43         in call of computeLiveRanges()
44         * support/regression/tests/bug-895992.c: added
45         * support/regression/tests/bug-971834.c: added
46         * support/valdiag/tests/bug-895992.c: added
47         * support/valdiag/tests/bug-971834.c: added
48
49 2005-12-18 Raphael Neider <rneider AT web.de>
50
51         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
52           (genUnpackBits): improved code for direct operands,
53           (genPackBits): improved code for literal assignment to bitfields
54             and for direct destination operands (no FSR indirection),
55             prevented redundant AND, fixes #1362800,
56           (AccLsh): added parameter to disable masking of the result
57         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
58           skip instructions with side-effects (like incfsz),
59           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
60         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
61         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
62           fixes #1375263
63
64 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
65
66         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
67         volatile variables as spill location
68
69 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
70
71         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
72         replacing literals
73         * support/regression/tests/bug-1376320.c: added
74
75 2005-12-08 Raphael Neider <rneider AT web.de>
76
77         * src/pic/device.c: renamed is_shared to pic14_is_shared
78         * src/pic/gen.c (genIfx): re-enabled handling of sbits
79         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
80           (is_valid_identifier): added for above workaround
81
82 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
83
84         * device/lib/Makefile.in: fixed to enable port-specific-objects
85         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
86           char, thanks Hubert Sack
87         * doc/sdccman.lyx: documented --xstack-loc,
88           elaborated a bit more on interrupts and pitfalls,
89           removed "setjmp/longjmp unsupported",
90           documented some unsupported C99 features
91         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
92         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
93           if, thanks Hubert Sack
94         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
95         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
96           make make_library
97         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
98           regression tests can report resource usage (rfe 700441)
99         * support/regression/collate-results.py: report resource usage
100         * support/regression/ports/ds390/spec.mk,
101         * support/regression/ports/hc08/spec.mk,
102         * support/regression/ports/mcs51/spec.mk,
103         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
104         * support/regression/ports/ds390/uCsim.cmd,
105         * support/regression/ports/hc08/uCsim.cmd,
106         * support/regression/ports/mcs51/uCsim.cmd,
107         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
108         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
109           library, use the default one
110         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
111           building the library
112
113 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
114
115         * config.dsp: added dependency on .version and configure_vc.awk
116         * device/include/setjmp.h: updated for --stack-auto and --xstack
117         * device/include/mcs51/at89c51snd1c.h: corrected line endings
118         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
119         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
120         * device/lib/libsdcc.lib: added _setjmp
121         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
122           (decorateType): fixed bug 1372851,
123           (optimizeGetHbit): fixed warning
124         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
125           array initialisation
126         * support/regression/tests/bug1057979.c: added test for bug 1358192
127         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
128
129 2005-12-03 Borut Razem <borut.razem AT siol.net>
130
131         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
132           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
133
134 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
135
136         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
137         createIval): implement symbol independant "flexible array member",
138         (createIvalCharPtr): implemented flexible array initialisation with a
139         string
140         * src/SDCCsymt.c (copyStruct): removed,
141         (getSize): fixed misleading comment,
142         (getAllocSize): removed, the additional allocation size is now in
143         sym->flexArrayLength,
144         (checkStructFlexArray): new, syntax checks for flexible array members,
145         (compStructSize): added syntax checks for "flexible array members"
146         (copyStruct): removed,
147         (copyLinkChain): removed inefficient fix for bug 770487
148         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
149         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
150         symbol->flexArrayLength
151         * src/SDCCerr.c,
152         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
153         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
154         * support/regression/tests/structflexarray.c: added
155         * support/valdiag/tests/structflexiblearray.c: added
156
157 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
158
159         * src/SDCCast.c (decorateType): fixed bug 1368489
160         * support/Util/SDCCerr.c,
161         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
162
163 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
164
165         * device/include/mcs51/at89c51snd1c.h: added file submitted by
166           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
167
168 2005-11-27 Borut Razem <borut.razem AT siol.net>
169
170         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
171           support/cpp2/mkdeps.h: added command line option
172           -obj-ext=<extension> to SDCPP to define object file externion, used
173           for generation of make dependencies (-M)
174         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
175
176 2005-11-26 Borut Razem <borut.razem AT siol.net>
177
178         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
179           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
180           added pic and pic16 libraries
181
182 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
183
184         * device/include/float.h: Corrected typo in prototype of __fsgt
185
186 2005-11-25 Borut Razem <borut.razem AT siol.net>
187
188         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
189           added creation of model-mcs51-stack-auto libraries
190
191 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
192
193         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
194         and fields-list too
195         * src/SDCCast.c (createIvalArray): removed obsolete comment
196
197 2005-11-24 Borut Razem <borut.razem AT siol.net>
198
199         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
200           added missing device/lib/mcs51/crt*.asm sources
201
202 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
203
204         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
205
206 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
207
208         * device/lib/_fs2schar.c,
209         * device/lib/_fs2sint.c,
210         * device/lib/_fs2slong.c: optimized inline asm
211
212 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
213
214         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
215           Better handling of floats between -1.0 and 0.0.
216
217 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
218
219         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
220           (the missing "if"s prohibited removal of redundant labels)
221
222 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
223
224         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
225           Properly convert floats between -1.0 and 0.0 to long, int, and char
226           types (max integer value of negative floats tends to zero).
227         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
228           Removed changes made so to work properly with floats between
229           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
230           and _fs2char.c
231
232 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
233
234         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
235         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
236         (genCast) cosmetic change
237         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
238         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
239         from mcs51
240         * support/regression/tests/bitfields (testSignedBitfields): added
241
242 2005-11-18 Borut Razem <borut.razem AT siol.net>
243
244         * sdcc/device/lib/Makefile.in: remove all unnecessary files
245         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
246           introduced SILENT option to make building of pic16 libraries less
247
248 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
249
250         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
251           Now they work properly with floats between -1.0 and 0.0
252         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
253
254 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * src/SDCCicode.c (printOperand): added missing else
257
258 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
259
260         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
261         reformatted for better readability
262         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
263         signed bitfields
264
265 2005-11-17 Borut Razem <borut.razem AT siol.net>
266
267         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
268           introduced SILENT option to make building of pic16 libraries less
269           verbose - used for nightly snapshot build
270         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
271           available on Win32 platforms.
272         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
273           medium, large, pic and pic16
274
275 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
276
277         * device/lib/printf_large.c: Temporary patch for bug 1358192:
278           printf("%f"...) sets fraction to zero.
279
280 2005-11-16 Raphael Neider <rneider AT web.de>
281
282         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
283           fixes #1357221
284         * src/pic/gen.c (genIfx): implemented for CARRY bit
285         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
286           to generic pointers, fixes #1357332,
287           (pic16_movLit2f): NEW,
288           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
289
290 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
291
292         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
293
294 2005-11-11 Raphael Neider <rneider AT web.de>
295
296         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
297         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
298           compute pointer's type from operand,
299           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
300           improved single bit reads, fixes bug #1353379
301
302 2005-11-09 Borut Razem <borut.razem AT siol.net>
303
304         * support/scripts/sdcc.nsi: added lib/pic to the package
305
306 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
307
308         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
309
310 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
311
312         * support/regression/tests/bug1348008.c: added
313         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
314         * support/regression/tests/bug1337835.c: updated comment
315
316 2005-11-06 Borut Razem <borut.razem AT siol.net>
317
318         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
319           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
320           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
321           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
322           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
323           dynamic construction of cl_error_class and derivates - 2.nd try
324
325 2005-11-05 Borut Razem <borut.razem AT siol.net>
326
327         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
328           bug, which caused Bus Errors on sparc solaris
329
330 2005-11-04 Borut Razem <borut.razem AT siol.net>
331
332         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
333           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
334           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
335           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
336           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
337           and derivates to resolve the initialization problem on OSX
338
339 2005-11-02 Borut Razem <borut.razem AT siol.net>
340
341         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
342           corrected typo - #include <winsock2.h>
343
344 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
345
346         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
347           (_asxxxx_mapping): added org directive for future enhancements
348
349 2005-11-01 Borut Razem <borut.razem AT siol.net>
350
351         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
352           enabled sockets on WIN32
353         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
354
355 2005-10-31 Borut Razem <borut.razem AT siol.net>
356
357         * support/regression/generate-cases.py: escape backslashes in {testcase}:
358           WIN32 backslash path delimiters should be escaped when used in C strings
359         * support/regression/tests/bitfields.c: exclude failing assertions for
360           __CYGWIN32__ and __MINGW32__ hosts
361
362 2005-10-30 Borut Razem <borut.razem AT siol.net>
363
364         * src/SDCCutil.c: corrected double comparison typo
365
366 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
367
368         * device/lib/medium/Makefile: added for new memory model medium
369         * device/include/asm/mcs51/features.h: updated for medium/pdata
370         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
371           added Multiply & Accumulate sbit's and MAC0_PAGE define
372         * device/include/mcs51/c8051f300.h: added sfr16 definitions
373         * device/include/mcs51/c8051f310.h: added sfr16 definitions
374         * device/lib/_mullong.c: update for medium model
375         * device/lib/incl.mk: added medium model
376         * doc/sdccman.lyx: documented medium model
377         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
378         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
379         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
380         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
381           (allocParms): set SCLS and OCLS to pdata for medium model
382         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
383           for pdata,
384           (powof2): return <0 if not power of 2
385         * src/avr/gen.c (genBitWise): use updated powof2
386         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
387           (shiftR2Left2Result): small optimization in setup, save acc when storing,
388           (shiftLLeftOrResult): use B if necessary
389         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
390         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
391         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
392         * support/regression/Makefile.in: added test-mcs51-medium
393         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
394
395 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
396
397         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
398         specifier unsigned
399         * device/lib/time.c (mktime): fixed bug 1334315
400
401 2005-10-28 Raphael Neider <rneider AT web.de>
402
403         * device/include/pic/p16f_common.inc: added common declarations
404         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
405
406 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
407
408         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
409           (aopPutUsesAcc): added to predict accumulator use,
410           (assignResultValue): save acc if necessary,
411           (genMinusDec): store result if indirectly addressed,
412           (genDivOneByte):  save acc if necessary,
413           (movLeft2Result): bugfix if left already in acc,
414           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
415             attention to accumulator use (esp. pdata),
416           (genReceive): receive pdata correctly
417         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
418         * src/SDCCicode.h: added isOperandInPagedSpace prototype
419
420 2005-10-27 Raphael Neider <rneider AT web.de>
421
422         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
423
424 2005-10-27 Raphael Neider <rneider AT web.de>
425
426         * .version: changed version to 2.5.4
427         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
428         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
429           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
430             arithmetics support routines
431         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
432         * device/lib/Makefile.in: also create installdir for pic
433
434         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
435           pic14 port as well
436         * src/pic/device.c (dump_sfr): rewritten to delegate register
437           placement to the linker (use `extern sym' rather than sym EQU addr),
438           (validAddress): fixed to check last specified address
439         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
440           (popGetLit): truncate literal value to 8 bit,
441           (popGet): moved assert to more appropriate place
442           (popGetExternal): create pCode operand from and mark the according
443             symbol as being `extern'
444           (popGetAddr): added sanity check on immediate's offset, provide
445             GPOINTER tag on demand
446           (aopPut): fixed for immediates,
447           (mov2w_op): move operand's address or contents to WREG (depending on
448             operand type), safer variant of mov2w,
449           (movwf,call_libraryfunc): NEW, handy abbreviations,
450           (get_argument_pcop,get_return_val_pcop,pass_argument,
451           get_returnvalue): interface for accessing function parameters and
452             return values,
453           (assignResultValuei,genRet): use new parameter/return value interface
454           (pic14_getDataSize): back to old version handling generic pointers,
455           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
456             provided implementation and/or fixed old one,
457           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
458             calls, removed legacy 8051 reference code
459           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
460           (loadSignToC): NEW, move the operands sign bit to CARRY,
461           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
462             genRightShiftSigned, accepts negative shift counts,
463           (setup_fsr): load FSR and adjust IRP (indirect memory access),
464           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
465             generic pointers, __data pointers and __code pointers,
466           (genUnpackBits,genPackBits): rewritten to work with generic pointers
467             and signed bitfields, limit bitfields to 8 bit,
468           (genDataPointerGet): fixed number of bytes read,
469           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
470           (genPointerGet,genPointerSet): fixed handling of __code pointers,
471             pointers to constant data are no longer assumed to point to __code
472             space, removed invalid pointer types,
473           (bitpatternFromVal): retrieve the PICs representation of an integer
474             or float literal,
475           (genDataPointerSet): fixed assigning to po_immediate operands,
476           (genGenPointerSet): implemented as library call,
477           (genIfx): fixed incorrect condition,
478           (genAddrOf): limit generic pointers' addresses to 2 bytes,
479             provide GPOINTER tag according to destination's storage class,
480           (genCast): added code to handle casting to generic pointers, added
481             sign-/zero extension of the result
482           (aop_isLitLike,op_isLitLike): fixed handling of immediates
483         * src/pic/gen.h: added macros to access IRP bit in STATUS register
484         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
485           extend the result
486         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
487           address/register resides in the shared banks
488           (emitSymbolToFile): improved to handle global and `pinned' symbols,
489             put all variables into separate sections (have the linker arrange
490             them)
491           (picglue): put init code and interrupt handlers in separate sections
492         * src/pic/main.c: added port specific options table, modified to PORT
493           structure to make GPOINTERs 3 byte, added pic14_options
494           (_pic14_do_link): private linking routine (update paths to libraries,
495             add libsdcc.lib by default)
496         * src/pic/main.h: declare pic14_options
497         * src/pic/pcode.c: fixed instructions i/o relations,
498           (RegCond): reverted to correct version,
499           (newpCodeOpLit): truncate literals to 8 bit,
500           (genericPrint): added debug output,
501           (getRegFromInstruction): fixed for various operand types, simplified
502           (BuildFlow): fixed broken handling of isntructions with labels
503           (LinkFlow): start at last instruction in flow (skip trailing comments),
504             pass the flow on to the next instruction after CALL
505           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
506           (insertPCodeInstruction): fixed inserting after a skip instruction,
507           (DoBankSelect): fixed for labeled instructions
508           (OptimizepBlock): honor --nopeep switch
509           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
510         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
511         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
512           (pCodeOptime2pCodes): allow disabling this optimization via
513             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
514             but is still buggy), started implementation of a dataflow based
515             pCode optimization (CSE + dead code elimination)
516           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
517         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
518           names are independant of the stack location and therefore portable across
519           devices
520
521 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
522
523         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
524           (selectSpil): fixed bug 1337835 by not spilling bit variables
525         * support/regression/tests/bug1337835.c: added test for this bug
526         * src/mcs51/peeph.def: restart after rule 3.c,
527           addded rules 263.x to optimize loading constants
528
529 2005-10-26 Raphael Neider <rneider AT web.de>
530
531         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
532         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
533           (genAssign): emit warning when casting literals to generic pointer
534             type, also applies when taking the address of a fixed variable,
535           (genCast): improved casting to generic pointers
536         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
537           extern variables, added verbose error message
538         * device/include/pic16/{string.h,errno.h}: added #pragma library c
539
540 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
541
542         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
543         carry must be complemented too
544         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
545         could be emitted by genMinus
546         * src/SDCCval.c (constVal): fixed bug 1305065
547
548 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
549
550         * src/SDCCast.c (addCast): added promotion for bit variables
551         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
552         promotion casts + optimisation
553         (optimizeGetWord): fix warning 'i' might be used uninitialized
554         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
555         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
556
557 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
558
559         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
560         all chars are promoted to int; promotion should be handled in SDCCast.c
561
562 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
563
564         * device/lib/_strcmp.c: Fixed bug 1326457
565
566 2005-10-11 Raphael Neider <rneider AT web.de>
567
568         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
569         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
570
571 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
572
573         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
574         * support/regression/tests/sfr16.c: added test for the sfr32 bug
575
576 2005-10-04 Raphael Neider <rneider AT web.de>
577
578         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
579           device/lib/pic16/pics.all: added pic18f1320
580         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
581
582 2005-09-30 Raphael Neider <rneider AT web.de>
583
584         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
585         * src/pic16/devices.inc: NEW, provides device descriptions
586         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
587
588 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
589
590         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
591           GETHBIT
592
593 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
594
595         * doc/sdccman.lyx: updated Highest Order Bit documentation,
596           documented Any Order Bit, Higher Order Byte and Higher Order Word
597         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
598         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
599           (optimizeGetAbit): new, to get any bit, not only the high bit,
600           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
601           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
602           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
603           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
604             RIGHT_OP: also try GETBYTE, GETWORD optimization,
605             GETABIT, GETBYTE, GETWORD: decorate them,
606           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
607           (ast_print): added GETABIT, GETBYTE, GETWORD
608         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
609         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
610           (geniCodeBinary): new generic binary icode,
611           (ast2iCode): added GETABIT, GETBYTE, GETWORD
612         * src/port.h: updated comment for PORT.hasExtBitOp
613         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
614           (genGetByte): new, to get a single byte,
615           (genGetWord): new, to get a word from a long,
616           (gen51Code): added GETABIT, GETBYTE, GETWORD
617         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
618
619 2005-09-23 Raphael Neider <rneider AT web.de>
620
621         * configure.in, configure: have device/lib/pic configured
622         * device/lib/Makefile.in: added model-pic14
623         * device/lib/clean.mk: added pic/ to clean rule
624         * device/lib/pic: added rudimentary pic14 library providing support
625           functions for multiplication/division/generic pointer access
626         * src/SDCCopt.c (convilong): mark support functions as extern
627           for pic14 port as well
628         * src/pic/gen.c (genMult): added assertions,
629           (genpic14Code): emit warning on unhandled iCodes
630         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
631         * src/pic/pcode.c (pCodeOpCopy),
632         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
633           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
634           SFR_REGISTER}), made safe for future extensions
635         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
636           instructions even if preceeded by SKIP instructions (also remove
637           them); removed unused code
638         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
639           prevents leaving parts of the structure uninitialized after copying
640
641 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
642
643         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
644           ago by me
645         * support/regression/tests/addsub.c: added test for the bug
646
647 2005-09-21 Raphael Neider <rneider AT web.de>
648
649         * device/include/pic16/pic18f1220.h,
650           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
651         * device/lib/pic16/Makefile.rules: added missing opening paren
652         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
653           are provided in genutils.c,
654           (genUminusFloat,genUminus,genCmpEq): added asserts on different
655           operand/result sizes,
656           (genCmp): assert on NULL pointers first, then check deref'ed values
657         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
658           result size
659
660 2005-09-18 Raphael Neider <rneider AT web.de>
661
662         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
663           as these are now unused,
664           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
665         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
666           local, avoids uninitialized pointer dereference on r->name
667         * src/pic16/ralloc.c (newReg): fixed indentation
668
669 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
670
671         * src/SDCCval.c (constVal): fixed bug 730366
672         * support/Util/SDCCerr.c,
673         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
674
675 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
678
679 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
680
681         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
682
683 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
686           (hex2dec): made hex_digit unsigned char, removed ascii dependance
687         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
688           (hex2dec): made hex_digit unsigned char, removed ascii dependance
689         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
690         * packihx/packihx.c (hexDigit): made c unsigned char
691         * as/mcs51/lklibr.c (fndsym),
692         * link/z80/lkgb.c (gb),
693         * link/z80/lklibr.c (fndsym),
694         * link/z80/lkrloc.c (relr),
695         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
696         * src/SDCC.lex (checkCurrFile, process_pragma),
697         * src/SDCCglue.c (spacesToUnderscores),
698         * src/SDCCmain.c (setParseWithComma, processFile),
699         * src/asm.c (tvsprintf, printCLine),
700         * src/avr/gen.c (emitcode, aopPut),
701         * src/ds390/gen.c (emitcode),
702         * src/hc08/gen.c (emitcode, emitinline),
703         * src/mcs51/gen.c (emitcode, genInline),
704         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
705           tokenizeLineNode),
706         * src/pic/ralloc.c (debugLog),
707         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
708           tokenizeLineNode),
709         * src/pic16/ralloc.c (debugLog),
710         * src/z80/main.c (_process_pragma):
711            made all ctype.h function calls safe
712         * src/SDCCopt.c: include math.h for fabs
713         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
714           and used them throughout the code to make ctype.h function calls safe
715         * src/ds390/main.c (asmLineNodeFromLineNode),
716         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
717         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
718            unsigned char*
719         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
720           (newpCodeAsmDir): made ctype.h function calls safe
721         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
722           pic16_emitcode):  made lbp unsigned char*
723         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
724           (pic16_newpCodeAsmDir): made ctype.h function calls safe
725         * src/xa51/gen.c (emitcode),
726         * src/z80/gen.c (_emit2): made lbp unsigned char*
727         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
728            char*
729
730 2005-09-05 Raphael Neider <rneider AT web.de>
731
732         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
733           access bank splitpoint
734
735 2005-09-05 Raphael Neider <rneider AT web.de>
736
737         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
738
739 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
740
741         * .version: changed to version 2.5.3
742         * doc/sdccman.lyx: changed version to 2.5.3,
743           documented --codeseg and --constseg and pragma codeseg and constseg,
744           documented bit parameters (reentrant) and bit returning
745         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
746            currFunc->recvSize, but is this ok for all ports?
747           (ast2iCode): result of ~ on unsigned char must be cast to int for
748            bool to work
749         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
750           function pointers in bit space
751         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
752           (processFuncArgs): call port.reg_parm() with reentrancy info
753         * src/port.h,
754         * src/avr/main.c,
755         * src/ds390/main.c,
756         * src/hc08/main.c,
757         * src/pic/main.c,
758         * src/pic16/main.c,
759         * src/xa51/main.c,
760         * src/z80/main.c: port.reg_parm prototype extended with
761           "bool reentrant" parameter
762         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
763           options.stackAuto for allocating bit register parameters
764         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
765           (genSend): set BitBankUsed if it is,
766           (selectRegBank): factored out of genCall for use in genPcall,
767           (genCall): removed redundant dtype assignmen, use selectRegBank,
768           (genPcall): handle returning in Carry properly, save in F0 if needed,
769           (genReceive): handle bit register parameters
770         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
771           (mcs51_assignRegisters): enable bit registers for all reentrant
772            functions and don't set BitBankUsed unconditionally
773         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
774         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
775         * support/regression/tests/funptrs.c: added tests for BOOL and for return
776
777 2005-08-27 Borut Razem <borut.razem AT siol.net>
778
779         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
780         ppc-osx (Darwin) does not support -u option. It seems that it is
781         supported only on Linux - GNU cp
782
783 2005-08-25 Borut Razem <borut.razem AT siol.net>
784
785         * sim/ucsim/gui.src/serio.src/Makefile.in,
786           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
787           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
788           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
789           install and strip, since the strip at /usr/ccs/bin should be used
790           on solaris
791
792 2005-08-24 Borut Razem <borut.razem AT siol.net>
793
794         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
795
796 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
797
798         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
799         ffffffffu
800
801 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
802
803         * as/mcs51/aslink.h: completed lkrloc.c prototypes
804         * as/mcs51/lkmain.c (link_main): fixed warning
805         * device/include/stdbool.h: ds390 has no advanced bit support yet
806         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
807         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
808         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
809           and updated their macros
810         * src/SDCCval.c (constVal): updated comment for renamed b_long
811
812 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
813
814         * as/mcs51/asdata.c: changed ctype['['] to BINOP
815         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
816           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
817           (oprio): set priority for '['
818         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
819            and adb_24_bit
820         * as/mcs51/asm.h: added defines R_BIT and S_BIT
821         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
822         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
823         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
824           added overlayable BIT_BANK area
825         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
826           (summary2): explain 'T' in legenda
827         * as/mcs51/lkrloc.c: replaced old K&R style,
828           (relr): added R_BIT processing,
829           (errmsg): added "Bit-addressable relocation error",
830           (adb_bit): added for converting from byte- to bit-addressable space,
831           (adb_24_bit): added for converting from byte- to bit-addressable space
832         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
833            used in reentrant functions now even as return value
834         * device/lib/_gptrput.c (_gptrput): removed obsolete code
835         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
836           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
837         * src/SDCCglobl.h: added indicator BitBankUsed
838         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
839            the bit registers b0-b7
840         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
841           (geniCodeCast): fixed bug 1263853,
842           (geniCodeLogicAndOr): put result in bool or char,
843           (geniCodeReceive): added parameter func for accessing the return type,
844           (geniCodeFunctionBody): pass func to geniCodeReceive
845         * src/SDCCmain.c: added indicator BitBankUsed
846         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
847         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
848           (checkSClass): don't put automatic bool/bit on stack,
849           (checkFunction): removed check on function cannot return bit
850         * src/SDCCsymt.h: added newBoolLink prototype
851         * src/mcs51/gen.c (rb1regs): added bit registers,
852           (movc): created for assigning to carry,
853           (pushReg, popReg): created for pushing registers,
854           (sameRegs): check both AOP_REG and AOP_CRY types,
855           (aopOp): handle bit registers,
856           (aopPut): optimization no self-assign,
857           (saveRegisters): push reg->base (bits) only once for bit registers,
858            and use pushReg,
859           (unsaveRegisters): pop reg->base only once and use popReg,
860           (assignResultValue): added parameter func and return in carry for bits,
861           (genIpush): optimization no reload in A if not changed,
862           (genSend): bit parameters in reentrant functions are passed in bit
863            registers by first assigning to bits in B, then save registers and
864            copy B to bits,
865           (genCall): handle returning in Carry properly, save it in F0 if needed,
866           (genPcall): updated assignResultValue call, this is not safe yet for bit
867            returning function !!!
868           (genFunction): don't generate equ's for bit registers and use pushReg,
869           (genEndFunction): take care of bit returning functions and use popReg,
870           (genRet): return bit in Carry,
871           (genIfx): optimize bit registers and other directly addressable bits,
872           (genReceive): updated assignResultValue call
873         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
874           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
875            registers when using stack-auto
876         * src/mcs51/ralloc.c (_G): added allBitregs,
877           (regs8051): added the bit registers,
878           (createStackSpil): use macro IS_BIT,
879           (getRegBit): added to allocate a bit register, else spill,
880           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
881           (updateRegUsage): factored out to ease stepping while debugging,
882           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
883            also allocate bit registers,
884           (fillGaps): handle bit registers,
885           (findAllBitregs): added to create bit vector with all bit registers,
886           (mcs51_allBitregs): returns this bit vector,
887           (mcs51_assignRegisters): when using stack-auto use bit registers for
888            passing parameters and creating local variables
889         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
890
891 2005-08-22 Borut Razem <borut.razem AT siol.net>
892
893         * device/lib/Makefile.in: replaced find option -or with -o
894           to make it run on solaris
895
896 2005-08-22 Raphael Neider <rneider AT web.de>
897
898         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
899           fixes #1265442 (crash on Solaris)
900
901 2005-08-20 Borut Razem <borut.razem AT siol.net>
902
903         * configure, configure.in: added tests for libsocket and libnsl libraries,
904           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
905           from support/regression/Makefile.in
906         * support/regression/Makefile.in: added
907         * device/lib/pic16/Makefile.common.in: force make to use bash shell
908         * sim/ucsim/libtool: regenerated on sparc-solaris
909         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
910           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
911           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
912           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
913           sparc-solaris, which doesn't use GNU ld linker
914         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
915         * as/Makefile: find on sparc-solaris does not support -maxdepth option
916
917 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
918
919         * src/mcs51/peeph.def: updated comments
920
921 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
922
923         * device/lib/_gptrget.c,
924         * device/lib/_gptrput.c: slightly shorter
925         * doc/sdccman.lyx: incremented version
926         * src/mcs51/peeph.def: moved peephole comments to the line of first
927           change to better keep line correlation, reanimated 186.e
928         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
929
930 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
931
932         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
933           David Saxton with quotes around file name.
934
935 2005-08-15 Borut Razem <borut.razem AT siol.net>
936
937         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
938           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
939           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
940           make tests run on x86_64 platform
941
942 2005-08-13 Raphael Neider <rneider AT web.de>
943
944         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
945           as it might be executed DURING a build (parallel make is wonderful)
946
947 2005-08-13 Raphael Neider <rneider AT web.de>
948
949         * device/lib/Makefile.in (port-specific-objects-pic16):
950           revert to cp $(PORT)/bin/*.* $(PORTDIR)
951         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
952           dependency
953         * device/lib/pic16/Makefile.rules: build subdirs before creating
954           the library, removed builddir rule, create $(builddir) early in
955           recurse rule, use empty recurse rule for leaf directories
956         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
957           mkdir errors (race condition), removed duplicate suffix "hex"
958           from clean rules
959         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
960         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
961           prevents mkdir -p from aborting on Alpha
962
963 2005-08-12 Raphael Neider <rneider AT web.de>
964
965         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
966           db-statements in order to allow for arrays of pointers in code
967           sections to be placed without interspersed 0-padding, fixes
968           bug #1256215
969         * (emitStatistics): fixed division by zero for pic18f1220
970         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
971           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
972         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
973         * (pic16_pCodeConstString): keep track of already emitted string
974           literals to prevent "duplicate definitions of symbol _str_NR"
975         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
976           debug message
977         * device/lib/Makefile.in: ignore failing PIC16 library builds
978         * device/lib/pic16/Makefile: do not build if gputils are missing
979         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
980
981 2005-08-10 Raphael Neider <rneider AT web.de>
982
983         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
984           my last commit)
985
986 2005-08-10 Raphael Neider <rneider AT web.de>
987
988         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
989           Rokas' patch to add the new fixed point type "__fixed16x16"
990         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
991           functions for __fixed16x16 arithmetics
992         * device/lib/pic16: reimplemented the build system to support
993           a separate build directory, better handling of libio (create
994           the library in a separate subdir for each architecture) and
995           easier configuration (centralized in Makefile.common)
996
997 2005-08-07 Raphael Neider <rneider AT web.de>
998
999         * src/pic16/gen.c (genrshTwo): fixed sign extension
1000         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1001         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1002           added T0CONbits
1003         * device/include/pic16/pic18f4220.h: NEW, header for
1004           pic18f4220 and pic18f4320
1005         * device/include/pic16/pic18fregs.h: added new devices,
1006           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1007         * device/include/pic16/signal.h: resolved name clashes
1008           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1009           to also allow testing for interrupt enable bits, added
1010           comments on how to use the macros
1011         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1012         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1013           register definitions for the devices
1014         * device/lib/pic16/pics.all: added new devices
1015         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1016           allocated memory
1017         * device/lib/pic16/libc/stdlib/memfree: do not count
1018           the block header as free memory
1019         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1020           simplified and added missing end-of-blocklist-marker
1021           (reported by Peter Onion, fixes #1252814)
1022         * (_mergeHeapBlock): fixed loop condition
1023         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1024           len==0, restructured code
1025         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1026           up a bit, reduced bitfield accesses, prevent endless loops
1027           in case of heap corruption
1028         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1029           "unreferenced arguments/must return a value" warnings
1030         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1031           replaced BAUDREG with SPBRG
1032         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1033           device/lib/pic16/debug/gstack/gstack.c: replaced
1034           _naked, _asm, _endasm with __naked, __asm, __endasm
1035
1036 2005-08-05 Raphael Neider <rneider AT web.de>
1037
1038         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1039           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1040
1041 2005-08-05 Borut Razem <borut.razem AT siol.net>
1042
1043         * device/lib/Makefile.in: added missing ';'
1044         * configure: removed ^M characters
1045
1046 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1047
1048         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1049           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1050           License
1051
1052 2005-08-04 Borut Razem <borut.razem AT siol.net>
1053
1054         * configure.in: pic16 libraries build 2nd try - enable running
1055           configure in device/lib/pic16
1056         * configure: regenerated from configure.in
1057         * device/lib/Makefile.in: create $(PORT)/bin directory
1058
1059 2005-08-03 Raphael Neider <rneider AT web.de>
1060
1061         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1062           to get/set values via pointers
1063         * (genUnpackBits,genPackBits): changed detection of
1064           ptr->bitfield vs. sym.bitfield, fixed access via generic
1065           pointers, removed dead (wrong) code for multibyte bitfields
1066         * (genNearPointerGet, genGenPointerGet): removed useless code,
1067           fixed bitfield detection, fixes #1250594
1068         * (genNearPointerSet): removed useless code
1069         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1070           and introduced macro pic16_emitpcode that conditionally emits
1071           the origin of the following pCode (useful for debugging SDCC)
1072         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1073         * (createDefmap): fixed handling of LFSR for --optimize-df
1074
1075 2005-08-02 Borut Razem <borut.razem AT siol.net>
1076
1077         * device/lib/Makefile.in: pic16 libraries build enabled since
1078           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1079
1080 2005-08-02 Raphael Neider <rneider AT web.de>
1081
1082         * src/pic16/gen.c (genPackBits): removed deprecated warning
1083         * (genGenPointerSet): fixed bitfield detection
1084
1085 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1086
1087         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1088
1089 2005-07-31 Raphael Neider <rneider AT web.de>
1090
1091         * device/lib/pic16/libdev/pic18f458.c,
1092           device/include/pic16/pic18f458.h: added missing T0CONbits
1093
1094 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1095
1096         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1097
1098 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1099
1100         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1101
1102 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1103
1104         * device/include/mcs51/at89c51ed2.h: added.
1105
1106 2005-07-23 Raphael Neider <rneider AT web.de>
1107
1108         * src/pic/gen.h: added emitpcode macro for debugging
1109         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1110           and replace by macro adding debug information on demand
1111         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1112         * (gencjne): tried to fix; replaced with correct (slower) code
1113         * (gen{Unp,P}ackBits): fixed single bit access
1114         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1115         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1116           previous instruction
1117         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1118           register has to be handled with care (forbidding movement
1119           of assignments/uses, removing assignments completely, ...)
1120         * (pCodeOptime2pCodes): make use of regIsSpecial
1121         * added lots of debugging output (commented out)
1122         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1123           from being reused as result UNLESS it is known to work
1124
1125 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1126
1127         * support/Util/dbuf.h: include <stddef.h> for size_t
1128         * .version: changed to version 2.5.2
1129
1130 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1131
1132         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1133
1134 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1135
1136         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1137           (genModOneByte): removed needless psha/pula
1138
1139 2005-07-22 Raphael Neider <rneider AT web.de>
1140
1141         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1142           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1143         * src/pic/gen.c (resolveIfx): do not "invent" labels
1144         * (genSkipc): changed to positive logic
1145         * (genSkipCond): removed as no longer needed
1146         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1147           backport from PIC16
1148         * (genLeftShift): check operands are in different registers
1149         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1150           INCF does not update CARRY...
1151         * src/pic/main.c: fixed _linkCmd
1152         * src/pic/pcode.c (unlinkpCode): added inactive code
1153         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1154           alive (do not assign result and operand overlapping registers)
1155
1156 2005-07-22 Raphael Neider <rneider AT web.de>
1157
1158         * src/pic/device.c (dump_sfr): replaced register declaration with
1159           call to emitSymbolToFile() to avoid duplicate symbols
1160         * (assignRelocatableRegisters): do not declare external symbols
1161         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1162           right (take size of type, not etype)
1163         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1164         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1165         * (packRegsForAccUse): disabled assignment of WREG as
1166           the result reg to prevent occurence of just fixed #1235003,
1167           fixes #1242954
1168         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1169           symbols (avoids duplicate symbols in .asm file)
1170         * (pic14emitRegularMap): use emitSymbolToFile()
1171         * src/pic/gen.c (aopOp): fixed spillLocation handling
1172         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1173         * (genDataPointerSet): removed unneccessary variables/output
1174
1175 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1178         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1179
1180 2005-07-21 Raphael Neider <rneider AT web.de>
1181
1182         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1183           architecture cannot handle them efficiently, fixes bug #1235003
1184         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1185           check for empty sets before using them (fixes bug #1232190)
1186
1187 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1188
1189         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1190           (lnksect2): generate warnings for memory overlap
1191         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1192           constseg to set the name of these segments so you can instruct the linker
1193           to place them in banks
1194         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1195         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1196           added code_seg and const_seg to options
1197         * src/SDCCglue.c (emitMaps): use options.const_seg,
1198           (createInterruptVect): put interrupt vectors in segment HOME,
1199           (glue): put HOME before static segment and put the main glue in HOME,
1200           (glue): use options.code_seg
1201         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1202         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1203           these segments so you can instruct the linker to place them in banks
1204           (linkEdit): use code_loc for HOME segment which should be the first
1205           segment in code memory now
1206         * src/SDCCmem.c: fixed more stuff like bug 1238386
1207         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1208           (changePointer): don't change function pointers to code pointers for
1209           banked functions,
1210           (compareType): added exceptional check for banked function pointers
1211         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1212         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1213           after static in code memory
1214         * src/mcs51/gen.c: added aopLiteralLong prototype,
1215           (aopForSym): use getSize for functions,
1216           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1217           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1218           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1219           the segment,
1220           (genPcall): use call for literal function pointers and generate banked
1221           calls over the one trampoline so there's only one place for the user to
1222           modify according to his/hers hardware,
1223           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1224           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1225         * src/mcs51/main.c: added keyword banked,
1226           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1227         * support/Util/SDCCerr.c,
1228         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1229           needed for passing the bank and address to the trampoline
1230         * device/lib/mcs51/crtbank.asm: added for bankswitching
1231         * device/lib/mcs51/Makefile: added crtbank
1232
1233 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1234
1235         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1236           for fields at offset 0 of a struct or union as reported
1237           on 2005-07-07 in the developer mailing list.
1238
1239 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1240
1241         * src/SDCCmem.c: fixed bug 1238386
1242
1243 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1244
1245         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1246           (patch #1144962), added peephole 300, enabled 259.x
1247         * doc/sdccman.lyx: removed screenshot and provided link instead
1248
1249 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1250
1251         * doc/sdccman.lyx: added section about debugging with ddd
1252         * doc/figures/ddd_example.eps: screenshot of debugging session
1253
1254 2005-07-04 Raphael Neider <rneider AT web.de>
1255
1256         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1257           like CODE pointers, fixes #1115683
1258         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1259           call, fixes bugs #1232211, #1228110,
1260           fixed wrong casts to pCodeFlow from pCodeInstructions
1261
1262 2005-07-04 Raphael Neider <rneider AT web.de>
1263
1264         * src/pic/gen.c (popGet): changed assert to allow for
1265           bit operands
1266         * (popGetAddr): changed signature to provide
1267           an additional index, patched all call sites
1268         * (genCmpEq): handle literal-like operands correctly
1269         * (genAddrOf): added sanity checks on __code/__data pointers
1270         * (genAssign): added handling of symbols from __code section
1271         * (gencjne): do not generate code for comparisons whose result
1272           is neither stored nor used, fixes bug #1171114
1273         * (AccLsh, AccRsh): operate on operand instead of WREG
1274         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1275           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1276           by known count
1277         * rewrote complete shift-by-literal logic, commented unused
1278           functions out
1279         * (genConstPointerGet): get multiple bytes (if result size > 1),
1280           fixed handling of non-immediate addresses
1281         * (genPointerGet): handle CODE pointers like CONST pointers
1282         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1283         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1284           operand is to be treated as a literal or not
1285         * (mov2w,genPcall,genCmpEq),
1286           src/pic/genarith.c: use aop_isLitLike() to decide between
1287           literal/register contents
1288         * (addSign): added missing offset
1289         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1290           only emit comment in debug-mode,
1291           use {aop,op}_isLitLike throughout the file
1292         * src/pic/glue.c: fix initializers for pointers (work in progress)
1293         * src/pic/pcode.c (get_op): honor index on _const symbols
1294         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1295         * (dumppBlock): added pCode size estimation
1296         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1297           check for IS_SYMOP before OP_SYMBOL'ing
1298         * fixed indentation, compacted switch-statements
1299         * (allocReg): find free register and allocate it instead of
1300           allocating new registers all the time
1301         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1302           registers as its operands (necessary only for multibyte GETs)
1303
1304 2005-07-01 Raphael Neider <rneider AT web.de>
1305
1306         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1307           debugging .asm-output macros FENTRY + FEXIT
1308         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1309           way... I wonder...
1310         * (emitpComment): NEW, printf to pCode
1311         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1312           offset handling
1313         * (popGetAddr): NEW, variant of popGet to access an immediates
1314           high(er) bytes instead of the n'th byte of memory they reference,
1315           replaced popGet with popGetAddr where neccessary
1316         * (genDataPointerGet): reactivated and fixed implementation
1317         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1318           accesses
1319         * (genDataPointerSet): fixed multibyte assignments
1320         * (genpic14Code): fixed --i-code-in-asm handling
1321         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1322         * (genPlus): fixed index-out-of-bounds error
1323         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1324         * src/pic/ralloc.c: added debugging output macro FENTRY2
1325         * (spillThis): fixed indentation, enbraced for-body for clarity
1326         * (rematStr): commented out as now unused
1327         * (regTypeNum): commented out special spill case (overwrites
1328           arbitrary values)
1329         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1330
1331 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1332
1333         * doc/sdccman.lyx: documented sfr16/sfr32,
1334           added example for using storage class with function pointers
1335         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1336
1337 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1338
1339         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1340         * device/lib/_itoa.c,
1341         * device/lib/_ltoa.c: optimized codesize
1342         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1343           but don't know how to suppress the double warning.
1344         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1345         * support/Util/SDCCerr.c,
1346         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1347
1348 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1349
1350         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1351           fixed old K&R prototypes
1352         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1353         * device/lib/_gptrget.c,
1354         * device/lib/_gptrgetc.c,
1355         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1356           also new versions for small generic pointers and banked generic pointers
1357         * src/port.h: added const_name
1358         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1359         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1360         * src/SDCCcse.c (findPrevIc): check all associative operators
1361         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1362         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1363         * src/SDCCmem.c: updated comments,
1364           set far-space to 0 for pdata, results in optimized code
1365         * src/SDCCmem.h: added macro CONST_NAME
1366         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1367           moving the info into the highest bits, see also gptrget/gptrput
1368         * src/src.dsp: added sdcc.ico to project files
1369         * src/avr/gen.c (genCast): fixed bug 0x%d
1370         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1371         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1372           relation between ptr_type and DCL_TYPE,
1373           (genCast): fixed bug 0x%d
1374         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1375           (CODE)" for const_name
1376         * src/hc08/gen.c (genCast): fixed bug 0x%d
1377         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1378           (hc08_port): added "CONST (CODE)" for const_name
1379         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1380           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1381           between ptr_type and DCL_TYPE,
1382           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1383           operand* and took AOP() inside function so sfr-ness can be checked,
1384           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1385           new prototype,
1386           (genFunction, genEndFunction): optimized stack setup,
1387           (genMinus): optimized for literals with ending zeroes (in bytes),
1388           (genCast): fixed bug 0x%d
1389         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1390           (mcs51_port): added "CONST (CODE)" for const_name
1391         * src/mcs51/peeph.def: made rule 226 more generic
1392         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1393         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1394         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1395         * src/z80/main.c (z80_port): added NULL for const_name,
1396           (gbz80_port): added NULL for const_name
1397         * support/regression/tests/bug663539.c,
1398         * support/regression/tests/sfr16.c: new tests
1399
1400 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1401
1402         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1403
1404 2005-06-24 Raphael Neider <rneider AT web.de>
1405
1406         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1407           corrected typos...
1408         * device/include/pic16/signal.h: added USBIF
1409           and SIG_USB
1410
1411 2005-06-24 Raphael Neider <rneider AT web.de>
1412
1413         * device/lib/pic16/libdev/pic18f2455.c,
1414           device/include/pic16/pic18f2455.h: NEW
1415         * device/include/pic16/pic18fregs.h,
1416           device/lib/pic16/pics.all,
1417           src/pic16/device.c: added 18f2455
1418         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1419           device/include/pic16/{pic18f[68][567].h,usart.h}:
1420           replaced MULTIPLE_USARTS define with more relaible
1421           compatibility sfrs (for USART access)
1422
1423 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1424
1425         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1426           and the output asm file line is printed on two lines.
1427
1428 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1429
1430         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1431           BGT, BLE, BHI, and BLS instructions
1432         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1433           genCmpEq): removed
1434         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1435           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1436           fixes bug #1216342
1437         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1438
1439 2005-06-15 Raphael Neider <rneider AT web.de>
1440
1441         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1442         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1443         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1444           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1445           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1446
1447 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1448
1449         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1450           Marcel Telka in bug #1215704
1451
1452 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1453
1454         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1455           located in shared memory bank.
1456
1457 2005-05-31 Raphael Neider <rneider AT web.de>
1458
1459         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1460           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1461           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1462
1463 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1464
1465         * device/lib/_strncpy.c: fixed the fix
1466
1467 2005-05-26 Raphael Neider <rneider AT web.de>
1468
1469         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1470           initializers with \0, bug #1208187
1471         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1472           intializers with \0, bug #1208187
1473
1474 2005-05-26 Raphael Neider <rneider AT web.de>
1475
1476         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1477           initializers with \0, bug #1208187
1478         * src/pic16/main.c (_process_pragma): added sanity checks
1479           for stack position and size, emit warnings when appropriate
1480
1481 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1482
1483         * device/lib/_strncpy.c: fixed not filling with \0
1484
1485 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1486
1487         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1488           createFunction),
1489         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1490           compound_statement),
1491         * src/SDCCsymt.h,
1492         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1493
1494 2005-05-24 Raphael Neider <rneider AT web.de>
1495
1496         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1497
1498 2005-05-24 Raphael Neider <rneider AT web.de>
1499
1500         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1501           TRISE definitions, closes bug #1162453
1502
1503 2005-05-22 Raphael Neider <rneider AT web.de>
1504
1505         * src/pic16/main.c (_process_pragma): check for missing
1506           arguments to pragmas code and udata
1507         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1508           consistency fixes to match other headers (thanks to Jim Paris)
1509         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1510
1511 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1512
1513         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1514
1515 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1516
1517         * support/regression/tests/bug1198642.c: new test
1518         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1519         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1520         * support/scripts/resource.h,
1521         * support/scripts/resource.rc,
1522         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1523         * support/scripts/sdcc.ico: added 32x32 icon
1524
1525 2005-05-18 Raphael Neider <rneider AT web.de>
1526
1527         * device/lib/pic16/libdev/pic18f*.c,
1528         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1529           keywords to "__sfr" and "__at (X)"
1530         * device/include/pic16/pic18fregs.h: added pic18f4520
1531         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1532           #1203088 (MPLAB compatibility)
1533
1534 2005-05-17 Raphael Neider <rneider AT web.de>
1535
1536         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1537         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1538         * device/lib/pic16/pics.all: added new devices
1539         * src/pic16/device.c: added support for pic18f4520
1540
1541 2005-05-16 Raphael Neider <rneider AT web.de>
1542         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1543         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1544         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1545           convenience function for bit access
1546
1547 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1548
1549         * device/lib/printf_large.c: fixed bug 1193299
1550         * support/regression/tests/bug1057979.c: added test %3.3s
1551
1552 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1553
1554         * device/include/mcs51/8051.h,
1555         * device/include/mcs51/8052.h: made parseable with lint
1556         * device/include/mcs51/lint.h: added include file for (sp)lint
1557         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1558         * doc/cdbfileformat.lyx,
1559         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1560
1561 2005-05-14 Raphael Neider <rneider AT web.de>
1562
1563         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1564         * device/lib/pic16/libc/stdlib/itoa.c (new)
1565         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1566         * device/lib/pic16/libio/Makefile: exclude subdir according to
1567           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1568         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1569         * src/pic16/gen.c (genFunction): prevent annoying warning
1570         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1571           nameclashes on BeOS
1572         * support/cpp2/cppmain.c (cpp_output_string): new
1573         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1574           fixes bug 1116802
1575
1576 2005-05-13 Borut Razem <borut.razem AT siol.net>
1577
1578         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1579
1580 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1581
1582         * .version: changed to version 2.5.1; back to bleeding edge development
1583
1584 2005-05-11 Borut Razem <borut.razem AT siol.net>
1585
1586         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1587           generate PDF version 1.3 documents
1588
1589 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1590
1591         * .version: changed to version 2.5.0
1592
1593 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1594
1595         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1596
1597 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1598
1599         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1600         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1601         well as many smaller updates.
1602         * .version: changed to version 2.5.0-pre1
1603
1604 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1605
1606         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1607
1608 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * support/regression/tests/bug1185672.c: added
1611         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1612           bug 1185672
1613         * src/mcs51/gen.c (genCall): added comments, made it look safer
1614         * src/mcs51/gen.c (genEndFunction): simplified
1615
1616 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1617
1618         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1619
1620 2005-04-14 Borut Razem <borut.razem AT siol.net>
1621
1622         * fixed bug 1045046 - SIGSEGV with really simple code?:
1623           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1624           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1625
1626 2005-04-14 Borut Razem <borut.razem AT siol.net>
1627
1628         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1629           src/pic16/device.h: temporarily disabled experimental #inline pragma
1630           for 2.5.0 release
1631
1632 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1633
1634         * device/include/z80/stdio.h,
1635         * device/include/z80/string.h: removed these highly incomplete files so
1636           SDCC can use the default ones in device/include/
1637
1638 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1639
1640         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1641         gcc warning.
1642         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1643         fix sdcpp warnings.
1644
1645 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1646
1647         * device/include/malloc.h: removed redundant __reentrant prototypes
1648         * device/lib/_mullong.c: added working xstack variant in asm (C version
1649           doesn't pass regression tests)
1650         * device/lib/bpx.c: used __data and made bpx char for mcs51
1651         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1652           (createFunction): fixed bug with xstackPtr
1653         * src/SDCCcse.c: corrected comments
1654         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1655           (killDeadCode, eBBlockFromiCode): removed unused code
1656         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1657           corrected comments
1658         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1659           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1660           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1661           (genModOneByte): fixed warning in MSVC
1662         * src/mcs51/main.c (): added comments
1663         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1664
1665 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1666
1667         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1668
1669 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1670
1671         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1672
1673 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1674
1675         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1676         characters arrays of larger size than the declared one.
1677
1678 2005-04-10 Borut Razem <borut.razem AT siol.net>
1679
1680         * src/pic/gen.c (genInline),
1681           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1682           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1683           (findNextInstruction), (findPrevInstruction),
1684           (findInstructionUsingLabel),
1685           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1686         * src/pic/pcode.c (findLabel): added missing '\n'
1687         * src/src.dsp: added SDCCdwarf2.c to the project
1688
1689 2005-04-09 Borut Razem <borut.razem AT siol.net>
1690
1691         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1692
1693 2005-04-08 Raphael Neider <rneider AT web.de>
1694
1695         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1696           into the chain after a given one) and mergeDefmapSymbols (combine
1697           defmap entries for each symbol per pcode)
1698         * (createDefmap): have defmap entries merged in the end
1699         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1700           a symbol before replacing one access type's symbol, merge symbols in
1701           the end (replacement symbol might already have an entry)
1702         * (assignValnums): keep reference to written WREG intact
1703
1704 2005-04-08 Raphael Neider <rneider AT web.de>
1705
1706         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1707           Alpha)
1708
1709 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1710
1711         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1712         bytes
1713
1714 2005-04-07 Raphael Neider <rneider AT web.de>
1715
1716         * device/include/pic16/usart.h: added compatibility defines for
1717           devices with more than one USART
1718         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1719
1720 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1721
1722         * device/lib/Makefile.in: updated for port specific include
1723
1724 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1725
1726         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1727
1728 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1729
1730         * device/include/8051.h,
1731         * device/include/8052.h,
1732         * device/include/at89S8252.h,
1733         * device/include/at89c55.h,
1734         * device/include/at89x051.h,
1735         * device/include/at89x51.h,
1736         * device/include/at89x52.h,
1737         * device/include/mcs51reg.h,
1738         * device/include/reg51.h,
1739         * device/include/reg764.h,
1740         * device/include/regc515c.h,
1741         * device/include/sab80515.h: (re)moved these 12 files
1742         * device/include/mcs51/8051.h,
1743         * device/include/mcs51/8052.h,
1744         * device/include/mcs51/at89S8252.h,
1745         * device/include/mcs51/at89c55.h,
1746         * device/include/mcs51/at89x051.h,
1747         * device/include/mcs51/at89x51.h,
1748         * device/include/mcs51/at89x52.h,
1749         * device/include/mcs51/mcs51reg.h,
1750         * device/include/mcs51/reg51.h,
1751         * device/include/mcs51/reg764.h,
1752         * device/include/mcs51/regc515c.h,
1753         * device/include/mcs51/sab80515.h: and added them here
1754
1755 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * device/include/stdarg.h: changed SDCC specific keywords to double
1758           underlined form.
1759         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1760           mcs51 and ds390.
1761         * device/include/hc08/mc68hc908gp32.h,
1762         * device/include/hc08/mc68hc908jb8.h,
1763         * device/include/hc08/mc68hc908jkjl.h,
1764         * device/include/hc08/mc68hc908qy.h: fixed comments
1765         * device/include/mcs51/README: updated
1766         * device/include/mcs51/c8051f120.h: added PINRSF
1767         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1768         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1769           amidst code. Also inline is not supported.
1770
1771 2005-04-06 Raphael Neider <rneider AT web.de>
1772
1773         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1774         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1775           callers stack/frame pointers
1776
1777 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1778
1779         * device/include/pic16/usart.h: added, missing in previous commit,
1780         * device/include/pic16/adc.h: fixed typo,
1781         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1782         commit,
1783         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1784         <p18fxxx.inc>
1785         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1786         uninitialized because a bug appears with gplink
1787         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1788         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1789         complains for unrecognised option
1790
1791 2005-04-05 Raphael Neider <rneider AT web.de>
1792
1793         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1794           structs as well (using memcpy)
1795         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1796           on ISRs (GOTO has no label)
1797         * src/pic16/device.h: added OF_OPTIMIZE_DF
1798         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1799           new data flow analysis/optimization
1800         * src/pic16/pcode.c: added (prototypes for and implementation of)
1801           dataflow analysis functions, fixed pCodeInstructions' inCond and
1802           outCond values, made RCALL a branch instruction
1803         * (pic16_unlinkpCode): keep C line if possible
1804         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1805           C line moved if possible
1806         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1807         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1808           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1809         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1810           new flow)
1811         * (pic16_getJumptabpCode): NEW, needed in...
1812         * (LinkFlow): fixed handling of jumptables, calls and conditional
1813           branches
1814         * (pic16_InsertCommentAfter): NEW
1815         * (pic16_pCodeReplace): made verbose and flow preserving
1816         * (AnalyzeFlow): added call to data flow analysis
1817         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1818         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1819         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1820
1821 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1822
1823         * src/SDCCast.c (decorateType): fixed bug #1105626
1824
1825 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1826
1827         * device/include/asm/pic16/features.h,
1828         * pic18f*.h headers,
1829         * device/include/pic16/adc.h,
1830         * device/include/pic16/delay.h,
1831         * device/include/pic16/i2c.h,
1832         * device/include/pic16/malloc.h,
1833         * device/include/pic16/stdio.h,
1834         * device/include/pic16/stdlib.h,
1835         * device/include/pic16/string.h,
1836         * device/lib/pic16/libc/stdio/printf_tiny.c,
1837         * device/lib/pic16/libc/stdio/printf_small.c,
1838         * device/lib/pic16/libc/stdio/strmgpsim.c,
1839         * device/lib/pic16/libc/stdio/strmmssp.c,
1840         * device/lib/pic16/libc/stdio/strmusart.c,
1841         * device/lib/pic16/libc/stdio/vfprintf.c,
1842         * device/lib/pic16/libc/stdlib/ltoa.c,
1843         * device/lib/pic16/libc/stdlib/putchar.c,
1844         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1845         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1846         * device/lib/pic16/libc/stdlib/memchrram.c,
1847         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1848         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1849         * device/lib/pic16/libio/adc/adcbusy.c,
1850         * device/lib/pic16/libio/adc/adcread.c,
1851         * device/lib/pic16/libio/adc/adcsetch.c,
1852         * device/lib/pic16/libio/usart/ubaud.c,
1853         * device/lib/pic16/libio/usart/ubusy.c,
1854         * device/lib/pic16/libio/usart/udrdy.c,
1855         * device/lib/pic16/libio/usart/uopen.c,
1856         * device/lib/pic16/libio/usart/uputc.c,
1857         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1858         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1859         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1860         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1861         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1862         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1863         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1864         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1865         specific keywords to double underlined form,
1866         * device/lib/pic16/libc/Makefile.rules,
1867         * device/lib/pic16/libsdcc/Makefile.rules,
1868         * device/lib/pic16/libm/Makefile,
1869         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1870         to compile with C standard set in Makefile.common
1871         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1872         rand.c and crc.c in compilation process,
1873         * device/lib/pic16/libsdcc/int/divuint.c,
1874         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1875         `c' from signed to unsigned,
1876         * device/lib/pic16/startup/crt0.c,
1877         * device/lib/pic16/startup/crt0i.c,
1878         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1879         keywords to double underlined form, bug fixes in _do_cinit function
1880         which prevented the correct initialization of the .idata segment,
1881         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1882         core to enter a infinite loop
1883         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1884
1885 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1886
1887         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1888
1889 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1890
1891         * device/include/Makefile.in: add support for hc08 subdirectory
1892         * device/include/hc08/: new subdirectory
1893         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1894         Lucas Loizaga, thanks!
1895         * device/include/hc08/mc68hc908qy.h,
1896         * device/include/hc08/mc68hc908gp32.h,
1897         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1898         their own directory. Changed internal macro names to use the compiler
1899         reserved namespace. Changed SDCC specific keywords to double
1900         underlined form.
1901         * device/include/math.h,
1902         * device/include/malloc.h,
1903         * device/include/stdarg.h,
1904         * device/include/stdbool.h
1905         * device/include/string.h,
1906         * device/include/tinibios.h,
1907         * device/include/ds400rom.h,
1908         * device/include/8051.h,
1909         * device/include/8052.h,
1910         * device/include/80c51xa.h,
1911         * device/include/at89c55.h,
1912         * device/include/at89S8252.h,
1913         * device/include/at89x51.h,
1914         * device/include/at89x52.h,
1915         * device/include/ds80c390.h,
1916         * device/include/reg764.h,
1917         * device/include/regc515c.h,
1918         * device/include/sab80515.h,
1919         * device/include/mcs51/c8051f000.h,
1920         * device/include/mcs51/c8051f018.h,
1921         * device/include/mcs51/c8051f020.h,
1922         * device/include/mcs51/c8051f040.h,
1923         * device/include/mcs51/c8051f060.h,
1924         * device/include/mcs51/c8051f120.h,
1925         * device/include/mcs51/c8051f300.h,
1926         * device/include/mcs51/c8051f310.h,
1927         * device/include/mcs51/c8051f320.h,
1928         * device/include/mcs51/c8051f330.h,
1929         * device/include/mcs51/c8051f350.h,
1930         * device/include/z180.h: Changed SDCC specific keywords to double
1931         underlined form.
1932
1933 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1934
1935         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1936         18F4455,
1937         * (pic16_assignConfigWordValue): disable testing of configuration
1938         register value with config mask,
1939         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1940         function with port->fun_prefix,
1941         * (genFunction): when generating a naked interrupt function never
1942         create an absolute segment placed in interrupt vector address, place
1943         the actual interrupt function at IVA instead, when an interrupt
1944         function is generated with unspecified interrupt then do not create
1945         the absolute section,
1946         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1947         code for generating a call to generic pointer get/put function with
1948         a call to function pic16_callGenericPointer(),
1949         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1950         the call to the generic pointer get/put functions with prefixing the
1951         function name with port->fun_prefix,
1952         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1953         * src/pic16/main.c (_process_pragma): prefix function with
1954         port->fun_prefix,
1955         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1956         calling assembler, old 18Fxxxx macro is deprecated,
1957         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1958         PC_ASMDIR in while condition,
1959         * (findInstruction): add PC_ASMDIR in while condition,
1960         * (buildCallTree): prefix main with port->fun_prefix,
1961         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1962         identifier for variable with banked access in instructions BTFSS,
1963         BTFSC, BCF, BSF, BTG
1964         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1965         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1966         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1967         perform optimization when enviroment variable NO_REG_OPT is set,
1968         * (insideLRBlock): NEW, return 1 if register is inside an
1969         INF_LOCALREGS block,
1970         * (RemoveRegFromLRBlock): remove a register that is completely
1971         eliminated by register optimization, but it is still left in local
1972         register store/restore in/from stack block,
1973         * (Remove2pcodes): after removing register, check to see if it
1974         should be removed from local register store/restore in/from stack
1975         block,
1976         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1977         DUMMY_READ_VOLATILE,
1978
1979         * device/include/pic16/adc.h: minor prototype modifications and
1980         update,
1981         * device/include/pic16/malloc.h: added GPL notice various
1982         modifications,
1983         * device/include/pic16/stdint.h: NEW, standard header for ints
1984         * device/include/pic16/delay.h: NEW, header for delay functions,
1985         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1986         delay1mtcy,
1987         * device/include/pic16/signal.h: NEW, header providing helper macros
1988         for implementing signal handlers,
1989         * device/include/pic16/stdio.h: added prototypes for functions,
1990         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1991         prototypes for stdin and stdout, added macro PUTCHAR to
1992         automatically implement putchar function prototype,
1993         * device/include/pic16/usart.h: modified and updated USART library,
1994         * device/lib/pic16/libio/adc/,
1995         * device/lib/pic16/libio/i2c: some modifications to improve library
1996         performance,
1997         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1998         family of functions,
1999         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2000         family of functions and other sources,
2001         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2002         of the PIC18Fxx[28] devices,
2003         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2004         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2005         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2006         _do_cinit function, because the previous failed when local variables
2007         where not placed in the same memory bank,
2008         * device/lib/pic16/libsdcc/char/: various modifications to improve
2009         library performance,
2010         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2011         information on the new functions of the c library and more...
2012
2013 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2014
2015         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2016
2017 2005-03-26 Raphael Neider <rneider AT web.de>
2018
2019         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2020           if condition == CARRY)
2021         * (genCmp): adapted to new genSkipc semantics
2022         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2023           on rIfx (genCmp was broken)
2024
2025 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2026
2027         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2028         * src/z80/main.c (_keywords[]),
2029         * src/SDCCglobal.h (struct options),
2030         * src/SDCC.y,
2031         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2032         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2033         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2034         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2035         always available in leading double underscore form. The C99 support is
2036         mostly missing, but it's a start.
2037         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2038         reserved identifier "__data".
2039
2040 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2041
2042         * src/mcs51/peeph.def: fixed bug 1170013
2043
2044 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2045
2046         * device/include/mcs51reg.h: fixed bug 842007
2047
2048 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2049
2050         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2051         last time.
2052
2053 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2054
2055         * src/port.h (struct PORT),
2056         * src/avr/ralloc.c (avr_assignRegisters),
2057         * src/avr/main.c,
2058         * src/ds390/ralloc.c (ds390_assignRegisters),
2059         * src/ds390/main.c,
2060         * src/hc08/ralloc.c (hc08_assignRegisters),
2061         * src/hc08/main.c,
2062         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2063         * src/mcs51/main.c,
2064         * src/pic/ralloc.c (pic14_assignRegisters),
2065         * src/pic/main.c,
2066         * src/pic16/ralloc.c (pic16_assignRegisters),
2067         * src/pic16/main.c,
2068         * src/xa51/ralloc.c (xa51_assignRegisters),
2069         * src/xa51/main.c,
2070         * src/z80/ralloc.c (z80_assignRegisters),
2071         * src/z80/ralloc.h,
2072         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2073         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2074         * src/SDCCcse.h,
2075         * src/SDCCdflow.c (computeDataFlow),
2076         * src/SDCCdflow.h,
2077         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2078         * src/SDCCloop.h,
2079         * src/SDCCcflow.c (*),
2080         * src/SDCCcflow.h,
2081         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2082         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2083         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2084         immedDom() returning wrong block; probably fixes bug #1160833)
2085
2086 2005-03-20 Borut Razem <borut.razem AT siol.net>
2087
2088         * support/scripts/inc2h.pl: WIN32 port
2089
2090 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2091
2092         * device/lib/makefile.in: added abs.c and labs.c
2093
2094 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2095
2096         * device/include/stdint.h: added
2097         * device/lib/abs.c: added
2098         * device/lib/labs.c: added
2099         * device/include/stdlib.h: added abs() and labs() prototypes
2100         * device/lib/libsdcc.lib: added abs and labs
2101         * device/include/float.h,
2102         * device/lib/_fsmul.c,
2103         * device/lib/printf_fast.c,
2104         * device/lib/printf_tiny.c: updated comments
2105
2106 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2107
2108         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2109         bug #1164313
2110
2111 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2112
2113         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2114         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2115
2116 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2117
2118         * device/lib/printf_large.c: removed inline assembly for portability and
2119           readability. Use printf_fast if speed or size are more important.
2120         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2121         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2122
2123 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2124
2125         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2126         prevent compiler warning
2127
2128 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2129
2130         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2131         moved to level 0 and declared as static. Also they are explicit
2132         placed in access bank. This was necessery because some times they
2133         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2134         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2135         optimizations. Currently only compare to unsigned char is implemented,
2136         * src/pic16/gen.c: added fReturnIdx array,
2137         * (struct resolvedIfx) is moved to gen.h and made public,
2138         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2139         * (aopForSym): added an optimization to directly store in stack of
2140         the operand of a SEND iCode,
2141         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2142         but as registers instead (AOP_REG) using the fReturnIdx array,
2143         * (pic16_freeAsmop): remove the freed register from the
2144         _G.sregsAlloc field,
2145         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2146         a compare of 'WREG',
2147         * (pic16_popGetTempRegCond): changed function prototype, now
2148         function takes also a bitVector argument v which holds the current
2149         set of registers that are allocated for stack access by aopForSym,
2150         registers allocated in aopForSym for accessing stack symbols are not
2151         any more part of the functions usedRegs field,
2152         * (genCall): some times aopOp is called for a stack variable to be
2153         send, aopForSym might perform the push, if this is true make sure
2154         that genCall doesn't push the variable twice by testing _G.resDirect,
2155         * (genFunction): changed testing for unspecified interrupt number
2156         from 256 to INTNO_UNSPEC,
2157         * modified selection scheme of frame pointer generation. Previously
2158         if function did use local registers a frame pointer was generated,
2159         now a frame pointer is generated only if function has arguments
2160         (that need PLUSW2 register access), or has stack arguments, or the
2161         compiler is not instructed to omit the frame pointer,
2162         * (genEndFunction): before restoring local registers that were saved
2163         in the function preamble, also restore the registers that *might*
2164         have been allocated for stack access,
2165         * (genRet): removed some old comments,
2166         * (genCmp, the active (RN's) version): added a call to the
2167         pic16_genCmp_special function to perform the compare with a more
2168         robust and optimized way,
2169         * (genInline): a feature has been added in inline code generation,
2170         which allows a wildcard variable substitution when writing inline
2171         assembly. Code is incomplete and experimental therefore undocumented,
2172         * (genCast): changed order of aopOp for result and right to allow
2173         aopForSym to directly load the result if possible,
2174         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2175         perform an optimized compare on some selected special occasions,
2176         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2177         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2178         generate an IVT any more,
2179         * src/pic16/main.c (pic16_optionsTable): added command line option
2180         --optimize-cmp,
2181         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2182         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2183         macros,
2184         * src/pic16/NOTES: Raphael Neider added in list of active developers
2185         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2186         jumptable_end to prevent bug #,
2187         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2188         inCond and outCond fields,
2189         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2190         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2191         turn off register spilling,
2192         * (packRegsForOneUse): synced with other ports' versions although it
2193         is not used currently,
2194         * (pic16_packRegisters): added an optimization while reading
2195         structure bitfields, some registers may be saved (malloc code is
2196         decreased by 80 bytes)
2197
2198 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2199
2200         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2201         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2202         this can be optimized more?
2203
2204 2005-03-10 Raphael Neider <rneider AT web.de>
2205
2206         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2207           genNearPointerGet): (hopefully) fixed access to bitfields via
2208           pointers (p->bitN = x; and x = p->bitN; failed)
2209
2210 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2211
2212         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2213
2214 2005-03-09 Raphael Neider <rneider AT web.de>
2215
2216         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2217
2218 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2219
2220         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2221         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2222           (regTypeNum): set REG_BIT type if necessary
2223         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2224         * support/regression/tests/critical.c: check bug 1144613
2225
2226 2005-03-02 Raphael Neider <rneider AT web.de>
2227
2228         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2229
2230 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2231
2232         * src/avr/ralloc.c (serialRegAssign),
2233         * src/ds390/ralloc.c (serialRegAssign),
2234         * src/hc08/ralloc.c (serialRegAssign),
2235         * src/mcs51/ralloc.c (serialRegAssign),
2236         * src/pic/ralloc.c (serialRegAssign),
2237         * src/pic16/ralloc.c (serialRegAssign),
2238         * src/xa51/ralloc.c (serialRegAssign),
2239         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2240
2241 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2242
2243         * src/SDCCast.c (decorateType): fixed bug 1124787
2244
2245 2005-02-20 Hubert Sack <sack AT digiplan.de>
2246         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2247
2248         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2249         patch #1121755
2250
2251 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2252
2253         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2254         to keep the correct label reference count when adding/removing references
2255         to labels. A peephole file using this is appended to patch #1144962.
2256
2257 2005-02-14 Raphael Neider <rneider AT web.de>
2258
2259         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2260         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2261         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2262           retrievals of result operand's value on assignment
2263
2264 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2265
2266         * device/include/pic16/string.h: modified prototype for memccpy()
2267         to memccpy(void *, void *, char, size_t)
2268         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2269         check whether to omit frame pointer or not,
2270         * (genInline): convert all occurences of "\n" to LF in inline
2271         assembler blocks, this helps formatting the inline text,
2272         * (pic16_loadFSR0): modified prototype,
2273         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2274         removed some 8051 legacy code,
2275         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2276         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2277         before allocating temporary registers in functions,
2278
2279 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2280
2281         * support/regression/tests/bitvars.c: corrected the "fix"
2282
2283 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2284
2285         * support/regression/tests/bitvars.c,
2286         * support/regression/tests/bitwise.c,
2287         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2288
2289 2005-02-10 Raphael Neider <rneider AT web.de>
2290
2291         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2292           different size for Alpha
2293         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2294
2295 2005-02-09 Raphael Neider <rneider AT web.de>
2296
2297         * src/SDCC.lex(doPragma) : save and restore warning options as well
2298           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2299         * have #pragma less_pedantic set the errorlevel to WARNING
2300           (fixes #1117001)
2301         * (cloneOptimize) : fixed wrong malloc's size
2302         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2303           facilitate correct handling of #pragma (save|restore)
2304
2305 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2306
2307         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2308
2309 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2310
2311         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2312
2313 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2314
2315         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2316
2317 2005-02-02 Raphael Neider <rneider AT web.de>
2318
2319         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2320         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2321         * (pic16_storeForReturn): fixed to allow returning function pointers
2322         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2323         * device/include/pic16/{stddef.h,stdbool.h}: added
2324
2325 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2326
2327         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2328
2329 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2330
2331         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2332         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2333          appeared to be required
2334
2335 2005-01-31 Borut Razem <borut.razem AT siol.net>
2336
2337         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2338           include/mcs51 and include/z80 directories to the package
2339
2340 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2341
2342         * src/hc08/gen.c (genFunction): fixed bug #1112752
2343
2344 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2345
2346         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2347
2348 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2349
2350         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2351
2352 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2353
2354         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2355
2356 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2357
2358         * device/include/c8051fxxx.h: removed these 6 files
2359         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2360
2361 2005-01-26 Raphael Neider <rneider AT web.de>
2362
2363         * src/pic16/gen.c (genAssign): fixed assignment from longs
2364           in codespace (were cut to three bytes)
2365         * (genDummyRead): implemented (except for CODESPACE...),
2366           fixed bug #1108575
2367         * src/pic16/glue.c (emitStatistics): beautified
2368         * device/lib/pic16/libm/Makefile: added include path
2369
2370 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2371
2372         * src/z80/gen.c (aopPut): fixed bug #1103902
2373
2374 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * device/lib/expf.c: fixed bug #1095792
2377
2378 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2379
2380         * device/lib/pic16/libm: added Math library sources
2381
2382 2005-01-24 Raphael Neider <rneider AT web.de>
2383
2384         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2385           to enable upcast to pCodeOpReg2 (there is no type tag to
2386           differenciate the two and pic16_popGet2p cast into PCOR2)
2387         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2388           (sizeof(sectNames) changed to sizeof(sectName))
2389           Both patches fix segfaults under MinGW.
2390
2391 2005-01-23 Raphael Neider <rneider AT web.de>
2392
2393         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2394           Safe_[mc]?alloc()'ed variables
2395         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2396           of (byte sized) temporaries (assign them to WREG for now)
2397         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2398           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2399           this might fix SIGSEGVs on MinGW...
2400         * src/SDCCopt.c (killDeadCode): restored original behaviour
2401           (volatile operands might get thrown away though)
2402
2403 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2404
2405         * src/pic16/gen.c: fixed bug #1106975,
2406         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2407         pointer update, INTCON is saved, global interrupts are disabled and
2408         restored after updateing TOS.
2409         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2410         * added function attribute 'shadowregs' to take advantage of shadow
2411         registers,
2412         * added function attribute 'wparam' as an alternative to the wparam
2413         pragma,
2414         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2415         user declares a non-ISR function as 'shadowregs',
2416         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2417
2418 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2419
2420         * .version: bumped version number to 2.4.8
2421         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2422         pic16 port,
2423         * device/lib/pic16/libio/i2c/: I2C module support library,
2424         * device/include/pic16/i2c.h: I2C support library header,
2425         * device/lib/pic16/libc/stdio/: standard IO support sources,
2426         * (printf_small.c): printf_small() source, supports float print,
2427         * (printf_tiny.c): printf_tiny() source, does not support floats,
2428         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2429         enable global optimizations for entire library source, other
2430         Makefiles in the source tree are also modified to reflect this,
2431         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2432         function,
2433         * doc/sdccman.lyx: updated to reflect new changes,
2434         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2435         sym->onStack if-case,
2436         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2437         sbit, idata, _idata, xdata, _xdata,
2438         * added pragma library, to link an external library, (see doc),
2439         * removed command line options, --pomit-config-words, --pomit-ivt,
2440         --pleave-reset-vector,
2441         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2442         when calling assembler to reflect memory model used, also define
2443         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2444         reflect stack model used,
2445         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2446         on stack return NULL,
2447
2448 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2449
2450         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2451           of the operands is volatile. Fixes #1020220
2452
2453 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2454
2455         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2456         * (OptimizeRegUsage): make sure that there is really no other flow where
2457           the first pCode is used
2458
2459 2005-01-22 Raphael Neider <rneider AT web.de>
2460
2461         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2462           to fix #1106967 (pCode->seq are not set up correctly)
2463
2464 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2465
2466         * src/SDCCglue.c (glue): make sure code area is declared before the
2467         static initialization area.
2468
2469 2005-01-21 Raphael Neider <rneider AT web.de>
2470
2471         * device/lib/Makefile.in: fixed test for pic16 install dir
2472         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2473           optimizations
2474         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2475           added --optimize-goto compiler switch and pragma wparam documentation
2476         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2477         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2478           and PRODH closing bug #1071770 (peephole optimizer)
2479
2480 2005-01-19 Raphael Neider <rneider AT web.de>
2481
2482         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2483           cmdLine buffers (used when calling sdcpp...) are large enough
2484           (MAX_PATH=256 truncates arguments leading to system halts when
2485           used in MinGW...)
2486         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2487         * (genUminus): rewritten to for efficiency
2488         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2489           used uninitialized in some cases)
2490         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2491           copy the third byte from the int -- now assumes 0x80 (data memory)
2492         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2493           operands (genAddLit expects the iCode's operands to swapped as
2494           well), fixed leftover bytes (crashed for short left operands)
2495         * (pic16_genMinusDec): performance improvements, removed false
2496           PIC14 emitSKPNCs
2497         * (pic16_genMinus): fixed to cope with differently sized operands
2498         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2499           for --obanksel > 1
2500         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2501         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2502           new banksel optimization
2503         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2504           analysis for temporary registers (segfaults...)
2505         * src/pic16/peeph.def: added rule
2506
2507 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2508
2509         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2510         which converts a float number to its ASCII representation
2511         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2512         functions to convert the fractional and integer part of a float to ASCII,
2513         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2514         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2515         ram
2516         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2517         _STATMEM macros,
2518         * device/include/pic16/adc.h: added GPL info,
2519         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2520         a pCodeOp as tested operand,
2521         * (genNearPointerGet): optimized bit testing, does not use
2522         intermediate register for bit value, test directly instead with
2523         BTFSS, BTFSC, works only for single bits,
2524         * (genpic16Code): dump the name of the iCode in the asm,
2525         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2526         renamed to pic16_decodeOp,
2527         * (serialRegAssign): do not allocate a temporary register for iCode
2528         sequences that test a single bit for 1/0
2529
2530 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2531
2532         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2533         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2534         access stack and frame pointers. They are initially assigned to
2535         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2536         accessing SFRs. Updated all occurences of modification of stack or
2537         frame pointer in gen.c and pcode.c,
2538         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2539         assigning of a literal value to pointers,
2540         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2541         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2542         selected
2543
2544 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2545
2546         * doc/sdccman.lyx: update documentation about stack pragma, added
2547         some info for stack memory models
2548
2549 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2550
2551         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2552
2553 2005-01-08 Raphael Neider <rneider AT web.de>
2554
2555         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2556           udata sections to fix bug #1097823
2557
2558 2005-01-05 Raphael Neider <rneider AT web.de>
2559
2560         * src/pic16/gen.c (genGenericShift): added handling of differently
2561           sized left operand and result
2562
2563 2005-01-04 Raphael Neider <rneider AT web.de>
2564
2565         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2566         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2567           to hold the condition bit)
2568         * added new version of genCmp (old code available via #define)
2569         * added new version of genShiftLeft/genShiftRight in a generic
2570           way, now supports shifting by negative values
2571         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2572           shiftCount (expected by genGenericShift)
2573         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2574         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2575           dump
2576         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2577           is an invalid literal too...)
2578
2579 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2580
2581         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2582         from Raphael Neider,
2583         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2584         for 8-bit literals. This fixes some literal operands which are sign
2585         extended to 16-bits ints when instruction needs only 8-bits.
2586
2587 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2588
2589         * device/lib/logf.c: added mcs51 assembly version
2590         * device/lib/expf.c: added mcs51 assembly version
2591         * device/lib/_logexpf.c: new shared asm code for expf and logf
2592         * device/include/math.h: add defines for assembly math library
2593         * device/lib/Makefile.in: build new _logexpf.c
2594         * device/lib/libfloat.lib: use new _logexpf.c
2595
2596 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2597
2598         * src/pic/device.c
2599         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2600           device types which have less than 0x7f registers.
2601
2602 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2603
2604         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2605
2606 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2607
2608         * device/lib/printf_fast.c: only build on supported arch.
2609         * device/lib/printf_tiny.c: only build on supported arch.
2610         * device/lib/printf_fast_f.c: only build if asm float lib
2611         * device/lib/_fsget1arg.c: only build if asm float lib
2612         * device/lib/_fsget2args.c: only build if asm float lib
2613         * device/lib/_fsnormalize.c: only build if asm float lib
2614         * device/lib/_fsreturnval.c: only build if asm float lib
2615         * device/lib/_fsrshift.c: only build if asm float lib
2616         * device/lib/_fsswapargs.c: only build if asm float lib
2617         * device/include/stdio.h: don't provide print_fast,
2618           print_fast_f, print_tiny prototypes if --xstack used
2619
2620 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2621
2622         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2623         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2624           to the SOURCES
2625
2626 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2627
2628         * device/lib/printf_fast_f.c: same as printf_fast, but
2629           with floating point enabled
2630         * device/lib/printf_fast.c: minor tweaks
2631         * device/include/stdio.h: add printf_fast_f
2632
2633 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2634
2635         * src/SDCCmain.c: make --float-reent default for mcs51
2636         * device/lib/_fsadd.c: added mcs51 assembly version
2637         * device/lib/_fssub.c: added mcs51 assembly version
2638         * device/lib/_fsmul.c: added mcs51 assembly version
2639         * device/lib/_fsdiv.c: added mcs51 assembly version
2640         * device/lib/_fseq.c: added mcs51 assembly version
2641         * device/lib/_fsneq.c: added mcs51 assembly version
2642         * device/lib/_fsgt.c: added mcs51 assembly version
2643         * device/lib/_fslt.c: added mcs51 assembly version
2644         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2645         * device/lib/Makefile.in: add _fscmp to build
2646         * device/lib/libfloat.lib: add _fscmp to build
2647
2648 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2649
2650         * device/lib/_fs2slong.c: added mcs51 assembly version
2651         * device/lib/_fs2sint.c: added mcs51 assembly version
2652         * device/lib/_fs2schar.c: added mcs51 assembly version
2653         * device/lib/_fs2ulong.c: added mcs51 assembly version
2654         * device/lib/_fs2uint.c: added mcs51 assembly version
2655         * device/lib/_fs2uchar.c: added mcs51 assembly version
2656         * device/lib/_slong2fs.c: added mcs51 assembly version
2657         * device/lib/_sint2fs.c: added mcs51 assembly version
2658         * device/lib/_schar2fs.c: added mcs51 assembly version
2659         * device/lib/_ulong2fs.c: added mcs51 assembly version
2660         * device/lib/_uint2fs.c: added mcs51 assembly version
2661         * device/lib/_uchar2fs.c: added mcs51 assembly version
2662         * device/include/float.h: added #define to select asm vs c
2663
2664 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2665
2666         * device/lib/printf_fast.c: improvements to float output
2667         * device/include/float.h: add defines for assembly float library
2668         * device/lib/_fsget1arg.c: receive 1 float arg
2669         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2670         * device/lib/_fsnormalize.c: normalize a float
2671         * device/lib/_fsreturnval.c: return float, various helper routines
2672         * device/lib/_fsrshift.c: right shift a float's mantissa
2673         * device/lib/_fsswapargs.c: swap 2 floats
2674         * device/lib/Makefile.in: build these 6 new files for mcs51
2675         * device/lib/libfloat.lib: add these 6 files to the library
2676
2677 2004-12-26 Borut Razem <borut.razem AT siol.net>
2678
2679         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2680           built by gcc 3.4.2
2681
2682 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2683
2684         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2685           and fully reentrant and register bank neutral.
2686         * device/lib/printf_fast.c: added float (not enabled by default),
2687           added compact/slower integer (also not enabled by default),
2688           improved size/speed of fast integer code, other minor changes
2689         * device/include/stdio.h, device/lib/Makefile.in,
2690           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2691
2692 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2693
2694         * src/pic16/pcode.c: declaring variables other than at the start of a
2695           block is not supported in C by VC6.
2696
2697 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2698
2699         * applied a previous patch from Raphael Neider that wasn't included
2700         in the previous commits, which fixes infinite loops within jumptable
2701         improvements,
2702         * made some fixes that previous patches introduced
2703
2704 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2705
2706         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2707         that fixes an issue with AOP_PCODE asmop's offset,
2708         * (pic16_popCopyReg): update instance field too,
2709         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2710         function of pic port,
2711         * (genCmp, genAnd, genAssign),
2712         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2713
2714 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2715
2716         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2717         variables initial values to idata section,
2718         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2719         variables in some functions. This utilizes parmBytes field of iCode
2720         structure to hold the offset of the variable in stack. (might be
2721         able to use the stack field too?)
2722         * applied patch from Raphael Neider # ### , # ###
2723         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2724         variable initial values in idata section,
2725         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2726         for static variables with initial value
2727         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2728         applied fix in while loop from Raphael Neider.
2729
2730 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2731
2732         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2733         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2734         * src/ds390/ralloc.c (serialRegAssign): spill bits
2735         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2736         * support/Util/SDCCerr.c,
2737         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2738         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2739         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2740
2741 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2742
2743         * device/include/sdcc-lib.h: inserted LGPL, added includes
2744           asm/ds390/features.h and asm/mcs51/features.h
2745         * device/include/asm/default/features.h,
2746         * device/include/asm/gbz80/features.h,
2747         * device/include/asm/z80/features.h: added empty _AUTOMEM
2748           and _STATMEM
2749         * device/include/asm/ds390/features.h,
2750         * device/include/asm/mcs51/features.h: added files with defines for
2751           _AUTOMEM and _STATMEM indicating automatic and static storage class
2752         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2753         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2754         * src/SDCCicode.c (geniCodeCast),
2755         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2756         * src/SDCCloop.c (loopInduction): removed unused variable lr
2757         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2758           to convertToFcall to include char modulo (RFE 1065037), added check
2759           if left operand is unsigned and use abs of literal value
2760         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2761           as it doesn't work after conversion from peephole.def to peephole.rul
2762         * src/mcs51/gen.c (toBoolean): added check for size,
2763           (genModOneByte): optimized code for signed char modulo a literal
2764           power of 2 (thanks to Hubert Sack),
2765           (genRRC): removed unnecessary "clr c",
2766           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2767         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2768           jump optimization,
2769           swapped rules 256.c and 256.d,
2770           extended 256.d by using new multiple checks (thanks Erik),
2771           added rules 256.e and 256.f,
2772           updated rule 261.a and 261.b to new generated code
2773         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2774
2775 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2776
2777         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2778           induction related bugs, including first part of bug #1074377
2779
2780 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2781
2782         * applied patch from bug-report #1076292,
2783         * applied patches for genAnd and Goto-optimizations for Raphael
2784         Neider,
2785         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2786         dump a less iCode information,
2787         * src/pic16/device.h (pic16_options_t): added field debgen,
2788         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2789         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2790         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2791         puclic,
2792         * (various functions): added macros FENTRY and FENTRY2 to functions,
2793         to emit function prologue,
2794         * (various functions): fixed indentation,
2795         * (genNearPointerGet): fixed loading of FSR0,
2796         * (genPackBits): applied patch from Raphael Neider to fix updating
2797         of FSR0 and touching only the modified bits,
2798         * src/pic16/genarith.c (various functions): added macros FENTRY to
2799         emit function prologue in comments,
2800         * src/pic16/pcode.h: added functions debugf2, debugf3,
2801         * src/pic16/ralloc.c: partial fix for packForPush caused
2802         segmentation fault,
2803
2804 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2805
2806         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2807           <stsp AT users.sourceforge.net> with reversed byte order
2808         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2809
2810 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2811
2812         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2813           bug #1074377
2814         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2815         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2816
2817 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2818
2819         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2820
2821 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2822
2823         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2824           conditions,
2825           (setFromConditionArgs): friendly operand parser for peephole rules,
2826           (operandBaseName, operandsNotRelated): new peephole condition
2827           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2828           architecture specific register naming into account, handles n-way
2829           comparisons, and supports quoted literals
2830         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2831
2832 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2833
2834         * src/mcs51/peeph.def: fixed bug #1076940
2835
2836 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2837
2838         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2839
2840 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2841
2842         Adding support for replacing ljmps with sjmps in jumptables
2843         generated for switch statements. For now you need to set the
2844         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2845         Now 4 algorithms for mcs51 jumptable generation are used:
2846         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2847         addresses loaded pc-relative for up to 112 cases and stack-pushing
2848         target addresses loaded with offset from dptr for up to 256 cases.
2849
2850         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2851         * src/mcs51/main.c: adapted constants for switch table generation
2852         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2853
2854 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2855
2856         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2857         * support/regression/tests/bug1057979.c: added test for bug 1073386
2858
2859 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2860
2861         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2862         compilers
2863
2864 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2865
2866         * src/pic16/device.h,
2867         * src/pic16/genarith.c,
2868         * src/pic16/glue.c,
2869         * src/pic16/main.c,
2870         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2871
2872 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2873
2874         Large cummulative patch for pic16 port.
2875         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2876         to call when a stack overflow occurs,
2877         * (malloc.h): added CVS Id tag,
2878         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2879         variable,
2880         * added libc directory. The current version of LibC contains string
2881         functions, ctype functions and macros and some functions of the
2882         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2883         be extensively tested in the future. Standard disclaimer here.
2884         Library is not automatically build yet. But one can build it by
2885         invoking 'make' inside the libc directory.
2886         * added ADC library under libio. Preliminary version yet.
2887
2888         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2889         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2890         aopForRemat() now and not by pic16_aopOp(),
2891         * (pic16_popGetTempReg): removed warning messgae when allocating
2892         temporary registers, its a buggy feature and will be removed,
2893         * (pic16_popGet): set register instance field in AOP_CRY,
2894         * (pic16_outBitC): fixed for results in size greater than 1,
2895         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2896         * (pic16_storeForReturn): optimized return of 0,
2897         * (genCmp): experimental code for new genCmp which uses PIC18's
2898         special compare&skip instructions. Initial tests fail some times
2899         with variables grater than 1 byte in size, so new code is disabled,
2900         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2901         a single bit,
2902         * (genCast): began a fix to optimize the casting of a bit to another
2903         bit, now assigning a bitfield to another bitfield will fail, sorry,
2904         * src/pic16/main.c: disabled the use of lr-support feature,
2905         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2906         * added some function prototypes, added function _debugf prototype,
2907         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2908         bits with offset (case PO_GPR_BIT),
2909         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2910         command line,
2911         * (isBankInstruction): modified to return 0 for no banking instruction,
2912         and 1 for banking instruction,
2913         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2914         caused stop processing pCodes after a inline assembly block,
2915         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2916         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2917         registers when it shouldn't,
2918         * src/pic16/ralloc.c (allocReg): add preliminary support for
2919         supporting a limited set of temporary registers,
2920
2921 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2922
2923         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2924           genDataPointerSet): ensure assignments always copy in MSB to LSB
2925           order,
2926           (loadRegFromAop): recognize CLRH optimization,
2927           (genFunction): optimize RECEIVE iCodes in reentrant functions
2928
2929 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2930
2931         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2932           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2933           selected.
2934         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2935         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2936           contiguous with data
2937
2938 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2939
2940         * device/lib/_gptrget.c (_gptrget),
2941         * device/lib/_gptrgetc.c (_gptrgetc),
2942         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2943           instead of sjmp to ret
2944         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2945           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2946
2947 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2948
2949         * .version: bumped version to 2.4.7
2950         * device/lib/_gptrget.c (_gptrget): is now _naked
2951         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2952         * device/lib/_gptrput.c (_gptrput): is now _naked
2953         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2954           (createFunction): fixed xstack
2955         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2956         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2957           or bit either,
2958           (geniCodeCritical): store original interrupt state in an iTemp bit
2959           var unless stack-auto
2960         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2961         * src/SDCCmain.c (setIncludePath): added include/target to search path
2962         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2963         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2964           prototype,
2965           (processFuncArgs): put bit vars in bit area
2966         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2967           unsaveRBank): fixed xstack,
2968           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2969           (genFunction, genEndFunction): fixed xstack,
2970           (genAssign): optimization don't walk backwards through mem
2971         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2972         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2973         * support/regression/Makefile: also make library (for stack-auto) when
2974           making "all" and added "test-mcs51-xstack-auto"
2975         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2976         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2977         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2978         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2979         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2980           make-library by MAKE_LIBRARY
2981         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2982           regression tests for xstack
2983         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2984         * support/regression/tests/critical.c: test for critical on mcs51
2985
2986 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2987
2988         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2989           built version of sdcc instead of installed version
2990
2991 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2992
2993         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2994         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2995           vprintf.c now
2996         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2997         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2998           WARNING: remove device/lib/build/z80/printf.o by hand when
2999           updating from previous build!
3000         * device/lib/z80/printf.c: updated comment
3001         * support/regression/tests/bug1057979.c: test all ports now
3002         * support/regression/tests/bug1065458.c: file added
3003
3004 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3005
3006         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3007           *_start and *_end symbols for static functions
3008
3009 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3010
3011         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3012           and search crt0.o in all library paths,
3013           (setIncludePath): proper handling of --nostdinc,
3014           (setLibPath): proper handling of --nostdlib
3015         * support/regression/Makefile,
3016         * support/regression/ports/ds390/spec.mk,
3017         * support/regression/ports/gbz80/spec.mk,
3018         * support/regression/ports/hc08/spec.mk,
3019         * support/regression/ports/mcs51/spec.mk,
3020         * support/regression/ports/mcs51-large/spec.mk,
3021         * support/regression/ports/mcs51-stack-auto/spec.mk,
3022         * support/regression/ports/z80/spec.mk: use include and lib files from
3023           built version of sdcc instead of installed version
3024         * doc/sdccman.lyx: fixed typo in --nostdinc
3025
3026 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3027
3028         * src/pic/pcode.c,
3029         * src/pic/device.c,
3030         * src/pic/ralloc.c,
3031         * src/pic/gen.c : added support to generate code for struct bit fields.
3032
3033 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3034
3035         * as/xa51/xa_version.h,
3036         * device/include/errno.h,
3037         * device/include/regc515c.h,
3038         * device/lib/_itoa.c,
3039         * device/lib/_ltoa.c,
3040         * device/lib/ser_ir_cts_rts.c,
3041         * sim/ucsim/xa.src/glob.cc,
3042         * sim/ucsim/xa.src/inst_gen.cc,
3043         * sim/ucsim/xa.src/xa_bit.cc,
3044         * sim/ucsim/xa.src/xa_sfr.cc,
3045         * sim/ucsim/z80.src/inst_dd.cc,
3046         * sim/ucsim/z80.src/inst_fdcb.cc,
3047         * support/scripts/keil2sdcc.pl,
3048         * src/pic16/pic16.dsp,
3049         * src/pic16/pic16a.dsp: corrected cvs line endings
3050         * device/lib/printf_large.c: fixed bug 1057979
3051         * src/pic16/gen.c: fixed non-C standard code
3052         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3053         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3054         * support/regression/ports/mcs51/support.c: reload T1 asap
3055         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3056           pdata use and clear idata startup behaviour
3057         * support/regression/tests/bug1057979.c: added
3058
3059 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3060
3061         * device/examples/ds390/ow390/ad26.h,
3062         * device/examples/ds390/ow390/cnt1d.h,
3063         * device/examples/ds390/ow390/crcutil.c,
3064         * device/examples/ds390/ow390/ownet.h,
3065         * device/examples/ds390/ow390/owsesu.c,
3066         * device/examples/ds390/ow390/swt12.h,
3067         * device/examples/ds390/ow390/swtoper.c,
3068         * device/examples/ds390/ow390/temp10.h,
3069         * device/examples/ds390/ow390/thermodl.c,
3070         * device/examples/ds390/tinitalk/tinitalk.dsp,
3071         * device/examples/ds390/tinitalk/tinitalk.dsw,
3072         * device/examples/mcs51/clock/hw.h,
3073         * device/examples/mcs51/simple2/go.bat,
3074         * device/examples/serialcomm/windows/serial.h,
3075         * device/examples/xa51/dummy.c,
3076         * device/examples/xa51/hello.c,
3077         * device/include/80c51xa.h,
3078         * device/include/at89x051.h: corrected cvs line endings
3079
3080 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3081
3082         * src/pic16/main.c (options): added command line --gstack, to trace
3083         stack over/under flows,
3084         * added pragma 'wparam' to allow passing first byte of function
3085         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3086         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3087         call to __gstack_test function and sets up the symbol as extern,
3088         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3089         * popaop): added call to pic16_testStackOverflow,
3090         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3091         wparamList list,
3092         * (genCall, genPcall): now all parameters are passed via stack
3093         except in functions that are pass to wparam pragma in which WREG is
3094         used too,
3095         * (genPcall): REENTRANT flag is checked to see if variable prototype
3096         contains reentrant keyword, don't call a non-reentrant function, via
3097         a reentrant function pointer or vice versa, functions are never
3098         passed via WREG,
3099         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3100         D.Winkler,
3101         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3102         SIGSEGV when accessing a NULL register stucture,
3103         * (pic16_printGPointerType): modified to handle UPPER modifier for
3104         function initializers, changed prototype of function to simpler one,
3105         * (pic16_printIvalFuncPtr): check to see if function is already
3106         added in externs list,
3107         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3108         optimized a move from W to SFR with a move to the same register
3109         later after a CALL,
3110         * device/lib/pic16/debug: NEW directory, contains debug features
3111         which are enabled when linking with libdebug.lib, currently command
3112         line option --gstack enables stack pointer tracing for over/under
3113         flow, corresponding sources are in debug/gstack
3114
3115 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3116
3117         * doc/sdccman.lyx: updated SDCC version,
3118         * (PIC16 port): update list of command line options,
3119         * src/pic16/device.h (structure pic16_options_t): added field gstack
3120         to enable stack overflow tracing on push/pops,
3121         * src/pic16/device.c (statistics structure): added statistics
3122         structure,
3123         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3124         pic16_dump_int_registers): increase statistics counters for each
3125         * variable which is encountered
3126         * (pic16_dump_usection): emit each .udata variable to its own udata
3127         section,
3128         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3129         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3130         parameters via stack, otherwise use old scheme,
3131         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3132         assembler output file,
3133         * src/pic16/main.c: added command line options --gstack to enable
3134         push/pop tracing for stack overflow,
3135         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3136         instructions): added size of each instruction,
3137         * (pic16_countInstruction): estimate size of instructions in
3138         the_pFile list, inline assembly blocks are not counted,
3139         * (pic16_FixRegisterBanking): trace previous register usage, when
3140         banksel optimizations is greater than 0, don't emit a redudant
3141         banksel directive,
3142
3143 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3144
3145         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3146         * src/pic16/ralloc.c : applied same fix for pic16.
3147         * src/pic/gen.c : tidied it up a little.
3148
3149 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3150
3151         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3152         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3153
3154 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3155
3156         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3157
3158 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3159
3160         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3161         non-reentrant function __modsint in the interrupt function (thus
3162         corrupting math operations during serial I/O)
3163         * device/lib/ser_ir.c: as above, changed buffersize
3164         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3165         256.c,d for zeroing
3166         * doc/Makefile: added option -t for rsync
3167
3168 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3169
3170         * src/SDCCast.h (struct ast),
3171         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3172
3173 2004-10-20 Borut Razem <borut.razem AT siol.net>
3174
3175         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3176         package
3177
3178 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3179
3180         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3181         makefile targets,
3182         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3183         support functions to replace long sequences of MOVFF's from access
3184         bank registers to stack and vice versa,
3185         * src/pic16/device.h: added new field opt_flags, where optimization
3186         flags can be set to enable certain features,
3187         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3188         * pBlock, (genFunction, genEndFunction): surroung loop for
3189         saving/loading used registers in stack with PC_INFO pCodes,
3190         INF_LREGS. Code in between can then be optimized by pCode optimizer
3191         to support function calls,
3192         * (genDataPointerSet): fixed bug which loaded float fields in
3193         structures with corrupt data,
3194         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3195         in a standard way debug info on stderr. Feature used for developing
3196         and debugging only,
3197         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3198         obsolete chunks of code,
3199         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3200         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3201         * pic16/src/pcode.c (pic16_newpCodeInfo,
3202         * (pic16_newpCodeOpLocalRegs),
3203         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3204         feature,
3205         * (pic16_pCodeConstString): printing of the initial value of a
3206         symbol as a comment is inhibited since parsing was already done by
3207         copyStr and output is corrupt,
3208         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3209
3210 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3211
3212         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3213
3214 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3215
3216         * as/mcs51/lkarea.c: removed old K&R style,
3217           (lnksect): changed check on boundary error,
3218           (lnksect2): changed check on boundary error,
3219           (lnksect2): extend XSTK to end of page if size = 1
3220         * as/mcs51/lkmain.c: removed old K&R style,
3221           (Areas51): create l_IRAM symbol
3222         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3223         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3224           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3225         * device/lib/_mullong.c: added version to be compiled with xstack
3226         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3227         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3228         * device/lib/mcs51/crtxstack.asm: fixed comment
3229         * src/SDCCglue.c: maxInterrupts defaults to 0,
3230           (emitMaps): added pdata,
3231           (createInterruptVect): (re)moved default,
3232           (glue): added pdata,
3233           (glue): moved __start__xstack to XSTK with default size 1
3234         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3235           and options.float_rent when options.stackAuto is set,
3236           (linkEdit): only write XDATA_NAME if provided on command line
3237         * src/SDCCmem.h,
3238         * src/SDCCmem.c: added pdata
3239         * src/port.h: added pdata_name to PORT
3240         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3241           (saveRegisters, unsaveRegisters): removed usage of B,
3242           (genMinus): fixed accumulator clash,
3243           (genJumpTab): added comment, this needs another look
3244         * src/mcs51/gen.c: added check for "B in use" paranoia,
3245           added pushB() and popB()
3246         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3247           chance
3248         * src/avr/main.c,
3249         * src/ds390/main.c,
3250         * src/hc08/main.c,
3251         * src/mcs51/main.c,
3252         * src/pic/main.c,
3253         * src/pic16/main.c,
3254         * src/xa51/main.c,
3255         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3256           added PSEG (PAG,XDATA) or NULL to port specifier
3257         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3258         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3259           (_mcs51_genInitStartup): removed __start__xstack equ,
3260           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3261         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3262         * src/z80/gen.c (_rleAppend): fixed warnings
3263         * support/regression/tests/zeropad.c: added pdata test
3264         * .version: bumped to 2.4.6
3265
3266 2004-10-17 Borut Razem <borut.razem AT siol.net>
3267
3268         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3269         as a part of nightly build
3270
3271 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3272
3273         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3274         WREG holds the first byte function parameters,
3275         * (aopForSym): take special case for symbols which are in FARSPACE
3276         but in CODESPACE too,
3277         * (assignResultValue): modified to take into account _G.useWreg,
3278         * (genCall): don't use wreg for parameter passing when function is
3279         declared as reentrant, too, added optimization INCF to stack
3280         pointer when stack parameter count is 1,
3281         * (genFunction, genEndFunction): refurnished and fixed to not using
3282         wreg for passing parameters when function has varargs or is
3283         reentrant, fixed bug with symbol name compare for generating
3284         functions in absolute address,
3285         * (pic16_storeForReturn): refurnished,
3286         * (genCmp): began writing a new version of the function, not ready
3287         yet, therefore it is disabled,
3288         * (genAssign): do not read code memory when assigning a function to
3289         a pointer function,
3290         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3291         array of characters, not pointer,
3292         * (pic16initialComments): in debug mode emit an .ident directive for
3293         the assembler,
3294         * (_process_pragma): emit a new warning type (internal to pic16)
3295         when setting stack to default length, emit a similar warning when
3296         placing a function at absolute address and address is not word aligned
3297         * (_pic16_parseOptions): added 'return TRUE' statement,
3298         * (_pic16_linkEdit): if compiling a source, then add the source's
3299         file object, first in the list of objects to link,
3300
3301 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3302
3303         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3304         * src/pic/main.c : removed VC warning.
3305         * src/pic/gen.c : changed comment.
3306
3307 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3308
3309         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3310         reference to a deprecated symbol _GPTRREG was causing failure to
3311         link. Thanks G. M. Gallant for the info.
3312
3313 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3314
3315         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3316         comments for Bugs item #954788.
3317
3318 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3319
3320         * src/pic16/device.c (pic16_dump_gsection,
3321         * pic16_groupRegistersInSection): handle symbols declared to be in
3322         access bank differently,
3323         * src/pic16/gen.c (struct _G): added field resDirect,
3324         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3325         send values read from stack directly to result and don't allocate
3326         temporary values,
3327         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3328         same registers,
3329         * (pic16_sameRegsOfs): NEW,
3330         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3331         free because they were not allocated from temporary pool,
3332         * pic16_popRegFromString): workaround to fix a problem with
3333         allocating variables twice or never,
3334         * (genGenPointerGet): using PRODL instead of FSR0H,
3335         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3336         instead of FSR0H,
3337         * (genAssign): take advantage of the _G.resDirect flag,
3338         * (genCast): around line 11844, use mov2f instead of directly
3339         MOVFF'ing between operands to account for literal values,
3340         * src/pic16/genutils.c: some new debug functions for gpsim have been
3341         added,
3342         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3343         float with integer part only,
3344         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3345         place variables in access bank
3346         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3347         updated sources to reflect recent changes in gen.c
3348
3349 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3350
3351         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3352         sources that searched for headers in installation path, now the
3353         device/include/pic16 is used,
3354         * src/pic16/glue.c (pic16glue),
3355         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3356         .line directives if not in debug mode, this suppresses assembler's
3357         warnings for ignored directives
3358
3359 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3360
3361         * src/port.h: made reset_regparms prototype void parameter explicit.
3362         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3363         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3364         * doc/sdccman.lyx: documented warning disabling and how to use
3365           printf_large to make it print floats.
3366         * device/include/stdbool.h: NEW
3367         * device/lib/_atof.c,
3368         * device/lib/_divuint.c,
3369         * device/lib/_divulong.c,
3370         * device/lib/expf.c,
3371         * device/lib/printf_large.c,
3372         * device/lib/sincosf.c,
3373         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3374         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3375           a completely reentrant lib.
3376
3377 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3378
3379         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3380         * device/include/pic16/stdio.h: fixed bug with colon
3381
3382 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3383
3384         * device/include/pic16/stdio.h,
3385         * device/include/pic16/stdlib.h,
3386         * device/include/pic16/math.h: NEW
3387         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3388         declared as _naked to reduce overhead
3389         * device/lib/Makefile.in (target port-specific-objects-pic16):
3390         changed * to *.* so to ignore the CVS directory,
3391         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3392         stacked variables back in stack,
3393         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3394         corruption
3395
3396 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3397
3398         * .version: bumped version number to 2.4.5
3399         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3400         * support/Util/SDCCerr.c (messages structure): added entry for
3401         W_POSSBUG2
3402
3403         Large cumulative patch for pic16 port and libraries.
3404         * device/include/pic16/sdcc-lib.h,
3405         * device/include/pic16/stdarg.h,
3406         * device/include/asm/pic16/features.h,
3407         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3408         * device/include/pic16/float.h: changes reentrant keyword with
3409         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3410         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3411         updated target build-libraries to include objects from gptr,
3412         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3413         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3414         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3415         all function headings,
3416         * src/SDCCmain.c: added global parameter userIncDirsSet,
3417         * (parseCmdLine): when option -I is encountered add directory to
3418         userIncDirsSet too,
3419         * src/version.awk: added space between control and long,
3420         * src/pic16/NOTES: added some notes for the port,
3421         * src/pic16/gen.c: added prototype for mov2fp function,
3422         * (fReturnpic16[]): properly named return value registers,
3423         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3424         * (aopForSym): added code to handle symbols with onStack flag set,
3425         symbols onStack are allocated PTRSIZE bytes,
3426         * (aopFreeAsmop): handles special case where asmops are stack objects,
3427         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3428         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3429         added argument lock to trace flaws in allocating temporary registers
3430         when developing port,
3431         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3432         * (pic16_popRegFromString): reenabled allocating a direct register
3433         from string,
3434         * (assignResultValue): various beautifications,
3435         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3436         referenced function argument,
3437         * (genIpush): reenabled to allow stacked arguments, handles only
3438         ic->parmPush iCodes,
3439         * (genCall, genPcall): major changes to allow for variable argument
3440         functions, fixed a bug with falsely restoring stack pointer after
3441         returning from call,
3442         * (genFunction): pending code for critical function,
3443         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3444         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3445         * (genNearPointerGet): fixed bug with indirect reading, was always
3446         reading from INDF0
3447         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3448         pointers,
3449         * (genAddrOf): rewrote code to take address of a stacked function parameter
3450         * (genCast): fixed casting to generic pointer type,
3451         * src/pic16/gen.h: added AOP_STA,
3452         * (struct asmop): added field stk,
3453         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3454         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3455         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3456         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3457         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3458         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3459         generic pointers,
3460         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3461         and library paths,
3462         * (pic16_port structure): generic pointer size is set to 3,
3463         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3464         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3465         compiler warning,
3466         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3467         operand is an iTemp,
3468
3469 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3470
3471         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3472         * debugger/mcs51/simi.c: addapt new syntax of s51
3473
3474 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3475
3476         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3477         * src/pic16/pcode.c: commented out some calls to free() in order to
3478         fix bug #989576,
3479
3480 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3481
3482         * src/SDCCicode.h,
3483         * src/SDCCicode.c (isiCodeInFunctionCall),
3484         * src/avr/ralloc.c (selectSpil),
3485         * src/pic/ralloc.c (selectSpil),
3486         * src/pic16/ralloc.c (selectSpil),
3487         * src/ds390/ralloc.c (selectSpil),
3488         * src/hc08/ralloc.c (selectSpil),
3489         * src/xa51/ralloc.c (selectSpil),
3490         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3491         stack in the middle of a function call sequence (fixes bug #1020268)
3492         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3493         costs associated with the minimum switch case.
3494
3495 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3496
3497         * src/SDCC.lex: fixed bug #1030549
3498
3499 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3500
3501         * src/SDCCcse.h (struct cseDef),
3502         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3503         over a function call if the CSE is derived from a symbol whose
3504         address has been taken (fixes bug #1029883)
3505         * support/regression/tests/bug-1029883: a new regression test for
3506         this bug
3507
3508 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3509
3510         * src/hc08/gen.c (emitinline): fixed bug #1029778
3511         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3512         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3513         and starts toward RFE #905167)
3514
3515 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3516
3517         * src/pic16/gen.c (mov2f): New function to move an operand to
3518         another without considering if it is a literal or a register,
3519         * (pic16_sameRegs): don't check if they are both AOP_REG,
3520         * (AccRsh): removed andmask=0 lines,
3521         * (genLeftShift): duplicated to be improved in future versions,
3522         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3523         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3524         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3525         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3526         * (insertBankSwitch): fixed inserting banksel directives algorithm
3527         for instructions that follow a skip instruction, this fixes a report
3528         for broken subtraction code generation,
3529         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3530         iCode is a left op, just in case result and right share the same
3531         registers
3532
3533 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3534
3535         * src/hc08/main.c,
3536         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3537         preservation of HX
3538         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3539         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3540         on 2004-09-12; it was buggy
3541
3542 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3543
3544         * src/SDCCsymt.h: removed RESULT_CHECK
3545         * src/SDCCast.c,
3546         * src/SDCCglue.c,
3547         * src/SDCCval.c,
3548         * src/pic/glue.c,
3549         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3550
3551 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3552
3553         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3554         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3555         configuration values no more rejected by compiler, they are assigned
3556         to configuration registers with a warning message instead,
3557         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3558         the for-loop so last conf register is emitted too,
3559         * (_pic16_initPaths): link library libsdcc.lib by default,
3560         * (_hasNativeMulFor): modified test for multiplication according to
3561         Raphael Neider's remarks. Integer multiplication is also done with
3562         support functions,
3563         * device/include/pic16/pic18fregs.h: corrected type error in while
3564         testing and including 18f6720 header file
3565
3566 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3567
3568         * src/pic16/device.h (pic16_options): removed field use_crt,
3569         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3570         until an optimization to handle single bits is added,
3571         * (pic16_loadFSR0): moved before genUnpackBits,
3572         * (genAnd): some white lines removed,
3573         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3574         leave_reset flags in pic16_options when using crt modules,
3575
3576 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3577
3578         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3579           for bugs 898889 & 979599. Also used some safer print instructions.
3580
3581 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3582
3583         * src/pic16/device.h (pic16_options_t): added field use_crt,
3584         crt_name, no_crt,
3585         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3586         catch a probable future bug,
3587         * src/pic16/gen.c: aopIdx function commented out,
3588         * (genAssign): commented out old code which used aopIdx,
3589         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3590         code, added if conditionals to take into account the --use-crt
3591         command line options,
3592         * src/pic16/main.c (pic16_optionsTable): added new command line
3593         options, --use-crt= and --no-crt,
3594         * (_pic16_linkEdit): now the proper crt object is added in the
3595         linker command line except than when --no-crt is specified,
3596         * src/pic16/pcode.c,
3597         * src/pic16/pcode.h: added some structures and functions for a new
3598         optimization scheme to compansate for instruction overhead between
3599         same iCodes, this scheme is currently under development and is not
3600         working in any way,
3601         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3602         to && operator,
3603         * device/lib/pic16/startup/crt0i.c,
3604         * device/lib/pic16/startup/crt0iz.c: added global char variable
3605         __uflags to force the generation of an idata section
3606
3607 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3608
3609         * doc/Makefile,
3610         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3611         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3612
3613 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3614
3615         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3616         Frieder) and clarified the default code optimization mode
3617
3618 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3619
3620         * src/SDCC.lex (doPragma, process_pragma),
3621         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3622         "opt_code_size", and "opt_code_balanced"
3623         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3624         regrouped options by category, added support for category headers
3625         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3626         and "--opt-code-size"
3627         * doc/sdccman.lyx: documented these new options and pragmas
3628         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3629         preference into account
3630
3631 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3632
3633         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3634           geniCodePreDec): Fixed bug 904237 by generating a warning
3635         * src/SDCCerr.h,
3636         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3637
3638 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3639
3640         * src/pic/device.c : When no max ram set validate full memory range.
3641         * src/pic/pcode.c,
3642         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3643
3644 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3645
3646         * device/lib/_gptrget.c,
3647         * device/lib/_gptrput.c: updated comment
3648         * device/lib/calloc.c,
3649         * device/lib/free.c,
3650         * device/lib/malloc.c,
3651         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3652         * src/SDCCcse.c (cseBBlock),
3653         * src/SDCCicode.c (printOperand, geniCodeArray),
3654         * src/SDCCicode.h (struct operand): fixed bug 868103
3655         * support/regression/tests/bug-868103.c: added
3656         * src/SDCCast.c (searchLitOp),
3657         * src/SDCCcse.h (struct cseDef),
3658         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3659         * src/SDCCicode.h (struct operand),
3660         * src/SDCCsymt.h (struct sym_link),
3661         * src/avr/gen.c (hasInc),
3662         * src/ds390/gen.c (hasInc),
3663         * src/hc08/gen.c (genPlusIncr, hasInc),
3664         * src/mcs51/gen.c (hasInc),
3665         * src/pic16/glue.c (pic16_printIvalChar),
3666         * src/pic16/ralloc.c (regWithIdx),
3667         * src/xa51/gen.c (hasInc) : removed warnings
3668         * src/SDCCast.c (createBlock): added comment ???
3669         * src/hc08/ralloc.c: updated comments
3670
3671 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3672
3673         * doc/sdccman.lyx: updated section on switch statements, added
3674         section about semaphore locking
3675         * doc/Makefile: added option -info for latex2html
3676         * device/lib/_gptrget.c,
3677         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3678
3679 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3680
3681         * src/pic/device.h,
3682         * src/pic/device.c,
3683         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3684          maxram is less than 0x100.
3685
3686 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3687
3688         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3689
3690 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3691
3692         * src/port.h,
3693         * src/mcs51/main.c,
3694         * src/ds390/main.c,
3695         * src/z80/main.c,
3696         * src/hc08/main.c,
3697         * src/pic/main.c,
3698         * src/pic16/main.c,
3699         * src/avr/main.c,
3700         * src/xa51/main.c
3701         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3702         a jump table is the best form for a switch statement, including
3703         automatic insertion of missing cases to make the case range
3704         continuous. Developed in collaboration with Frieder Ferlemann.
3705
3706 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3707
3708         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3709         accumulator result if it needs sign extension
3710
3711 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3712
3713         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3714
3715 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3716
3717         * device/lib/gbz80/printf.c,
3718         * device/lib/z80/printf.c: removed define for NULL
3719
3720 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3721
3722         * as/xa51/xa_link.c,
3723         * device/examples/ds390/ow390/ad26.c,
3724         * device/examples/ds390/ow390/cnt1d.c,
3725         * device/examples/ds390/ow390/counter.c,
3726         * device/examples/ds390/ow390/ds2480.h,
3727         * device/examples/ds390/ow390/ds2480ut.c,
3728         * device/examples/ds390/ow390/findtype.c,
3729         * device/examples/ds390/ow390/gethumd.c,
3730         * device/examples/ds390/ow390/owllu.c,
3731         * device/examples/ds390/ow390/ownetu.c,
3732         * device/examples/ds390/ow390/swt12.c,
3733         * device/examples/ds390/ow390/swtloop.c,
3734         * device/examples/ds390/ow390/temp.c,
3735         * device/examples/ds390/ow390/temp10.c,
3736         * device/examples/ds390/ow390/thermo21.c,
3737         * device/examples/ds390/ow390/tinilnk.c,
3738         * device/examples/ds390/ow390/tstfind.c,
3739         * device/examples/serialcomm/windows/serial.cpp,
3740         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3741         * device/include/reg51.h: fixed line endings for cvs
3742
3743 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3744
3745         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3746         packRegsForAccUse, packRegisters): new accumulator register
3747         packing algorithm
3748         * support/regression/ports/hc08/support.c (_putchar): suppress
3749         warning of unused variable
3750         * src/SDCCicode.c: added SWAP entry to codeTable
3751
3752 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3753
3754         * device/lib/sprintf.c: forgot to add this file before previous commit
3755
3756 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3757
3758         * src/pic16/gen.c (genPackBits): added operand right in function
3759         parameters, load result directly if p_type is POINTER (that is
3760         called by genNearPointerSet)
3761         * (genUnPackBits): added operand left in function parameters,
3762         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3763         FSR0 if accessing bitfields,
3764
3765 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3766
3767         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3768           _print_format; updated printf, sprintf, vsprintf
3769         * device/include/asm/default/features.h: corrected comment/define
3770         * device/lib/Makefile.in: added sprintf.c
3771         * device/lib/libsdcc.lib: added sprintf module
3772         * device/lib/printf_large.c,
3773         * device/lib/vprintf.c,
3774         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3775           into these 3 files
3776         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3777         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3778         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3779           hc08 test
3780         * support/regression/tests/zeropad.c: define idata as data for hc08
3781
3782 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3783
3784         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3785         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3786         labels are referenced at least once (even if a reference is not found)
3787         * src/hc08/gen.c (emitcode): set isComment flag for comments
3788         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3789         loads), rules 6a..6b (optimize jumps to return)
3790
3791 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3792
3793         * device/lib/acosf.c (acosf),
3794         * device/lib/asinf.c (asinf),
3795         * device/lib/atanf.c (atanf),
3796         * device/lib/ceilf.c (ceilf),
3797         * device/lib/cosf.c (cosf),
3798         * device/lib/coshf.c (coshf),
3799         * device/lib/cotf.c (cotf),
3800         * device/lib/fabsf.c (fabsf),
3801         * device/lib/floorf.c (floorf),
3802         * device/lib/log10f.c (log10f),
3803         * device/lib/logf.c (logf),
3804         * device/lib/sinf.c (sinf),
3805         * device/lib/sinhf.c (sinhf),
3806         * device/lib/sqrtf.c (sqrtf),
3807         * device/lib/tanf.c (tanf),
3808         * device/lib/tanhf.c (tanhf),
3809         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3810         replaced all instances of "reentrant" in the library functions
3811         defined in math.h with this macro.
3812         * support/regression/tests/float_trans.c: reenabled test for hc08
3813
3814 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3815
3816         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3817         erroneously deleted
3818
3819 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3820
3821         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3822         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3823         multi-byte volatile operands are used
3824         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3825         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3826         initialization to area GSINIT0 so that it would always precede
3827         any static initializers in GSINIT
3828         * support/regression/tests/zeropad.c: fixed idata define for hc08
3829         * support/regression/tests/bug-927659.c,
3830         * support/regression/tests/float_trans.c: disabled tests for hc08
3831         pending missing library routines
3832         * .version: increased version number to 2.4.4 - hc08 port now passes
3833         regression tests
3834
3835
3836 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3837
3838         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3839         * Makefile.common.in,
3840         * as/Makefile,
3841         * as/hc08/Makefile.in,
3842         * as/mcs51/Makefile.in,
3843         * as/z80/Makefile.in,
3844         * debugger/mcs51/Makefile.in,
3845         * device/include/Makefile.in,
3846         * device/lib/Makefile.in,
3847         * doc/Makefile,
3848         * link/Makefile,
3849         * link/z80/Makefile.in,
3850         * packihx/Makefile.in,
3851         * sim/ucsim/main_in.mk,
3852         * sim/ucsim/avr.src/Makefile.in,
3853         * sim/ucsim/doc/Makefile.in,
3854         * sim/ucsim/gui.src/serio.src/Makefile.in,
3855         * sim/ucsim/hc08.src/Makefile.in,
3856         * sim/ucsim/s51.src/Makefile.in,
3857         * sim/ucsim/xa.src/Makefile.in,
3858         * sim/ucsim/z80.src/Makefile.in,
3859         * src/Makefile.in,
3860         * support/cpp2/Makefile.in,
3861         * support/librarian/Makefile,
3862         * support/makebin/Makefile: added DESTDIR to the install path proposed
3863         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3864         * doc/sdccman.lyx: added DESTDIR documentation
3865
3866 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3867
3868         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3869         instruction for interrupt handlers, use fast returns when returning
3870         from high priority interrupts
3871
3872 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3873
3874         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3875         code generation
3876         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3877         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3878         bugs, ported much of Bernhard's code from mcs51
3879         * src/mcs51/gen.c (genSend),
3880         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3881         than one when calling a reentrant function
3882         * device/lib/_mullong.c: defined an alternate struct layout for big
3883         endian ports (hc08)
3884
3885 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3886
3887         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3888         test
3889
3890 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3891
3892         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3893         are sane and complete before asking the port its prefered parameter
3894         passing method (fixes bug #1017633)
3895         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3896         and _ret3
3897
3898 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3899
3900         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3901         problem in bitfields >= 8 bits.
3902
3903 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3904
3905         * src/SDCCsymt.c: undid changes that were not meant to be committed
3906
3907 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3908
3909         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3910
3911 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3912
3913         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3914           copied and wrong bit got inverted
3915
3916 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3917
3918         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3919         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3920         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3921         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3922         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3923         assignments to bitfields at known addresses
3924         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3925         reads from bitfields at known addresses
3926         * src/hc08/ralloc.c (packRegisters),
3927         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3928         genhc08Code): optimize pointer get values used as conditionals
3929         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3930         and branch
3931
3932 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3933
3934         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3935         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3936         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3937         as conditionals
3938
3939 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3940
3941         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3942
3943 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3944
3945         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3946         related problems
3947
3948 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3949
3950         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3951
3952 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3953
3954         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3955         mcs51 port
3956
3957 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3958
3959         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3960
3961 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3962
3963         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3964         cases use more compact code.
3965
3966 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3967
3968         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3969
3970 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3973
3974 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3975
3976         * src/SDCCsymt.h,
3977         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3978         parameter of changePointer() from symbol* to sym_link*
3979         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3980         * src/SDCCsymt.c (compareType): void* type is castable to other
3981         pointers, but not necesarily an exact match.
3982         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3983         is no longer blindly treated as an exact match.
3984         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3985
3986 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3987
3988         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3989
3990 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3991
3992         * src/pic/gen.c,
3993         * src/pic/pcode.c,
3994         * src/pic/ralloc.h,
3995         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3996
3997 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3998
3999         * src/pic/device.c,
4000         * src/pic/device.h,
4001         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4002
4003 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4004
4005         * src/mcs51/gen.c (emitcode): fixed bug #992819
4006
4007 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4008
4009         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4010           there's no need to make it worse
4011
4012 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4013
4014         * src/mcs51/ralloc.c (deassignLR),
4015         * src/ds390/ralloc.c (deassignLR),
4016         * src/hc08/ralloc.c (deassignLR),
4017         * src/z80/ralloc.c (deassignLR),
4018         * src/pic/ralloc.c (deassignLR),
4019         * src/pic16/ralloc.c (deassignLR),
4020         * src/avr/ralloc.c (deassignLR),
4021         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4022         rlivePoint): fixed another part of bug #971834
4023
4024 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4025
4026         * src/z80/main.c: enabled "critical" keyword
4027         * src/z80/mappings.i,
4028         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4029         functions (fixes bug #979646)
4030         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4031
4032 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4033
4034         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4035           such as c:\mydir.
4036
4037 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4038
4039         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4040           doesn't disable too much optimizations
4041
4042 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4043
4044         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4045
4046 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4047
4048         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4049
4050 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4051
4052         * src/pic/gen.c tidied up tabs
4053         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4054         * src/pic/main.c tidied up tabs
4055         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4056         * src/pic/pcoderegs.c tidied up tabs
4057         * src/pic/ralloc.c tidied up tabs
4058
4059 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4060
4061         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4062         to S_FIXED for pic16 port and when symbol is not in level 0,
4063         allocate for S_REGISTER storage class and pic16 port, too,
4064         * src/pic16/device.h: prototype for checkSym,
4065         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4066         * (pic16_assignConfigWordValue): test the value and the mask to
4067         validate that the value is suitable for the configuration word,
4068         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4069         collect extern declared symbols, don't emit symbol twice, check
4070         first if symbol is in publics set first,
4071         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4072         * added command line '--fstack' which enables an experimental
4073         feature for stack access, too buggy to be used yet...
4074         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4075         * (pic16_allocDirReg): when register has storage class S_REGISTER
4076         allocate in pic16_dynAccessRegs,
4077         * device/include/pic16/pic18f????.h: modified configuration word
4078         naming convention, words started as CONFIG0H but should be CONFIG1H
4079
4080 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4081
4082         * device/include/mcs51reg.h: fixed bug 970993
4083
4084 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4085
4086         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4087         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4088         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4089         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4090         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4091         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4092           error/warning numbers,
4093           added function setWarningDisabled()
4094         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4095         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4096           _memcmp.c _memmove.c calloc.c realloc.c free.c
4097         * support/regression/tests/malloc.c: added tests for new functionality
4098         * support/regression/tests/zeropad.c: added tests for truncated initializers
4099           and initialized char arrays starting with '\x0'
4100         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4101
4102 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4103
4104         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4105
4106 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4107
4108         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4109         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4110         peephole 177.e. Thanks to anonymous
4111
4112 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4113
4114         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4115         function isn't used in the source but referenced as a
4116         variable initializer then declare it as extern in .asm file
4117
4118 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4119
4120         * .version: increased version number to 2.4.3
4121
4122         Adding version extension according to ChangeLog CVS revision
4123         * src/Makefile.in (target all): added dependency 'version.h'
4124         * (rule version.h): added rule to create version.h from ChangeLog,
4125         * (rule dep): added dependency version.h,
4126         * src/version.awk: AWK script to create version.h
4127         * src/SDCCdwarf2.c (dwWriteModule),
4128         * src/SDCCglue.c (initialComments),
4129         * src/SDCCmain.c (printVersionInfo): modified to write after
4130         version string the version extension number,
4131         * src/SDCCutil.c: included "version.h"
4132         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4133         number,
4134         * src/SDCCutil.h: added prototype for getBuildNumber
4135
4136         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4137         includeDirsSet, too,
4138         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4139         const char [] is found in function prototype...
4140
4141         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4142         moving to WREG with source is already in WREG,
4143         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4144         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4145         * (aopForSym): stack'ed symbols are partially supported, added
4146         if-clause to support symbols in FARSPACE,
4147         * (sameRegs): added test for AOP_ACC to see if registers are same,
4148         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4149         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4150         * (pic16_popRegFromString): will not allocate a new register if it
4151         doesn't find one by name, bug may have introduced...
4152         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4153         * (genIpush): revived to use pic16 port's stack,
4154         * (genAddrOf): added incomplete case for stack'ed operand,
4155         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4156         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4157         can handle multibyte operands,
4158         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4159         * (pic16initialComments): added message for MPLAB compatibility
4160         mode enabled,
4161         * src/pic16/main.h: prototype for pic16_mplab_comp,
4162         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4163         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4164         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4165         because of increased complexity of procedure,
4166         * (_process_pragma): stack pragma changed to format 'stack pos len',
4167         emit symbol '_stack_end' to conform with gplink,
4168         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4169         to search for register,
4170         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4171         PO_GPR_REGISTER,
4172         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4173         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4174         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4175         case for PO_GPR_REGISTER,
4176         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4177         dies, the new era is ahead !...
4178         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4179         pic16_dynInternalRegs,
4180         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4181         * (pic16_allocDirReg): minor optimizations and bug fixes,
4182         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4183
4184         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4185         load stack and frame pointer with address of 'stack_end' symbol
4186
4187 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4188
4189         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4190         without source code but only variable initializers
4191
4192 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4193
4194         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4195         external are not declared as extern to reduce overhead while linking
4196
4197 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4198
4199         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4200
4201 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4202
4203         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4204           Yee Keat for the patch
4205         * src/SDCCast.c (decorateType): fixed bug #979599
4206         * src/ds390/gen.h: removed local fReturnSizeDS390
4207         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4208         * src/ds390/gen.c (genAnd, genOr, genXor),
4209         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4210
4211 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4212
4213         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4214         add relFilesSet to $3, manipulate $2 to handle linking of object
4215         files without source files in command line,
4216         * device/include/pic16 (all headers): added ID location macros,
4217         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4218         entries for ID location bytes,
4219         * (pic16_assignIdByteValue): NEW,
4220         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4221         added field dumpcalltree to pic16_options_t,
4222         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4223         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4224         emitting rFalseIfx label after check_carry label,
4225         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4226         pic16_emitDIRegs), NEW
4227         * (pic16glue): dump .calltree file when option --calltree found,
4228         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4229         * (_pic16_genAssemblerPreamble): emit ID locations after
4230         configuration registers,
4231         * (pic16_linkCmd): modifications of the link command,
4232         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4233         * (pic16_pCodeInitRegisters): don't init stack registers,
4234         * (pic16_findPrevInstruction): fixed bug,
4235         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4236         bug with immediate registers,
4237         * (buildCallTree): traces stack push and pop,
4238         * (pct2): dump also stack usage for each function,
4239         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4240         * (pic16_allocDirReg): various modifications,
4241         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4242         fixed to 1,
4243
4244 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4245
4246         * src/pic16/pcode.c: removed buggy double colon
4247
4248 2004-07-01 Borut Razem <borut.razem AT siol.net>
4249
4250         * support/scripts/sdcc.nsi: added include/pic16 to setup
4251
4252 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4253
4254         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4255         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4256         target 'clean',
4257         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4258         specific command line arguments. Also added sample lkr script
4259         for placing a variable at a specific memory bank.
4260         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4261         at a specific memory bank,
4262         * (pic16_dump_isection): fixed bug which caused string literals to
4263         be omitted when dumping idata section,
4264         * (pic16_groupRegistersInSection): added code to handle registers
4265         in specific memory banks,
4266         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4267         public, all references are renamed too,
4268         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4269         AOP_DPTR2,
4270         * (pic16_storeForReturn): added case to handle when dest is WREG,
4271         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4272         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4273         pic16_rel_udata, check to see if that register is marked as being
4274         a member of a specific memory bank,
4275         * (pic16_printIvalCharPtr): added code to add string literals either
4276         to code or the idata sections,
4277         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4278         also accept the 'udata' pragma,
4279         * src/pic16/main.h: new structure types sectName and sectSym
4280         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4281         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4282         * (pic16_findPrevInstruction): fixed, it returned nothing,
4283         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4284         instruction combinations,
4285         * (pic16_FixRegisterBanking): heavily reorganised,
4286         * (pic16_AnalyzeBanking): if generating banksel directives is
4287         disabled, then don't call FixRegisterBanking at all,
4288         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4289         completely removed,
4290         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4291
4292 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4293
4294         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4295         Phuah Yee Keat <yk.phuah AT nestac.com>
4296
4297 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4298
4299         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4300         correctly the IVT even if it is relocated to some other location
4301
4302 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4303
4304         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4305         * device/include/pic16/pic18f2220.h: NEW,
4306         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4307         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4308         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4309         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4310         nodefaultlibs, ivt_loc is the location of the interrupt vector
4311         table, and nodefaultlibs signs that default libraries should not be
4312         linked in link stage,
4313         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4314         according to --ivt-loc argument,
4315         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4316         when pragma stack is found,
4317
4318 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4319
4320         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4321         256 (range check), 257 (do while), 258.a-f (bit banging
4322         f.e. on 3-wire SPI bus)
4323
4324 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4325
4326         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4327         variables used exclusively within a loop
4328
4329 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4330
4331         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4332
4333 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4334
4335         * src/SDCClrange.c (computeClash): fixed bug #971834
4336
4337 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4338
4339         * src/mcs51/gen.c (genCmp): fixed bug #975903
4340         * src/hc08/gen.c (operandsEqu),
4341         * src/ds390/gen.c (operandsEqu),
4342         * src/z80/gen.c (operandsEqu),
4343         * src/pic/gen.c (operandsEqu),
4344         * src/pic16/gen.c (operandsEqu),
4345         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4346         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4347
4348 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4351
4352 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4353
4354         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4355         default case in switch statement,
4356         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4357         to eliminate problem with initialisation of pointers, but problem
4358         still exists,
4359         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4360         * (emitStaticSegment): removed various lines emitting debug info,
4361         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4362         added processor registers for utilizing EEPROM,
4363         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4364         configurable and set 8
4365
4366 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4367
4368         * .version: increased version number to 2.4.2,
4369
4370         Cumulative patch for pic16 port
4371         * src/pic16/device.c: changed scheme to dump initial values for
4372         variables in idata segment, all print_idata* functions were removed,
4373         now the pic16_printIval* will be called,
4374         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4375         * _pic16_printPointerType, pic16_printPointerType,
4376         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4377         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4378         NEW, similar to the respective functions in SDCCglue.c,
4379         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4380         way, emitting hex bytes,
4381         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4382
4383 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4384
4385         * src/avr/ralloc.c (serialRegAssign),
4386         * src/xa51/ralloc.c (serialRegAssign),
4387         * src/pic/ralloc.c (serialRegAssign),
4388         * src/pic16/ralloc.c (serialRegAssign),
4389         * src/hc08/ralloc.c (serialRegAssign),
4390         * src/z80/ralloc.c (serialRegAssign),
4391         * src/ds390/ralloc.c (serialRegAssign),
4392         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4393
4394 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4395
4396         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4397         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4398
4399 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4400
4401         Cumulative patch for pic16 port:
4402         * src/pic16/device.h (typedef PIC16_device) modified fields for
4403         defining microcontrollers,
4404         * src/pic16/device.c: added new info for all devices in Pics16 array,
4405         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4406         to be optimised out by the pCode optimiser,
4407         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4408         specially, bug reported by G.M. Gallant,
4409         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4410         as force'd so that cannot be optimised out by pCode optimiser,
4411         * src/pic16/pcode.c,
4412         * src/pic16/pcodepeeph.c,
4413         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4414         they are disabled by default, but can be enabled explicit with
4415         command argument --denable-peeps, for testing,
4416         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4417         --pomit-ivt in COMPILE_FLAGS
4418
4419 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4420
4421         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4422           compilation on MSVC
4423
4424 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4425
4426         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4427
4428 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4429
4430         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4431         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4432
4433 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4434
4435         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4436         would only assign 0x300001 register.
4437
4438 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4439
4440         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4441         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4442
4443 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4444
4445         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4446         for ds80c400
4447         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4448         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4449         added peephole 254 (left shift), 255 (jump table)
4450
4451 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4452
4453         * device/lib/Makefile.in: removed comment line with model-pic16,
4454         * (target port-specific-objects-pic16): the libraries and objects
4455         are copied to the build directory form the device/lib/pic16/bin
4456         directory
4457
4458         Cumulative patch concerning pic16 port:
4459         * library directory has been re-organized,
4460         * added support for PIC18F1220,
4461         * added headers and library sources for chips 18f1220,18f6520,
4462         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4463
4464         * configuration registers setting has changed, now each supported
4465         device has a complete description of the registers it uses,
4466         * all initialisations are moved to idata sections, these section
4467         can be absolute or relocatable,
4468         * fixed initialisation of codespace variables,
4469         * fixed warning about PCLATU and gpsim,
4470         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4471         * (genAssign): use table reads when assigning from variables in codespace,
4472         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4473         char/int variables placed in codespace,
4474         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4475         registers set in .asm file, no need for --pomit-config-words anymore,
4476         * (pic16glue): some 8051 legacy segments are commented out
4477         (to be removed completely),
4478         * added support for alternative assembler and linker with --asm=
4479         and --link= command line arguments,
4480         * peepholes are disabled automatically in the port, no need to
4481         specify on command line,
4482         * port supports natively char/int/long multiplication, but converts
4483         all divisions to support functions,
4484         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4485         to the file set in variable $2,
4486         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4487         strings in ASCII format and not in hex,
4488         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4489         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4490         allocate proper register if iCodes aren't temporary,
4491
4492 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4493
4494         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4495
4496 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4497
4498         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4499         is commented out
4500
4501 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4502
4503         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4504         computed address is reused
4505         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4506         multi-byte bitfields
4507
4508 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4509
4510         * src/z80/gen.c: (genArrayInit): must check for pointers too
4511
4512 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4513
4514         * support/regression/tests/zeropad.c: never meant to commit the
4515           nestedstruct test: removed, added check for GCC version
4516
4517 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4518
4519         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4520         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4521         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4522           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4523           bugs 928906 and 954082 half-empty initializers
4524         * src/SDCCsymt.h,
4525         * src/SDCCsymt.c (getAllocSize): added for above fix
4526         * src/z80/gen.c (genArrayInit): fixed bug 741044
4527         * support/regression/tests/zeropad.c: added tests
4528
4529 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4530
4531         * src/pic16/device.c (pic16_dump_section): corrected bug which
4532         caused some symbols of the libraries to be misplaced
4533
4534 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4535
4536         * src/pic16/glue.c,
4537         * src/pic16/ralloc.h,
4538         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4539         to fix conflict with pic port
4540
4541 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4542
4543         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4544         externs configuration variables,
4545         * src/pic16/ralloc.h,
4546         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4547         prototype in header, commented out some debug messages
4548
4549 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4550
4551         * src/pic16/glue.c,
4552         * src/pic16/main.c,
4553         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4554         for gpasm COFF object generation. Thanks to D. Hawkins for
4555         his patch info
4556
4557 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4558
4559         * src/ds390/main.c,
4560         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4561         Brock for spotting this)
4562         * src/ds390/gen.c (genEndFunction),
4563         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4564         interrupt handler and critical. Disable push/pop optimizations when
4565         peephole optimizations disabled.
4566
4567 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4568
4569         Updated pic16 library sources and headers.
4570         * device/lib/pic16/pic18f*/ ,
4571         * device/include/pic16/*.h: modified to handle structured SFR
4572         definitions
4573
4574 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4575
4576         * src/port.h (PORT structure): added hook initPaths, now each
4577         port can declare its own default search paths,
4578         which can been seen with the --print-search-dirs option,
4579         see pic16 port for example,
4580         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4581         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4582         * (doPrintSearchDirs): NEW, replaces in a central manner the
4583         printing of search dirs which was split in set*Paths functions,
4584         * (main): added call to port->initPaths and doPrintSearchDirs,
4585         * src/avr/main.c,
4586         * src/ds390/main.c,
4587         * src/hc08/main.c,
4588         * src/izt/i186.c,
4589         * src/izt/tlcs900h.c,
4590         * src/mcs51/main.c,
4591         * src/pic/main.c,
4592         * src/pic16/main.c: modified port structures to reflect addition of
4593         initPaths hook,
4594
4595         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4596         * (pic16_dump_section): for registers in same address reserve memory once,
4597         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4598         to no_banksel,
4599         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4600         result is greater in size than right or left,
4601         * (pic16_genUMult8X8_8): there are some cases where the result can
4602         be 16 bits size, so handle these,
4603         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4604         * (pic16_outBitC): modified to emit pcodes,
4605         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4606         or not,
4607         * (genDivOneByte): implemented algorithm to divide 8-bits,
4608         * (genCmp): uncommented goto, but issues still exist,
4609         * (genAnd): fixed a bug with variables >8bits,
4610         * (genPackBits): optimization added that uses BCF/BSF to change a
4611         single bit,
4612         * (genAssign): fixed bug when assigning floating point literals,
4613         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4614         __sdcc_gsinit_startup label,
4615         * src/pic16/main.c (_pic16_init): removed search directory
4616         initialisations,
4617         * (_pic16_initPaths): NEW, used to initialise search directories,
4618         * (_hasNativeMulFor): support functions for all except char/int
4619         multiplication, and char division,
4620         * (PIC16_port struct): modified entry for native mul support,
4621         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4622         no_banksel option,
4623         * (buildCallTree): call to register_usage is ifdef'ed out,
4624
4625 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4626
4627         * device/include/string.h: applied Stas Sergeev's patch to make this
4628         header file compatible with the preprocessor -Wundef option
4629         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4630         failure (fixes bug #941458)
4631
4632 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4633
4634         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4635         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4636         that the variable, not the function, should be static
4637         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4638         to be consistent with non-literal case
4639
4640 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * src/SDCCast.c (isConformingBody): fixed bug #949967
4643         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4644         convilong): fixed bug #952086
4645
4646 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4647
4648         * src/SDCCmem.c (allocVariables): fixed bug #955321
4649
4650 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4651
4652         * src/hc08/main.c (_hc08_genAssemblerEnd),
4653         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4654         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4655         completely eliminated the use of a temporary file
4656         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4657         when more than one file linked
4658         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4659
4660 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4663         which fixes bug #543481
4664         * support/regression/tests/bug-751703.c: fixed comments left from a
4665         cut and paste error
4666         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4667         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4668         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4669         scopes
4670         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4671         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4672         are now changed to underscores in moduleName
4673
4674 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4675
4676         * as/mcs51/lkmem.c: better fix for bug #954173
4677
4678 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4679         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4680
4681         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4682         * device/include/c8051f000.h,
4683         * device/include/c8051f120.h,
4684         * device/include/c8051f300.h,
4685         * device/include/c8051f310.h,
4686         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4687         PWM16) and detab'ed
4688
4689 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4690
4691         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4692         and mailing lists, doc'ed --no-peep-comments, removed reference
4693         to knoppix (newest version has no LyX/LaTeX), other minor changes
4694         * src/SDCCglue.c (glue): save 2 bytes stack space with
4695         option --main-return. The ljmp could probably be avoided too
4696
4697 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4698
4699         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4700
4701 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4702
4703         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4704         * src/SDCCopt.c (isLocalWithoutDef),
4705         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4706         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4707         (credit to Maarten Brock for patch #949363, on which this is based)
4708         * support/regression/tests/bug-751703.c: some test cases of extern used
4709         within inner scopes.
4710
4711 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4712
4713         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4714         SPEC_STRUCT
4715         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4716         struct definitions
4717         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4718         dwWriteLabel): fix to create valid debugger symbols even when
4719         the module name has non-alphanumeric symbols in it
4720         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4721         when a variable's allocation has been optimized away
4722
4723
4724 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4725
4726         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4727         * src/hc08/main.c,
4728         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4729         * src/mcs51/main.c,
4730         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4731         * src/ds390/main.c,
4732         * src/z80/gen.c (z80_emitDebuggerSymbol),
4733         * src/z80/main.c,
4734         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4735         * src/pic/main.c,
4736         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4737         * src/pic16/main.c,
4738         * src/avr/gen.c (avr_emitDebuggerSymbol),
4739         * src/avr/main.c,
4740         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4741         * src/xa51/main.c,
4742         * src/SDCCdebug.c (emitDebuggerSymbol),
4743         * src/SDCCdebug.h,
4744         * src/port.h: added a debugger struct to the port struct. Added a
4745         callback for defining debugger symbols
4746
4747         * src/SDCCast.c (createLabel),
4748         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4749         with isitmp = 1
4750         * src/SDCCicode.h,
4751         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4752         iCode back to the ast for the function
4753
4754         * src/hc08/ralloc.c (hc08_assignRegisters),
4755         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4756         unneeded fields from the regs struct.
4757         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4758         pushReg() & pullReg() functions instead of emitcode()
4759
4760         * src/hc08/gen.c (genLabel, genhc08Code),
4761         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4762
4763         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4764         debugger hooks
4765
4766         * src/hc08/gen.c (genEndFunction, genhc08Code),
4767         * src/hc08/gen.h,
4768         * src/mcs51/gen.c (genEndFunction, gen51Code),
4769         * src/mcs51/gen.h,
4770         * src/ds390/gen.c (genEndFunction, gen390Code),
4771         * src/ds390/gen.h,
4772         * src/z80/gen.c (genEndFunction, genZ80Code),
4773         * src/z80/gen.h,
4774         * src/z80/z80.h,
4775         * src/pic/gen.c (genEndFunction, genpic14Code),
4776         * src/pic/gen.h,
4777         * src/pic16/gen.c (genEndFunction, genpic16Code),
4778         * src/pic16/gen.h,
4779         * src/avr/gen.c (genEndFunction, genAVRCode),
4780         * src/avr/gen.h,
4781         * src/xa51/gen.c (genEndFunction, genXA51Code),
4782         * src/xa51/gen.h,
4783         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4784         specific code to cdbFile.c and out of the backend code generators
4785
4786         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4787         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4788         starting address is now 0
4789
4790         * as/hc08/asm.h,
4791         * as/hc08/m08pst.c,
4792         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4793         assembler directive for DWARF support
4794         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4795
4796         * src/src.dsp,
4797         * src/Makefile.in,
4798         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4799
4800 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4801
4802         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4803         and inappropriate peephole optimization in jump tables
4804
4805 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4806
4807         * as/hc08/m08pst.c,
4808         * src/SDCCglue.c: sdccopt works for the hc08 port now
4809
4810 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4811
4812         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4813
4814 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4815
4816         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4817
4818 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4819
4820         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4821         rules
4822         * src/SDCCmain.c,
4823         * src/SDCCglobl.h,
4824         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4825         comments from the peephole optimizer replacement rules
4826         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4827         symbols
4828         * src/SDCCcse.c (updateSpillLocation),
4829         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4830         equivalents
4831         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4832         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4833         objects far pointers
4834
4835 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4836
4837         * src/SDCCsymt.h: a missing part of my last change
4838         * src/pic/ralloc.c (regTypeNum),
4839         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4840
4841 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * src/SDCCicode.h,
4844         * src/SDCCicode.c (aggrToPtrDclType),
4845         * src/SDCCptropt.h,
4846         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4847         ptrPseudoSymConvert),
4848         * src/pic/ralloc.c (regTypeNum),
4849         * src/pic16/ralloc.c (regTypeNum),
4850         * src/hc08/ralloc.c (regTypeNum),
4851         * src/ds390/ralloc.c (regTypeNum),
4852         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4853         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4854
4855 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4856
4857         * link/z80/lkmain.c (afile),
4858         * as/hc08/lkmain.c (afile),
4859         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4860         prevent a pointer problem when a filename has no directory and
4861         no extension specified.
4862
4863 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4864
4865         * link/z80/lkmain.c (afile): allow periods in directory names
4866         * link/z80/lkmain.c (afile),
4867         * as/mcs51/lkmain.c (afile),
4868         * as/hc08/lkmain.c (afile): allow linker script file to have an
4869         extension other than ".lnk"
4870         * link/z80/lklex.c (getfid),
4871         * link/z80/lkmain.c (parse),
4872         * as/mcs51/lklex.c (getfid),
4873         * as/mcs51/lkmain.c (parse),
4874         * as/hc08/lklex.c (getfid),
4875         * as/hc08/lkmain.c (parse): Support comments in the linker script
4876         file on lines by themselves and after filenames
4877
4878 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4879
4880         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4881
4882 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4883
4884         * src/z80/peeph-z80.def: removed some peephole rules that don't
4885         work with multibyte arithmetic (fixed bug #937126)
4886         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4887         to registers and not global variables
4888         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4889         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4890         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4891         checking for assignments not internally generated (fixed bug #931895)
4892         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4893         structure member (fixed bug #930072)
4894
4895 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4896
4897         * src/SDCCmain.c (linkEdit),
4898         * src/hc08/main.c (_hc08_parseOptions),
4899         * as/hc08/Makefile.in,
4900         * as/hc08/aslink.h,
4901         * as/hc08/asm.h,
4902         * as/hc08/m08pst.c,
4903         * as/hc08/lkrloc.c (relr, rele),
4904         * as/hc08/lkarea.c (lnkarea)
4905         * as/hc08/lkmain.c (afile, parse),
4906         * as/hc08/lkelf.c: support for ELF output
4907         * as/hc08/lks19.c (s19),
4908         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4909
4910 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4911
4912         * as/mcs51/lkihx.c: Fixed bug #899105.
4913
4914 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4915
4916         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4917         .dsp files from Unix to DOS.
4918
4919 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4920
4921         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4922         function pointers; we have been compliant for several months now.
4923         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4924         change that was accidently commented out
4925         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4926         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4927         bug #922319
4928
4929 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4930
4931         * src/hc08/gen.c: output of all of the internal debugging information
4932         is now controlled by the D() macro; it is disabled by default
4933
4934 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4935
4936         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4937         harder to keep the same registers during a CAST iCode
4938         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4939         long via int can be done in a single cast, if the signedness is
4940         correct.
4941         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4942         putchar() in tinibios.c in ds390's library
4943
4944 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4945
4946         * src/SDCCast.c (decorateType): fixed bug #898889,
4947         cast result of a literal complement too
4948         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4949         fixed check for bitfields
4950
4951 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * src/SDCCicode.c (geniCodeLogic): made it static,
4954         (geniCodeLogicAndOr): added in order to fix bug #905492,
4955         (ast2iCode): fixed bug #905492
4956         * support/regression/tests/bug-905492.c: added
4957         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4958         (processParms): fixed bug #927659: don't copy parms, this will clear
4959         decorated flag
4960         * support/regression/tests/bug-927659.c: added
4961
4962 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4963
4964         * src/SDCCast.c (addCast): don't cast float to char
4965         * device/lib/libsdcc.lib: added _memmove
4966
4967 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4968
4969         * device/lib/large/Makefile: fixed parallel execution by
4970         replacing `make` by `$(MAKE)`
4971
4972 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4975         offsets (fixes bug #923936)
4976
4977 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4978
4979         * device/lib/small/Makefile: fixed parallel execution by
4980         replacing `make` by `$(MAKE)`
4981
4982 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4983
4984         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4985
4986 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4987
4988         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4989         * src/regression/Makefile: Regression test was not running.
4990
4991 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4992
4993         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4994         complement if possible
4995         * src/SDCCval.c (valComplement),
4996         * src/SDCCicode.c (operandOperation): fixed complement of literal
4997         * support/regression/tests/onebyte.c (testComplement): added
4998
4999 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5000
5001         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5002         return an optimized tree; actually replace actParm with the new tree
5003         * src/SDCCast.h: added some parantheses to remove side effects
5004         * support/regression/tests/bug-920866.c
5005
5006 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5007         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5008         Bit operands were not being handled properly in the pic14 port.
5009         (now src/regression/add.c passes again).
5010
5011 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * src/SDCC.y (labeled_statement): case and default no longer require
5014         a following statement (RFE #893037)
5015
5016 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5019         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5020         disabled (fixes bug #916294)
5021         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5022         "mov a,acc"; patch provided by Lenny Story
5023         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5024
5025 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5028         functions
5029         * src/ds390/gen.c (genFunction, genEndFunction),
5030         * src/ds390/ralloc.c (ds390_assignRegisters),
5031         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5032         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5033         pushed if there are parameters passed on the stack. Also, a cleaner
5034         way to decide if r0/r1 should be pushed/popped. (Together they fix
5035         bug #918693)
5036
5037 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5038
5039         * doc/sdccman.lyx,
5040         * device/lib/mcs51/crtpagesfr.asm,
5041         * device/lib/mcs51/crtxinit.asm,
5042         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5043         to avoid confusion with Si Lab's SFRPAGE register.
5044
5045 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5046
5047         * src/SDCCglue.c (emitMaps): allow public sfr variables
5048         * src/SDCCglue.c (initialComments): include compiler build date
5049         with compiler version and put the timestamp of the generated
5050         assembly file on a serperate line to be less confusing.
5051         * src/port.h: added genInitStartup hook
5052         * src/avr/main.c,
5053         * src/ds390/main.c,
5054         * src/hc08/main.c,
5055         * src/pic/main.c,
5056         * src/pic16/main.c,
5057         * src/xa51/main.c,
5058         * src/z80/main.c: genInitStartup initialize as NULL (default to
5059         historical behaviour)
5060         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5061         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5062         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5063         library instead of hard coding it into the compiler.
5064         * support/regression/ports/mcs51-stack-auto/spec.mk,
5065         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5066         * device/lib/mcs51/Makefile,
5067         * device/lib/small/Makefile,
5068         * device/lib/large/Makefile,
5069         * device/lib/mcs51/crtpagesfr.asm,
5070         * device/lib/mcs51/crtstart.asm,
5071         * device/lib/mcs51/crtxclear.asm,
5072         * device/lib/mcs51/crtxinit.asm,
5073         * device/lib/mcs51/crtclear.asm,
5074         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5075         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5076         and into user configurable files.
5077         * device/lib/clean.mk: clean mcs51 directory too
5078         * support/regression/tests/longlit.c: added static to T1 declaration
5079         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5080         accesses in the initialization code
5081
5082 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5083
5084         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5085         OSCTRIMVAL as noted in bug #916008
5086
5087 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5088
5089         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5090         in loops with multiple exits (reported as incorrect registers
5091         used by Martin Helmling in Sdcc-user list)
5092
5093 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5094
5095         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5096         made ds390 register extensions look less like error messages
5097
5098 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5101         reported by Adam Wozniak in Sdcc-user list
5102
5103 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5104
5105         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5106         arithmetic optimizations, added debug output
5107
5108 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5109
5110         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5111         * sdcc.spec: updated and split sdcc into 3 rpms
5112         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5113         needed for literals of LEFT_OP and '+'
5114         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5115         introduced RESULT_TYPE_NOPROM
5116         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5117         left shift
5118         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5119         limited promotion to int only for '*'
5120         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5121
5122 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5123
5124         * src/pic16/gen.c (genSkip),
5125         (genc16bit2lit), (gencjneshort): commented out
5126         (is_LitOp): new helper function, checks operand type
5127         (genCmpEq): rewritten
5128
5129 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5130
5131         * support/regression/tests/bug-908454.c: added
5132
5133 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5134
5135         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5136         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5137         (geniCodeCast): cosmetic, don't preserve bit storage class
5138         (geniCodeLeftShift): added promotion
5139         (geniCodeLogic): fixed regression
5140         * src/SDCCsymt.c (computeTypeOr): accept bits too
5141         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5142
5143 2004-03-07  Borut Razem <borut.razem AT siol.net>
5144
5145         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5146
5147 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5148
5149         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5150         version of pic16_genPackRegisters which does not check if ic is a
5151         CAST operator,
5152         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5153         function cause string1.c regression test fails
5154
5155 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5156
5157         * sim/ucsim/configure.in,
5158         * sim/ucsim/configure,
5159         * sim/ucsim/doc/Makefile.in: use docdir
5160         * src/SDCC.y: fixed sbit atrributes
5161         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5162         * src/SDCCast.c (decorateType): |^& need special promotion handling
5163         * src/SDCCast.h,
5164         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5165         * src/SDCCsymt.h (computeType),
5166         * src/SDCCicode.c: computeType() needs op
5167         * src/SDCCsymt.c (checkTypeSanity),
5168         * doc/sddman.lyx: "plain" bitfields are unsigned
5169         * src/SDCCsymt.c (computeTypeOr): added
5170         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5171         |^& ops
5172         * src/SDCCval.c (val*): computeType() needs op
5173         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5174         * support/regression/tests/onebyte.c: added tests for |^&
5175
5176 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5177
5178         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5179         for writing icode into asm output.
5180
5181 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5182
5183         * src/pic16/device.c: added some debug lines enabled
5184         with macro DEBUG_CHECK,
5185         * src/pic16/genarith.c: more debug in genPlus,
5186         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5187         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5188         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5189         * (aopForSym): onStack symbols are re-placed in data memspace,
5190         and onStack flag is cleared,
5191         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5192         copy temporary pcodeop,
5193         * (genPcall): added warning for not updating PCLATU,
5194         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5195         always true for pic16 port,
5196         * (genMultOneWord): NEW, supports integer multiplication,
5197         * (genMult): modified to call genMultOneWord,
5198         * (ifxForOp): added warning when return NULL,
5199         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5200         flag is set before call to operandFromSymbol for implicit
5201         added structures,
5202         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5203         options.intlong_rent are set by default,
5204         * (_hasNativeMulFor): modified to allow port generation of integer
5205         multiplication,
5206         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5207         set regtype to REG_SFR for all registers, restricting seting the
5208         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5209
5210 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5211
5212         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5213         more than 500 times in the regression tests
5214
5215 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5216
5217         * support/Util/SDCCerr.h,
5218         * support/Util/SDCCerr.c,
5219         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5220         enumerator_list),
5221         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5222         for symbol conflicts.
5223         * support/valdiags/tests/enum.c,
5224         * support/valdiags/tests/tentdecl.c,
5225         * support/valdiags/tests/struct.c: expect possible error messages
5226         referring to original symbol definitions.
5227         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5228         * src/SDCCsymt.h,
5229         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5230
5231 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5232
5233         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5234
5235 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5236
5237         * src/pic16/ralloc.c (newReg): fixed bug #908929
5238
5239 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5240
5241         * src/ds390/gen.c: added missing #include "main.h"
5242
5243 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5244
5245         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5246         checking if symbol is already in set,
5247         * src/pic16/device.h: prototype for checkAddSym,
5248         * src/pic16/gen.c: (_G): added entry interruptvector,
5249         * (assignResultValue): removed some commented out lines,
5250         * (genFunction): check for ISR via sym->type, absolute section for
5251         interrupt code is created via a new pBlock, the goto instruction is
5252         placed now correctly at the interrupt vector position, changed all
5253         references from ivec to _G.interruptvector,
5254         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5255         is the interrupt is a high priority one, same for return from ISR,
5256         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5257         externs to calls of checkAddSym,
5258         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5259         pic16_pcode_verbose flag is set,
5260         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5261         * src/pic16/pcoderegs.c: message about how many registers are saved
5262         will only be emitted if pic16_pcode_verbose flag is set,
5263
5264 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5265
5266         * src/ds390/ralloc.h,
5267         * src/ds390/ralloc.c (ds390_regWithIdx),
5268         * src/ds390/gen.c (emitcode),
5269         * src/ds390/main.h,
5270         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5271         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5272         ds390operandCompare, getRegsRead, getRegsWritten,
5273         initializeAsmLineNode): customized instruction size calculation for
5274         ds390, started basis for some register optimizations
5275         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5276         corresponding assembly output
5277         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5278         missing push/pop of r0/r1. Optimized push/pops
5279
5280 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5281
5282         * src/mcs51/main.c (instructionSize): fixed ACALL size
5283         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5284
5285 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5286
5287         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5288         the sorting of rlist with NULL elements
5289         * (print_idataType, print_idata): NEW to create idata sections
5290         * src/pic16/device.h: idataSymSet new variable
5291         * src/pic16/gen.c (genFunction): fixed some bugs in string
5292         comparing, improved the absolute section creation for ISRs,
5293         added FSR0L/FSR0H in registers that are saved in an ISR,
5294         * (genInline): fixed the processing of inline snippets,
5295         now they undergo no process by the peephole optimizer
5296         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5297         are placed in idataSymSet,
5298         * (pic16emitStaticSeg): extern symbols are added in externs,
5299         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5300         switching when aboslute variables are placed in access bank memory
5301         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5302         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5303         commented out with #if,
5304         * (pic16_packRegisters): reintroduce the check for CAST because some
5305         symbols are not correctly handled,
5306         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5307         pCodeInstruction instead of pCode,
5308         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5309         pCodeAsmDir definition,
5310         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5311         directive, then the argument directive is emitted without the leading
5312         tab, hack for inline labels which must be in the first column,
5313         * (compareLabel,pic16_findNextInstruction),
5314         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5315         * (insertBankSwitch): modified for the new pCodeAsmDir,
5316
5317 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5318         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5319
5320         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5321         instance,
5322         * (pushSide): commented out with #if,
5323         * (assignResultValue): fixed some typos in saving
5324         registers,
5325         * (genPcall): FIXED and sync'ed with genCall,
5326         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5327         * (genNearPointerGet): fixed to handle some more cases,
5328         implementation scheme via table reads,
5329         * (genConstPointerGet): modified to access code memory correct,
5330         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5331         and improved to handle some cases
5332         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5333         instead of "RETLW" for init data
5334         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5335         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5336         variables are placed in access bank memory (<0x80 and >=0xf80),
5337         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5338         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5339         TBLWT_POSTDEC,TBLWT_PREINC
5340         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5341         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5342         directives
5343         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5344         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5345         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5346         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5347
5348 2004-02-29  Borut Razem <borut.razem AT siol.net>
5349
5350         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5351         support/Util/findme.h, support/Util/system.h: enhance binary relative
5352         search for lib and include by using findProgramPath()
5353
5354 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5355
5356         * src/SDCCpeeph.h,
5357         * src/SDCCpeeph.c (pcDistance),
5358         * src/port.h,
5359         * src/mcs51/ralloc.h,
5360         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5361         * src/mcs51/main.h,
5362         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5363         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5364         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5365         size calculation port specific, started basis for some register
5366         optimizations
5367         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5368         missing push/pop of r0/r1. Optimized push/pops
5369         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5370         * device/lib/_modsint.c (_modsint),
5371         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5372         and stack version so regression tests pass
5373
5374 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5375
5376         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5377         * src/SDCCast.c (decorateType): catch another small optimization
5378         with '?' operator
5379         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5380         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5381         modified to finally use computeType() all over SDCC,
5382         see Feature Request #877103
5383         * src/SDCCval.h: cosmetic
5384         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5385         valCompare(); regression tested in muldiv.c
5386         * support/regression/tests/muldiv.c (testMod): mod sign follows
5387         dividend only
5388
5389 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5390
5391         * src/SDCCast.c (decorateType): fixed bug #902362
5392         * doc/INSTALL.txt: fixed install instructions for win32
5393
5394 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5395
5396         * device/include/Makefile.in (install): fixed by replacing spaces
5397         by tabs
5398         * doc/README.txt,
5399         * doc/INSTALL.txt: updated for release
5400         * doc/sdccman.lyx: added warning for --xstack being buggy
5401
5402 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5403
5404         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5405         to eliminate build warnings.
5406         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5407
5408 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5409            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5410
5411         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5412         removed -penable-stack, added comment for stack pragma, added
5413         warning for not initializing the stack/frame registers, removed
5414         comment at interrupts section
5415
5416         Stack is made permanent, there is no ability to disable stack usage.
5417         * src/pic16/device.h,
5418         * src/pic16/device.c: removed all references to USE_STACK macro,
5419         * src/pic16/device.c (pic16_dump_section): when no elements in
5420         rlist, free rlist before return,
5421         * (pic16_dump_int_registers): NEW, internal registers are a new set
5422         of general purpose registers reused by each function,
5423         * (checkAddReg): returns 1 if registers is added to set,
5424         * (pic16_groupRegistersInSection): when a registers is of type
5425         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5426         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5427         SRCASECMP macro is moved here from device.c
5428         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5429         PO_PCLATU, PO_PRODL, PO_PRODH,
5430         * (pic16_pCodeOpType, genMinus,
5431         changed compares to "a" register, with AOP_ACC,
5432         * (pic16_genPlus): fixed some bugs and indented properly,
5433         * (pic16_addSign): changed size to size+offset in the MOVWF
5434         instruction,
5435         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5436         multiply 8-bit operand by literal, result is 8-bit,
5437         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5438         multiply 2 8-bit operand, result is 8-bit,
5439         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5440         genUMult8X*_16,
5441         * src/pic16/gen.c: changed accUse to contain WREG only,
5442         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5443         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5444         true, do not use immediate addressing any more unless sym is a
5445         pointer in codespace,
5446         * (aopForRemat): do not use immediate addressing when symbol not in
5447         codespace and when symbol's address is requested,
5448         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5449         accUse size (= 1),
5450         * (aopGet): added case for AOP_ACC and don't return "accumulator
5451         bug" but WREG instead,
5452         * (popGetTempReg): pushes contents of temporary register in stack,
5453         * (popReleaseTempReg): pops contents of temporary register from
5454         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5455         * (pic16_popGet): separated case AOP_ACC to return register WREG
5456         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5457         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5458         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5459         the use of immediate pointers to certain cases only.
5460
5461         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5462         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5463         * (assignResultValue, genCall, genRet): modified to use the new
5464         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5465         genPcall is still broken,
5466         * (genFunction): added code to create 'A' type pBlocks when
5467         interrupt functions are generated, code not extensively tested yet,
5468         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5469         * (genEndFunction): modified so ISRs pop stored registers from stack,
5470         * (genMultOneByte): cleanup,
5471         * (AccRsh): added flag andmask, to and result with appropriate mask,
5472         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5473         * (genDataPointerGet): fixed and reenabled its use,
5474         * (genNearDataPointerGet): bugs fixed,
5475         * (genDataPointerSet): bugs fixed,
5476         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5477         pic16_DumpSymbol, pic16_DumpOp,
5478         * src/pic16/genutils.h: function prototypes for the above functions,
5479         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5480         pointers,
5481         * (pic16emitRegularMap): many many many improvements, but needs a
5482         major cleanup,
5483         * src/pic16/main.c: enable_stack in pic16_options is removed,
5484         * (_pic16_parseOptions): removed command line options -penable-stack,
5485         * (_process_pragma): emit stack symbol only when stack pragma is
5486         processed,
5487         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5488         redirected to FSR0L/FSR0H pair,
5489         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5490         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5491         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5492         for immediates,
5493         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5494         * (dumpPicOptype): NEW,
5495         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5496         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5497         with movff instruction,
5498         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5499         added pic16_int_regs, some packRegsFor* functions are commented out,
5500         because produce errors,
5501         * src/pic16/NOTES: minor modifications
5502
5503 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5504
5505         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5506         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5507         --pack-iram.
5508         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5509         * as/mcs51/lkaomf51.c: fixed bug #895763
5510
5511 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5512
5513         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5514
5515 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5516
5517         * doc/sdccman.lyx: added details about the HC08 storage classes and
5518         interrupts, fixed the register usage info for z80 & gbz80
5519
5520 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5521
5522         * doc/sdccman.lyx: added more pic16 port documentation
5523         * device/include/pic16/: added header pic18fregs.h
5524
5525 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         * doc/sdccman.lyx: added Vangelis' contribution
5528
5529 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5532         extend to the next CALL or PCALL, not just to the next CALL.
5533
5534 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5535
5536         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5537
5538 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5539
5540         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5541         bug #895752 and a better fix for bug #716790
5542
5543 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5544
5545         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5546
5547 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5548
5549         * doc/sdccman.lyx: minor changes, minor changed
5550
5551 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5552
5553         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5554         which can't handle SDCC_NEWONEBYTEOPS,
5555         (geniCodeMultiply): removed conversion from mult to shift for pic14
5556         and pic16
5557
5558 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5559
5560         * src/hc08/gen.h,
5561         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5562         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5563         thus fixing bug #895406
5564
5565 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5566
5567         * device/lib/_modsint.c,
5568         * device/lib/_modslong.c: sign follows divisor only
5569         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5570         signs or signedness can be ignored
5571         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5572         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5573         added optimization for IFX,
5574         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5575         arguments;
5576         reenabled optimization for IFX, which was removed on 2004-01-11
5577         * src/SDCCast.h: added return type IFX
5578         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5579         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5580         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5581         SDCC_OLDONEBYTEOPS selects the old behaviour
5582         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5583         changed again and commented promotion rule
5584         * src/SDCCval.c (valDiv): promotion no longer necessary
5585         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5586         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5587         rewritten
5588         * support/regression/tests/onebyte.c: added
5589
5590 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5591
5592         * gen.c (genInline): reverted to old code for assemnling inline
5593         code because of bug reported James Chadd
5594
5595 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * ralloc.h: missing declarations from previous patch,
5598         seems that patch for ralloc.h was never applied, fixed
5599
5600 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5601            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5602
5603         * pcode.c,
5604         * pcode.h,
5605         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5606         indirect addressing. Marked FSR0 as deprecated
5607         * gen.c (pointerCode): commented out, not needed now
5608         (pic16_popGet2p): new MOVFF helper function
5609         (genGenPointerGet),
5610         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5611         (shiftRLong): removed duplicate debugging info
5612
5613 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5614
5615         * src/ds390/gen.c (genNearPointerGet),
5616         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5617         optimization with bits, but not bitfields.
5618         * src/ds390/ralloc.c (packRegisters),
5619         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5620
5621 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5622
5623         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5624
5625 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5626
5627         * src/SDCCsymt.h,
5628         * src/SDCCicode.c (operandFromSymbol),
5629         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5630         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5631         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5632         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5633         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5634         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5635         bug #892038
5636         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5637         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5638         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5639         * src/SDCCsymt.c (newSymbol),
5640         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5641         enumerator_list),
5642         * src/SDCCval.h,
5643         * src/SDCCval.c (newiList): fixed bug #885705
5644
5645 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5646
5647         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5648         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5649
5650 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5651
5652         * device/include/c8051f120.h,
5653         * device/include/c8051f300.h,
5654         * device/include/c8051f310.h: added/updated header files for Silicon
5655         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5656         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5657         in new section Submitting patches
5658
5659 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5660
5661         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5662         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5663         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5664         genGenPointerSet),
5665         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5666         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5667         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5668         genGenPointerSet),
5669         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5670         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5671         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5672         genGenPointerSet),
5673         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5674         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5675         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5676         genGenPointerSet): fixed bug #892400
5677         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5678         to eliminate build warnings.
5679         * src/SDCCast.c (processParms),
5680         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5681         fixed bug 751859
5682         * support/valdiag/valdiag.py: added GCC to the list of defines active
5683         when compiling with gcc
5684
5685 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5686
5687         * support/Util/SDCCerr.h,
5688         * support/Util/SDCCerr.c,
5689         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5690         with an incomplete type (fixed bug #883734)
5691         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5692
5693 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5694
5695         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5696
5697 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5698
5699         * src/SDCCast.c (decorateType),
5700         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5701         function pointer implementation
5702         * support/regression/tests/funptrs.c: added tests to verify both forms
5703         of function pointers work correctly. Added tests to verify parameters
5704         are passed in the correct order.
5705
5706 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5707
5708         * device.c (regCompare): registers are sorted by ascending
5709         address and increasing size,
5710         * main.c (_pic16_finaliseOptions): removed the declaration
5711         of compiler macro MCU. Now a macro of the format pic18fxxxx
5712         will be defined from the command line
5713
5714 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5715             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5716
5717         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5718         PCOP_RLCF was overwritten!
5719         * gen.c (genSkip): commented out calls to pic16_emitcode,
5720         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5721         * (genlshTwo),
5722         * (genRRC): added debugging info,
5723         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5724         overwritten while shifting,
5725         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5726         overwritten while shifting,
5727         * (AccLsh),
5728         * (AccRsh),
5729         * (shiftLLeftOrResult),
5730         * (shiftRLeftOrResult),
5731         * (shiftRLong),
5732         * (shiftLLong): Implemented with pic16_emitpcode
5733         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5734         * (genLeftShift): Fixed bug, operand for shift by variable always
5735         was "and"ed with 0x0f,
5736         * (genLeftShiftLiteral),
5737         * (genrshTwo),
5738         * (genRightShiftLiteral): added debugging info,
5739         * (genrshFour): added comment,
5740         * (genRightShift): determined signedness from operand "left"
5741         instead of "result"
5742
5743 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5744
5745         * src/SDCCicode.c (geniCodeParms),
5746         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5747         function pointers, fixed function pointer bugs #861242 and #861896
5748
5749 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5750
5751         * device/include/c8051f000.h,
5752         * device/include/c8051f120.h,
5753         * device/include/c8051f300.h: added header files for Silicon
5754         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5755
5756 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5757
5758         * src/SDCCast.c (processParams): added new type flow and restructured
5759         (gatherAutoInit): added new type flow
5760         (addCast): cosmetic changes
5761         (getLeftResultType): added new type flow for array indices, patch
5762         provided by Stas, see FR #877103
5763         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5764         array index patch by Stas
5765         * src/SDCCast.h: added prototype getResultTypeFromType()
5766         * src/SDCCval.h,
5767         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5768         * src/pic/glue.c (pic14emitStaticSeg),
5769         * src/pic16/glue.c (pic16emitStaticSeg),
5770         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5771         for initialization of symbols
5772         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5773         * support/Util/SDCCerr.h:
5774         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5775         * .version: bumped version number to 2.3.8
5776         * device/include/Makefile.in (install),
5777         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5778         avoid warnings
5779
5780 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5781
5782         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5783         Slade Rich fixed an optimization bug
5784         * src/pic/pcodepeep.c,
5785         * src/pic/pcoderegs.c
5786         * doc/Makefile (install): added test for directory
5787
5788 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5789
5790         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5791         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5792         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5793         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5794         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5795         * as/mcs51/asexpr.c (term),
5796         * as/hc08/asexpr.c (term): fixed bug #887146
5797
5798 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5799
5800         * src/z80/gen.c (genMult): handle single byte result product
5801         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5802         DUMMY_READ_VOLATILE (fixed bug #886367)
5803
5804 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5805
5806         * support/regression/tests/libmullong.c: fixed logic, on little endian
5807         hosts we ended without a mullong_wrapper()
5808
5809 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5812         virus/worm forged address usage.
5813
5814 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5815
5816         Fixed promotion, it should be done on AST level:
5817         * src/SDCCast.c (addCast): added promotion to int
5818         (decorateType): updated call to upCast()
5819         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5820         usualUnaryConversions()
5821
5822 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5823
5824         * support/regression/tests/literalop.c (mulWrapper): Added a
5825         wrapper to remove integer overflow warnings.
5826
5827         * support/regression/tests/float_trans.c: Made work on host.
5828
5829         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5830         location of sz80.
5831
5832         * support/regression/generate-cases.py (main): Changed from inline
5833         to a main method.
5834
5835         * doc/Makefile (install): Changed to depth first to get rid of
5836         missing directory install warning.
5837
5838         * as/Makefile (install-doc): Made work on Mac.
5839
5840 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5841
5842         * src/SDCCast.c: added an additional type flow in decorateType() of
5843         opposite direction, see feature request #860006; it's enabled at runtime
5844         by setting the environment variable SDCC_NEWTYPEFLOW
5845         * src/SDCCast.h: changed prototype of decorateType()
5846         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5847         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5848         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5849         see feature request #877103
5850         * src/SDCCval.c: updated call of decorateType()
5851         (valBitwise): fixed bug #882876
5852         (valMinus): added promotion
5853         (valLogicAndOr): result is unsigned
5854         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5855         * src/SDCCsymt.c (computeType),
5856         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5857         must not cause an unsigned operation
5858         * src/pic/glue (pic14emitRegularMap),
5859         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5860
5861 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5862
5863         * src/pic/pcode.c (PCodeID): commented out left over debug code
5864
5865 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5866
5867         * support/valdiag/tests/overflow.c: added shift tests
5868         * src/pic/device.c,
5869         * src/pic/gen.c,
5870         * src/pic/gen.h,
5871         * src/pic/glue.c,
5872         * src/pic/main.c,
5873         * src/pic/pcode.c,
5874         * src/pic/pcode.h,
5875         * src/pic/pcodepeep.c,
5876         * src/pic/pcoderegs.c,
5877         * src/pic/ralloc.c,
5878         * src/pic/ralloc.h: applied patch from Slade Rich;
5879         added support for multiple code pages and multiple RAM banks on the
5880         PIC 14 port. The ASM files now no longer simply assume all the
5881         code / RAM are in the same page / bank. This means the linker can
5882         safely allocate code/RAM of separate ASM files to different pages/banks.
5883         * doc/sdccman.lyx: added Slade's tips
5884         * src/mcs51/peeph.def: fixed bug #880768
5885
5886 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5887
5888         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5889         * src/SDCCast.c (decorateType): fixed bug #880197
5890
5891 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5892
5893         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5894         getopt.h.
5895
5896         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5897         strtof is not part of C89 and isn't included with Mac OS X.
5898
5899 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5902         shiftL2Left2Result): fixed bug #879326
5903         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5904         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5905         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5906         address fetch for clr instruction
5907         * device/lib/hc08/_mulint.c: created optimized assembly version
5908         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5909
5910 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5913         proposed in FR #877103
5914
5915 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5916
5917         * src/SDCCval.c (cheapestVal): added missing checks
5918         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5919         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5920
5921 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5922
5923         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5924         equal operands
5925
5926 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5927
5928         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5929         loaded with the linker search paths (-L arguments) and the libraries
5930         to be linked with the current source (-l arguments). Changes
5931         currently will affect only the pic16 port.
5932         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5933         include path the port specific paths and port specific libraries,
5934         * gplink command now contains the $3 argument,
5935         * src/pic16/device.h,
5936         * src/pic16/device.c,: structure PIC_device is made public and
5937         renamed to PIC16_device, the same for variable Pics which is renamed
5938         to Pics16. Updated all references to them.
5939         * src/pic16/glue.c (pic16glue): corrected bug with code
5940         initialization which bypassed the variable initializations block.
5941
5942         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5943         COMPILE_FLAGS and added the --nostdinc option
5944
5945 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5946
5947         * device/include/mc68hc908jb8.h: Register defs for another member
5948         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5949
5950 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5951
5952         Documenting changes from previous commits.
5953         * configure.in (version 1.56),
5954         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5955         when generating output files to configure the pic16 library,
5956         but now I've commented it out, since gputils aren't installed in the
5957         SF compile farm, so library won't compile
5958
5959         * device/lib/Makefile.in (version 1.56): initially I've added in
5960         target 'all' the prerequestive 'model-pic16' so it compiled the
5961         pic16 library, but now I've commented it out for the same reasons
5962         above,
5963         * added targets 'model-pic16' and 'objects-pic16' to compile the
5964         library
5965         * added target 'port-specific-objects-pic16' to handle the
5966         generated libraries and copy them into the build/ directory
5967         * added target 'clean-intermediate-pic16' to clean intermediate
5968         files into pic16 directory
5969         * in target 'installdirs' added line to create directory pic16 in
5970         the installation path
5971
5972         * device/include/Makefile.in (version 1.11): in target 'install'
5973         added lines to copy all header files to installation path,
5974         * in target 'installdirs' added line create directory for pic16
5975         headers in the installation path
5976
5977 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5978
5979         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5980          a function call
5981
5982 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5983
5984         * configure,
5985         * device/lib/configure.in,
5986         * device/lib/configure: fixed for autoconf 2.57
5987
5988 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5989
5990         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5991         option so that it actually works. Made it specific to the z80, since
5992         the gbz80 doesn't have these kinds of I/O ports.
5993
5994 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * device/include/z180.h,
5997         * device/lib/_memcpy.c,
5998         * device/lib/_memmove.c,
5999         * device/lib/_mulint.c,
6000         * device/lib/ser_ir.c,
6001         * device/lib/ser_ir_cts_rts.c,
6002         * device/lib/_strcmp.c,
6003         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6004         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6005         portmode; added deprecation warning for bank= and protmode= forms.
6006         Also, guard against buffer overflow.
6007         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6008
6009 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6012         changed interrupt vector table generation to only emit declared vectors.
6013         * device/include/Makefile.in: added missing backslash
6014         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6015
6016 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6017
6018         Mainly changes to support compilation of the device libraries
6019         * src/pic16/device.c: stack is allocated via symbol and not
6020         via literal number. The symbol is placed in the corresponding
6021         position of the data ram
6022         * (pic16_dump_section): relocatable and absolute uninitialized
6023         data are now emitted in sorted order to reduce section naming,
6024         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6025         weren't marked as being in the access bank,
6026
6027 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6028
6029         Added portion of GNU PIC Library under the directory
6030         device/include/pic16 and device/lib/pic16. These files
6031         contain the declarations of SFRs for the PIC18Fxx2 devices.
6032         The directory is initialized via configure from toplevel.
6033
6034 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6035
6036         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6037         the spilllocations to be compared correctly
6038
6039 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6040
6041         * src/SDCCast.c (decorateType): fixed bug introduced today
6042
6043 2004-01-12  Borut Razem <borut.razem AT siol.net>
6044
6045         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6046         doc/sdccman.lyx: upper case pragmas are deprecated
6047
6048 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6049
6050         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6051         in simpler and even better code
6052
6053 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6054
6055         * src/SDCCicode.c (operandOperation): fixed bug #874819
6056         * src/SDCCast.c (decorateType): fixed
6057         char foo (unsigned long ul) { return ul > 0; }
6058
6059 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6060
6061         * doc/sdccman.lyx: Moved and added some sections, small changes
6062         all over. Telling LaTeX to be less strict with word spacing
6063         to better keep the right margin. Changed some notes about
6064         maintainance of the ports in section 3.2.1 - is it OK like this?
6065
6066 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6067
6068         SDCC source changes:
6069         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6070         convilong): modified to inform the pic16 port that builtin functions
6071         are external
6072
6073         PIC16 PORT specific changes:
6074         * src/pic16/device.c pic16_dump_equates() added,
6075         processor registers declared internally by the port are emitted in
6076         the translation as equates,
6077         * src/pic16/gen.c: inline code is passed unprocessed to the
6078         translation,
6079         * (pic16_popGetLit2): fnuction modified to take second operand as
6080         pCodeOp pointer and not as literal,
6081         * (popRegFromIdx): prefixed with pic16_,
6082         * (pic16_popCombine2): modified to receive already allocated pCode
6083         operands,
6084         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6085         * (genFunction): initializes local stack frame and pushes on stack
6086         all the registers used by this function,
6087         * (genEndFunction): restores all registers from stack and restores
6088         stack frame,
6089         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6090         improvements,
6091         * (pic16glue): changed the program startup sequence,
6092         * added new dbName code 'A' for functions placed in absolute section
6093         * src/pic16/main.c: added function attribute _naked,
6094         * added pragma 'code' to place a fnuction at an absolute address,
6095         * added command line arguments --debug-ralloc and --pcode-verbose,
6096         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6097         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6098         * (pic16_newpCodeOpLit2): modified to take the second operand as
6099         pCodeOp pointer,
6100         * (pic16_printpBlock): modified to emit each function in a separate
6101         section,
6102         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6103         UPPER for immediate operands,
6104         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6105         instruction,
6106         * src/pic16/peeph.def: all peepholes with movff are commented out,
6107         because there is a problem in the pcode peep optimizer,
6108         * src/pic16/ralloc.c: the register allocator can now reuse local
6109         function symbols for another function. This saves register usage.
6110         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6111
6112         Added file src/pic16/NOTES with information about program writing on
6113         the current port version.
6114
6115 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6116
6117         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6118         and peephole 252 (array access)
6119
6120 2004-01-09  Borut Razem <borut.razem AT siol.net>
6121
6122         * src/SDCCmain.c : fixed #872250: -l command line defined library
6123           files are scanned before standard library files
6124
6125 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6126
6127         * src/SDCCast.c (decorateType): fixed bug #874046
6128
6129 2004-01-09  Borut Razem <borut.razem AT siol.net>
6130
6131         * support/scripts/sdcc.nsi: remove previous installation
6132
6133 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6134
6135         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6136         bytes for last interrupt vector (mcs51)
6137         * sdcc.spec: fixed typo
6138
6139 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6142         gen51Code): more efficient parameter receive for --model-large
6143         ("bug" #845294)
6144
6145 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         * src/ds390/main.c,
6148         * src/z80/main.c: added missed needLinkerScript flags (more than
6149         one port structure defined in these file)
6150         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6151         bug #795325
6152
6153 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6154
6155         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6156         * src/port.h: added flag needLinkerScript in port->linker
6157         structure to inform whether to create a .lnk file or not,
6158         * src/avr/main.c,
6159         * src/ds390/main.c,
6160         * src/hc08/main.c,
6161         * src/mcs51/main.c,
6162         * src/pic/main.c,
6163         * src/pic16/main.c,
6164         * src/xa51/main.c,
6165         * src/z80/main.c: changed appropriately to configure
6166         needLinkerScript flag
6167         * src/pic/gen.c,
6168         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6169         * src/pic/glue.c: added variable udata_section_name to
6170         override default uninitialized data segment definition for
6171         devices only with SHAREBANK memory (reported from Erik Epetrich)
6172         * (pic14emitOverlay): modified to emit a commented overlay segment
6173         directive when no overlay data exist
6174         * (picglue): modified to emit uninitialized data segment
6175         according to udata_section_name
6176         * src/pic/main.c (_pic14_parseOptions): added command line
6177         options --udata-section-name=[name] to override default
6178         udata definition name
6179         * modified _linkCmd and _asmCmd to include compiler passed
6180         arguments via -W option
6181         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6182         object file from '.rel' to '.o' in port->linker structure,
6183         changed size of fptr from 2 to 3 in port structure
6184
6185 2004-01-07  Borut Razem <borut.razem AT siol.net>
6186
6187         * support/scripts/sdcc.nsi: update PATH
6188         * support/scripts/sdcc.ico: craeted
6189
6190 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6191
6192         * device/include/Makefile.in: fix install
6193         * doc/Makefile: fix install
6194
6195 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6196
6197         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6198         in bug #860505
6199         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6200         how the function variable allocation summary is displayed; also
6201         include information about variables allocated to the overlay
6202         segment
6203
6204 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6205
6206         * as/mcs51/lkmain.c: Help about -Y option
6207         * as/mcs51/lkarea.c: Fixed gcc warnings
6208
6209 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6210
6211         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6212         fixed warning
6213         * support/valdiag/tests/overflow.c: added
6214         * src/SDCCast.c (decorateType),
6215         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6216         LEFT_OP (left shift)
6217
6218 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6219
6220         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6221         (default behaviour).
6222
6223 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         A python script to validate compiler diagnostic messages. It can be
6226         used to verify that sdcc complains about bad c source code and
6227         gives a good location of the error.
6228         * support/valdiag/Makefile,
6229         * support/valdiag/valdiag.py,
6230         * support/valdiag/tests/*
6231
6232 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6233
6234         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6235         * src/SDCCsymt.c (newEnumType),
6236         * src/SDCCsymt.h
6237         * support/Util/SDCCerr.c,
6238         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6239         enum related bugs.
6240         * support/regression/tests/enum.c: added test for enum values that
6241         require at least 2 bytes of storage.
6242
6243 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6244
6245         * src/common.h: added ifndef/define/endif macros
6246         around the header file.
6247         Bug reported from Jesus Calvino-Fraga
6248
6249 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6250
6251         * sdcc.spec: updated
6252         * device/include/Makefile.in: don't install CVS directories
6253         * device/lib/Makefile.in: added removal of CVS directories after install
6254         * doc/Makefile: fixed install, added local_icons
6255         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6256         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6257         * src/ds390/gen.c (genRightShift): fixed bug #870788
6258         * src/SDCCast.c (decorateType): fixed bug #870781
6259
6260 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6261
6262         PIC16 port related changes:
6263         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6264         added variable stackPos,
6265
6266         * gen.c: genCall, assignResultValue: added support for
6267         pushing/retrieving function parameters to/from stack,
6268         genFunction,genEndFunction: setup stack frame for the
6269         generated function,
6270         genAddrOf: will be changed according to bug 863624
6271
6272         * added files genutils.c and genutils.h which contain gen*
6273         debugged and optimised functions extracted from gen.c
6274
6275         * glue.c: added variable 'externs' which holds extern symbols,
6276         pic16emitRegularMap: is modified to properly handle relocatable
6277          symbols under the new scheme,
6278         pic16createInterruptVect: is modified
6279         pic16printPublics: is modified to emit 'global' assembler directives,
6280         added pic16_printExterns to print extern symbols,
6281         pic16glue: initializes stack/frame pointer in the beginning of
6282         the assembly output. Temporary hack, will be corrected later,
6283         because gplink yet does not support stack and SDCC does not
6284         yet support a type of crt0.o object to create the final binary.
6285
6286         * Removed many lines that contain 8051 legacy code.
6287         * The code is finally placed under a 'code' directive.
6288         * Added port specific options.
6289
6290         * _process_pragma: simplified since now we do not need *special*
6291         include file to define SFR registers. But a separate header
6292         will be needed. This will be developed later.
6293         * _pic16_parseOptions: added, parses port specific options:
6294         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6295         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6296         --preplace-udata-with=
6297
6298         * _pic16_setDefaultOptions: modified to initialize section names,
6299         but hack is temporarly out of order since it needs improvement.
6300         * _pic16_genAssemblerPreamble: configuration words are emitted by
6301         their address instead of their name. This part is incomplete and
6302         supports only the 18Fxx2 devices. Other devices will emit an error
6303         during assembly since they do not contain the same set of config
6304         registers
6305         * _pic16_genIVT: is modified,
6306
6307         * pcode.c: added definitions for some hardware registers that are needed
6308         for stack support
6309         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6310         All PCI entries are updated. Now LFSR is supported.
6311         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6312         * added pic16_newpCodeOpLit2 to support instructions with
6313         two literal arguments
6314         * pic16_pCode2str: corrected code that emits assembler instructions
6315         with two literal operands and those that have an access bit modifier
6316         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6317         this fixes a bug which caused some labels to be lost, when an
6318         assembler directive was added, i.e. banksel,
6319         * pic16_FixRegisterBanking: improved logic that causes the insertion
6320         of bank switching,
6321         * InlineFunction: functions that are called once, are not any more
6322         inlined. This can be a port option in the future,
6323
6324         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6325
6326         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6327         hold the corresponding uninitialized symbols,
6328         * pic16_allocProcessorRegister: registers have explicit marked the
6329         accessBank field,
6330         * pic16_allocInternalRegister: registers are explicit marked as
6331         not used,
6332         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6333         processing list, so bit registers were lost,
6334         *
6335
6336         * ralloc.h: added field 'accessBank' and original symbol operand
6337         in register definition,
6338         * removed the field isMapped from register definition,
6339
6340         ** Several functions have been removed from various sources:
6341         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6342         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6343         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6344         pic16_assignRelocatableRegisters
6345
6346         ** others have been introduced:
6347         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6348         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6349
6350 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6351
6352         * support/scripts/inc2h.pl: changed definition of BIT_AT
6353         to emit 'sbit at' instead of 'bit at'. This was a request.
6354
6355         PIC16 port related preliminary changes:
6356         * gen.c: prefixed function popRegFromString with
6357         pic16_ and all references to it corrected
6358         * pcode.c: all pic16_pc_* hardware registers prefixed
6359         with underscore (_),
6360         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6361         * ralloc.c: newReg(): when register is REG_SFR then
6362         set address to rIdx,
6363         pic16_allocProcessorRegister(): marks register wasUsed=0
6364         pic16_writeUsedRegs(): added a call to assign processor
6365         registers via pic16_assignFixedRegisters
6366
6367 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6368
6369         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6370         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6371         variables in unused register banks.  Also the SSEG is placed
6372         wherever there is enough space for it, and IDATA can be anywhere
6373         in internal RAM.  For now compile using -Wl-Y[stack_size].
6374         The mem file is different for this option as well, since it
6375         makes no sense of talking about DSEG lenght.
6376
6377 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6378
6379         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6380         in certain cases, e.g. when ROM assignment, patch provided
6381         from Albert den Haan.
6382
6383 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6384
6385         Many signedness and type propagation fixes:
6386         * src/SDCCicode.c: made geniCodeCast() static
6387         replaced SPEC_ by IS_ (cosmetic)
6388         (operandOperation): fixed div and mod operation
6389         (usualBinaryConversions): added support for promotion of char
6390         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6391         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6392         (geniCodeAdd): an array index will stay unsigned, even if promoted
6393         from char to int
6394         (geniCodeArray): ditto
6395         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6396         * src/SDCCsymt.c (computeType): added more support for char;
6397         promotion of char is selectable by promoteCharToInt, fixed signedness
6398         for all cases
6399         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6400         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6401         * src/SDCCval (val*): replaced signedness calculation by
6402         computeType()
6403         rearranged if-branches (cosmetic)
6404         (valShift): added warning W_SHIFT_CHANGED
6405         (valCompare): fixed problem with different types
6406         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6407         * support/regression/tests/literalop.c: added many cases
6408         * support/regression/tests/ast_constant_folding.c: changed finally to
6409         'unsigned int'
6410         * .version: new year, new version: 2.3.7
6411         * src/SDCCmain.c (main): applied patch #866468
6412         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6413         provided by Scott Bronson
6414         * doc/sdccman.lyx: updated documentation for sdcdb
6415         updated and added chapter tips
6416
6417 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * src/SDCCsymt.h: missing from yesterday's commits
6420
6421 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6422
6423         * src/SDCC.y (struct_or_union_specifier),
6424         * support/Util/SDCCerr.c,
6425         * support/Util/SDCCerr.h: verify that struct & union tags are used
6426         as declared.
6427
6428 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         * src/SDCCglobl.h: missing from yesterday's commits
6431
6432 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6433
6434         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6435         sft_attributes, struct_declaration, parameter_declaration,
6436         type_name, start_block, declaration_list),
6437         * src/SDCC.lex (check_type): support redefinition of typedef names
6438
6439 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6440
6441         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6442         aligned xdata arrays. Erik helped me with the if clause.
6443
6444 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6445
6446         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6447         warning
6448
6449 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6450
6451         * src/SDCCast.h,
6452         * src/SDCCast.c (newAst_),
6453         * src/SDCCicode.h,
6454         * src/SDCCicode.c (ast2iCode, newiCode),
6455         * src/SDCCglobl.h,
6456         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6457         expr, statement, expression_statement, selection_statement,
6458         iteration_statement, expr_opt, jump_statement): foundation for tracking
6459         sequence points
6460         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6461         point code too)
6462
6463 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         * support/Util/SDCCerr.c,
6466         * src/SDCCast.h,
6467         * src/SDCCast.c (createCase, createDefault, decorateType),
6468         * src/SDCClabel.c (labelUnreach),
6469         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6470         to error messages.
6471         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6472         (with thanks to Stas Sergeev)
6473         * device/include/time.h,
6474         * device/lib/time.c (CheckTime): suppress unreachable code warning
6475
6476 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6477
6478         * src/SDCCast.c (createIvalCharPtr),
6479         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6480         bug #753752)
6481         * support/regression/tests/nullstring.c: tests for these two bugs
6482
6483 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6484
6485         * support/Util/SDCCerr.h,
6486         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6487         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6488         about storage class and 'at' used inside struct or union
6489         * src/SDCCBBlock.c (iCodeFromeBBlock),
6490         * src/SDCCcse.c (ifxOptimize),
6491         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6492         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6493         printIval, emitStaticSeg, emitOverlay),
6494         * src/SDCClabel.c (deleteIfx),
6495         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6496         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6497         gatherAutoInit, processParms),
6498         * support/Util/SDCCerr.h,
6499         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6500         reporting for post-parse errors.
6501
6502 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6503
6504         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6505         implicit casts via union; they don't work on big endian systems
6506         (possible fix for bug #861138)
6507
6508 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6509
6510         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6511         * src/mcs51/main.c: fixed the fix for bug #737001
6512
6513 2003-12-15  Borut Razem <borut.razem AT siol.net>
6514
6515         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6516
6517 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * support/makebin/makebin.c: put output in binary mode
6520
6521 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6522
6523         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6524         xdata and data memory on startup. Set the environment variable
6525         SDCC_NOGENRAMCLEAR to disable this.
6526         * src/mcs51/peephole.def,
6527         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6528         (allows non-interrupt and interrupt code to safely compete for a resource
6529         without the non-interrupt code having to disable interrupts)
6530
6531 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6532
6533         * src/SDCCicode.c (geniCodeAdd),
6534         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6535         with valFromType if type might be a pointer and host is big endian).
6536         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6537         types, not just integer types.
6538         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6539         multiply defined with mismatching "at" address.
6540
6541 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6542
6543         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6544         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6545         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6546         with embedded nulls (fixed bug #753752)
6547
6548 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6549
6550         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6551         Apparently this did not see much testing (endless loop)
6552
6553 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6554
6555         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6556
6557 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6558
6559         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6560         gracefully handle NULL memmap pointers
6561
6562 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6563
6564         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6565         instead of deleting the iCode when an operand is volatile
6566         * src/z80/gen.c (genDummyRead),
6567         * src/mcs51/gen.c (genDummyRead),
6568         * src/ds390/gen.c (genDummyRead),
6569         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6570         not just IC_RIGHT
6571         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6572         * src/SDCC.y: fixed bug #850420
6573
6574 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6575
6576         Applied z80 i/o port patch from Peter Townson and fixed some operators
6577         to better handle operands in A register.
6578         * device/include/z180.h
6579         * src/SDCC.y
6580         * src/SDCCglue.c
6581         * src/z80/gen.c
6582         * src/z80/gen.h
6583         * src/z80/main.c
6584         * src/z80/peeph-z80.def
6585         * src/z80/peeph.def
6586         * src/z80/z80.h
6587
6588 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6589
6590         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6591
6592 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6593
6594         * device/lib/hc08/_mullong.c: Removed extra #endif
6595
6596 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6597
6598         * sim/ucsim/hc08.src/inst.cc,
6599         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6600         carries from x to h
6601         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6602         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6603         * device/include/stdarg.h: fixed varargs for hc08
6604         * device/lib/Makefile.in,
6605         * device/lib/hc08/Makefile,
6606         * device/lib/hc08/_mulint.c,
6607         * device/lib/hc08/_mullong.c: fixed some endian problems
6608
6609 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6610
6611         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6612         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6613         * device/lib/_gptrget.c,
6614         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6615
6616 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6617
6618         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6619         * src/SDCCast.c (astErrors): fixed bug #846007
6620         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6621
6622 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6623
6624         * src/SDCCast.c (decorateType): disabled a transformation I added in
6625         revision 1.188 (access to fields of a structure at an absolute address);
6626         it breaks with bitfields, extern declarations, and gcse analysis.
6627         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6628         could be assigned through a pointer, so don't complain.
6629         * src/SDCCast.c (astErrors),
6630         * src/SDCCast.h,
6631         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6632
6633 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6634
6635         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6636         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6637         output of __config directives, since gpasm now supports them
6638         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6639         pre-processor macro, i.e. -DMCU=p18f452
6640         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6641         and modified to handle 'cast' icode similarly to '=' icode
6642         * src/pic16/device.h (typedef struct PIC_device): added field
6643         'extMIface' to indicate that chip has external memory interface
6644         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6645         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6646         18F8720
6647
6648 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6649
6650         * src/SDCC.y (pointer): fixed bug #846006
6651         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6652         * src/SDCCast.c (decorateType): fixed bug #846009
6653         * src/ds390/peeph.def,
6654         * src/ds390/gen.c (genAnd, genOr),
6655         * src/mcs51/peeph.def,
6656         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6657
6658 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6659
6660         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6661         * src/SDCCdflow.c
6662         * src/SDCCcse.c
6663         * src/SDCCcse.h
6664         * src/SDCCBBlock.h
6665         * src/SDCCBBlock.c
6666
6667 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6668
6669         fixed bug #845089
6670         * src/SDCCbitv.h,
6671         * src/SDCCbitv.c: added function to free a bitvector
6672         * src/SDCClrange.h,
6673         * src/SDCClrange.c: added function to recompute the liveranges
6674         * src/avr/ralloc.c,
6675         * src/ds390/ralloc.c,
6676         * src/hc08/ralloc.c,
6677         * src/mcs51/ralloc.c,
6678         * src/pic/ralloc.c,
6679         * src/pic16/ralloc.c,
6680         * src/xa51/ralloc.c,
6681         * src/z80/ralloc.c: recompute the liveranges after register packing
6682
6683 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6684
6685         * src/SDCCloop.c (newInduction): fixed bug #845630
6686
6687 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6688
6689         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6690         inadvertantly left behind from my 2003-11-12 change
6691
6692 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         Updated headers I neglected to commit yesterday.
6695         * src/SDCClrange.h,
6696         * src/SDCCicode.h
6697
6698 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6701         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6702         * src/SDCCopt.c (eBBlockFromiCode),
6703         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6704         the creation of the key hash table from the sequencing so it can be used
6705         earlier (for some GCSE bug fixes still pending)
6706
6707 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6708
6709         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6710         * support/regression/tests/addsub.c: testing genPlus shortcut
6711
6712 2003-11-15  Borut Razem <borut.razem AT siol.net>
6713
6714         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6715
6716 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6717
6718         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6719         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6720         ordering is immaterial.
6721         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6722
6723 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6724
6725         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6726         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6727         (SIGSEV) of bug #840381
6728         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6729         unlink new file before rename if new and old filenames are the same)
6730
6731 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6732
6733         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6734         uninitialized variables) for the mcs51. Set environment variable
6735         SDCC_GENRAMCLEAR to test.
6736         xdata initialization slightly shorter
6737
6738 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/SDCCsymt.h,
6741         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6742         #838241 & 780691 (basicly the same bug)
6743         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6744         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6745
6746 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6747
6748         * src/SDCCmain.c (linkEdit): "fix" #834252
6749
6750 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6753         * src/SDCCast.h,
6754         * src/SDCC.y: fixed bug #819403
6755
6756 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6757
6758         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6759         the reentrant attribute.
6760         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6761         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6762         simulation
6763         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6764         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6765         erroneously reduced to a literal.
6766         * src/hc08/ralloc.c (packRegisters, rematStr),
6767         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6768         some cases
6769
6770 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6771
6772         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6773         * doc/sdccman.lyx: changed from 'article' to 'book'
6774         * doc/Makefile: readded test_suite_spec and cdbfileformat
6775
6776 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6777
6778         * device/include/stdlib.h: include malloc.h to comply with ANSI
6779         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6780
6781 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6782
6783         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6784         * doc/clean.mk: also remove *.out files
6785         * doc/sdccman.lyx: some additions, larger top/bottom margins
6786
6787 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6788
6789         * src/SDCC.y: fixed bug #837365
6790         * support/regression/tests/bitopcse.c
6791         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6792         a symbol (might be valop instead)
6793         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6794         * device/lib/clean.mk: added hc08 to the cleaning list
6795
6796 2003-11-04  Borut Razem <borut.razem AT siol.net>
6797
6798         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6799           made 2003-11-04
6800         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6801           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6802           malloc is declared in standard stdlib.h
6803
6804 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6805
6806         * device/lib/hc08/Makefile: need to clean .rel not .o files
6807         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6808
6809 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6810
6811         * src/port.h,
6812         * src/hc08/main.c,
6813         * src/mcs51/main.c,
6814         * src/ds390/main.c,
6815         * src/z80/main.c,
6816         * src/avr/main.c,
6817         * src/pic/main.c,
6818         * src/pic16/main.c,
6819         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6820         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6821         tests (which uses the port's oclsExpense function)
6822         * src/SDCC.y,
6823         * src/SDCCast.c,
6824         * src/SDCCicode.c,
6825         * src/hc08/gen.c,
6826         * src/ds390/gen.c,
6827         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6828
6829 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/SDCCcse.c (ifxOptimize),
6832         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6833         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6834         deleting the IFX iCode.
6835         * src/hc08/ralloc.c: reduced unneeded slocs
6836         * src/hc08/gen.c: fixed bug in asmopToBoolean
6837
6838 2003-11-04  Borut Razem <borut.razem AT siol.net>
6839
6840         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6841           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6842           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6843           transferred to configure
6844
6845 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6846
6847         Use headers defined in the C[++] standards:
6848         * sim/ucsim/gui.src/serio.src/fileio.cc
6849         * sim/ucsim/gui.src/serio.src/frontend.cc
6850         * sim/ucsim/gui.src/serio.src/main.cc
6851         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6852         * support/Util/NewAlloc.c
6853         * as/hc08/lklibr.c
6854         * as/mcs51/lklibr.c
6855         * as/z80/aslist.c
6856         * as/z80/assym.c
6857
6858 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6859
6860         * Added MSVC projects for hc08 assembler and linker:
6861         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6862         /as/hc08/link_hc08.dsp
6863
6864 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6865
6866         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6867
6868 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6869
6870         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6871
6872 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6873
6874         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6875
6876 2003-10-31  Borut Razem <borut.razem AT siol.net>
6877
6878         * support/cpp2/cpplib.h,
6879           support/cpp2/cpplib.c,
6880           support/cpp2/cpplex.c,
6881           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6882           to switch _asm block preprocessing on / off. Default is
6883           #pragma preproc_asm +
6884
6885 2003-10-31  Borut Razem <borut.razem AT siol.net>
6886
6887         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6888           when outputting comment blocks (when executed with -C option) and
6889           _asm (SDCPP specific) blocks
6890
6891 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6892
6893         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6894
6895 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6896
6897         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6898
6899 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6900
6901         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6902         * src/SDCCast.c (decorateType): fixed bug #832664
6903
6904 2003-10-31  Borut Razem <borut.razem AT siol.net>
6905
6906         * support\cpp2\cpplex.c: fixed for SDCPP:
6907           comments(when executed with -C option) and _asm blocks
6908           were included even if they where in skipped #if block.
6909           Applied solution from GCC cpp 3.3.2
6910
6911 2003-10-31  Borut Razem <borut.razem AT siol.net>
6912
6913         * src/SDCC.lex: sdcc now understands both formats:
6914           '# <line_number> <file_name>' and
6915           '#line <line_number> <file_name>'
6916         * support/cpp2/cppmain.c: sdcpp now generates the standard
6917           '# <line_number> <file_name>' instead of former
6918           '#line <line_number> <file_name>'
6919
6920 2003-10-30  Borut Razem <borut.razem AT siol.net>
6921
6922         * support/cpp2/cpphash.h,
6923         * support/cpp2/cpplib.h
6924         * support/cpp2/cpplex.c,
6925         * support/cpp2/cppmain.c,
6926         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6927
6928 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6929
6930         Fixed a number of problems revealed by bug #827883.
6931         * src/SDCCloop.c (loopInvariants): Spill location of the
6932         result operand should be recomputed if extracted from
6933         a loop. Also, don't extract assignments of an iTemp
6934         from a literal.
6935         * src/SDCCast.c (isConformingBody): loop reversal should
6936         not occur if the control variable is involved with a
6937         relational operator.
6938
6939 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6940
6941         * .version: bumped to 2.3.6 to reflect the big improvements
6942         made by Erik and Klaus. Thanks!
6943
6944 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6945
6946         Replaced the livrange code.
6947         * src/SDCClrange.c: added new LR code
6948         * src/SDCCloop.c,
6949         * src/SDCCBBlock.h: removed remainig parts from old LR code
6950         * src/ds390/ralloc.c,
6951         * src/ds390/gen.c: minor fixes to make it work with new code
6952
6953 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * as/hc08/asm.h,
6956         * as/hc08/lkrloc.c,
6957         * src/hc08/gen.c,
6958         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6959         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6960         (tweaked fix for bug #818696)
6961
6962 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6965
6966 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6967
6968         * src/SDCCmain.c,
6969         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6970         * src/mcs51/gen.c (gencjneshort),
6971         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6972         more efficient (per Scott Bronson's suggestion)
6973
6974 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6975
6976         Extended the semantics of the critical keyword to include
6977         individual statements. See RFE #827755 and #799831
6978         * src/SDCC.y
6979         * src/SDCCicode.c
6980         * src/SDCCopt.c
6981         * src/SDCCast.c
6982         * support/Util/SDCCerr.c
6983         * support/Util/SDCCerr.h
6984         * src/mcs51/gen.c
6985         * src/ds390/gen.c
6986         * src/hc08/gen.c
6987
6988 2003-10-19  Borut Razem <borut.razem AT siol.net>
6989
6990         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6991
6992 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6995         Fixed bug #818696
6996         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6997         and predecrement operand is displayed
6998
6999 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7000
7001         * src/SDCCval.c (valMinus): fixed bug #826041
7002
7003 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         Some hc08 related updates that I missed earlier
7006         * sim/ucsim/stypes.h
7007         * support/regression/ports/hc08/spec.mk
7008
7009 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         New target "hc08" for the Motorola 68hc08 family of micros
7012
7013         * configure
7014         * configure.in
7015         * Makefile
7016         * src/hc08/*
7017         * src/SDCCmain.c
7018         * src/port.h
7019         * sim/ucsim/hc08.src/*
7020         * sim/ucsim/configure.in
7021         * src/ucsim/configure
7022         * sim/ucsim/packages_in.mk
7023         * as/hc08/*
7024         * as/Makefile
7025         * device/include/mc68hc908qy.h
7026         * device/lib/hc08/*
7027         * device/lib/Makefile.in
7028         * support/regression/ports/hc08/*
7029         * support/regression/Makefile
7030
7031 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7032
7033         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7034         regression test
7035         * src/ds390/gen.c (genCast): fixed bug #821957
7036
7037 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7038
7039         * device/lib/logf.c: "fixed" overlay bug
7040         * support/regression/ports/host/spec.mk: added m library
7041         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7042         * support/regression/tests/float_trans: added (for Eric)
7043
7044 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * src/mcs51/gen.c (genCpl): fixed bug
7047         http://sf.net/mailarchive/message.php?msg_id=6263915
7048
7049 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7050
7051         * src/SDCCast.c (decorateType): added extended constant folding
7052         * src/SDCCsymt.c (computeType): cleanup
7053         * src/SDCCval.c (valShift): minor optimization
7054         * support/regression/tests/ast_constant_folding.c: added
7055
7056 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7057
7058         * src/SDCCmain.c: removed some unintended changes
7059
7060 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7061
7062         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7063         * src/z80/gen.c: fixed part of bug #817589
7064         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7065
7066 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7067
7068         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7069         * src/SDCCcflow.c
7070         * src/SDCCcse.c
7071         * src/SDCCdflow.c
7072         * src/SDCClabel.c
7073         * src/SDCClrange.c
7074         * src/SDCCmem.c
7075         * src/SDCCopt.c
7076         * src/SDCCpeeph.c
7077         * src/SDCCset.c
7078         * src/avr/ralloc.c
7079         * src/ds390/ralloc.c
7080         * src/izt/ralloc.c
7081         * src/mcs51/ralloc.c
7082         * src/pic/ralloc.c
7083         * src/pic16/ralloc.c
7084         * src/xa51/ralloc.c
7085         * src/z80/ralloc.c
7086         * src/z80/gen.c: removed unused label "release:"
7087
7088 2003-10-06  Borut Razem <borut.razem AT siol.net>
7089
7090         * src/SDCC.lex: removed definition of unused variables
7091           save_optimize and save_options
7092
7093 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7094
7095         * clean.mk: removed '=' in "-maxdepth=1"
7096         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7097         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7098
7099 2003-10-06  Borut Razem <borut.razem AT siol.net>
7100
7101         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7102           my_unput() replaced by unput()
7103
7104 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7105
7106         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7107         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7108         type-punned pointer will break strict-aliasing rules"
7109         Old LR behaviour is again default; Klaus' LR can be choosen by
7110         defining the environment variable LRKLAUS
7111         * src/SDCCBBlock.h
7112         * src/SDCCloop.c
7113         * src/SDCClrange.c
7114         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7115         * clean.mk: fixed removal of files in bin/CVS/
7116         * device/lib/clean.mk: fixed removal of directories small and large
7117         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7118         * src/SDCCicode.c,
7119         * src/SDCCval.c: removed superflous test for pedantic
7120
7121 2003-10-05  Borut Razem <borut.razem AT siol.net>
7122
7123         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7124           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7125           message "unmatched #pragma SAVE and #pragma RESTORE"
7126
7127 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7128
7129         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7130           assembly, critical functions, atomic, nojtbound)
7131
7132 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7133
7134         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7135         * src/SDCCBBlock.h
7136         * src/SDCCloop.c
7137         * src/SDCCloop.h
7138         * src/SDCClrange.c
7139
7140 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * src/z80/gen.h,
7143         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7144         * src/mcs51/gen.h
7145         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7146         * src/ds390/gen.h
7147         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7148         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7149         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7150
7151 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7152
7153         * src/z80/gen.c (genRet): fixed bug #524753
7154         * src/z80/gen.c (genCast): fixed internal error on cast from
7155         pointer to long
7156         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7157         fix for bug #477835 to the z80
7158         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7159         for tracking iCodes in the peephole optimizer for z80
7160
7161 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7162
7163         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7164         the other part of bug #814548
7165         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7166
7167 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7168
7169         * src/SDCCcse.c: fixed part of bug #814548
7170
7171 2003-09-28  Borut Razem <borut.razem AT siol.net>
7172
7173         * src/asm.c: rewrite of printILine() to use temporary file instead
7174           a pipe
7175         * src/xa51/main.c: commented out declaration of int rewinds
7176
7177 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7178
7179         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7180
7181 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7182
7183         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7184         * src/asm.c (printILine): Fixed bug #811015
7185
7186 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7187
7188         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7189         freeing.
7190
7191 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7192
7193         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7194         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7195         to correctly handle general case of AOP_PAIRPTR
7196         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7197
7198 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7199
7200         * src/mcs51/ralloc.c (fillGaps),
7201         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7202         register positioning bug)
7203
7204 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7207
7208 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7211         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7212         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7213         (ralloc doesn't intentionally do this now, but perhaps later)
7214         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7215         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7216         register positioning bugs (Fixed bug #762602 and #795325)
7217         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7218         (Fixed bug #808779)
7219         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7220         lines that --i-code-in-asm generates
7221
7222 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7223
7224         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7225         trying to fclose a FILE* that was already closed.
7226
7227 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7228
7229         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7230         of const struct should be treated as if const themselves)
7231
7232 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7233
7234         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7235
7236 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7237
7238         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7239         Unix (/n) and DOS (/r/n) line terminations.
7240
7241 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7244         bug #613775
7245
7246 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7247
7248         * src/mcs51/gen.c (genFunction, genEndFunction),
7249         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7250         and restore of EA so that stack offsets to parameters are
7251         correct when using both critical and reentrant/stack-auto.
7252         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7253         size (can be triggered in error if sloc is shared between
7254         different sized objects)
7255         * device/include/float.h: fixed macros to explicitly use
7256         unsigned long where needed
7257
7258 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7259
7260         Feature req. 799831: added code to allow nesting of critical functions
7261         * src/mcs51/gen.c (genFunction, genEndFunction)
7262         * src/ds390/gen.c (genFunction, genEndFunction)
7263
7264 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7265
7266         * src/SDCCsymt.c (sclsFromPtr),
7267         * src/SDCCsymt.h,
7268         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7269         support for standard C idiom of memory mapped variables; for
7270         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7271         to xdata int at 0x1234 tempvar = 1.
7272         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7273         provided by Akiya ISHIDA
7274
7275 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7276
7277         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7278         * src/SDCCval.c (constVal): added reduction from int to char
7279         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7280         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7281         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7282         to ignore the sign
7283         * support/regression/tests/shifts.c: fixed
7284
7285 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7286
7287         * src/z80/gen.c (genXor): Fixed bug #805445
7288
7289 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7290
7291         Fixed bug #621531 (const & volatile confusion in the type chain).
7292         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7293         refer to the const or volatile state of the pointer itself.
7294
7295         * src/SDCCast.c
7296         * src/SDCCglue.c
7297         * src/SDCCicode.c
7298         * src/SDCCsymt.c
7299         * src/SDCCval.c
7300         * src/SDCC.y
7301         * src/SDCCsymt.h
7302         * src/pic/gen.c
7303         * src/pic/ralloc.c
7304         * src/pic16/gen.c
7305         * src/pic16/ralloc.c
7306         * support/regression/tests/const.c
7307
7308 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7309
7310         When checking for duplicated modules, use absolute paths
7311         instead of relative paths.  Files changed:
7312
7313         * as/mcs51/lklib.c
7314         * link/z80/lklib.c
7315
7316 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7317
7318         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7319
7320 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7321
7322         * device/include/string.h: added size_t typedef, changed
7323         prototypes to use size_t, eliminated separate reentrant and
7324         non-reentrant declarations, added _memmove declaration
7325         * device/lib/_memcpy.c: changed to use size_t instead of int,
7326         changed /4 to >>2 to avoid division library call
7327         * device/lib/_memcmp.c,
7328         * device/lib/_memset.c,
7329         * device/lib/_strncat.c,
7330         * device/lib/_strncpy.c,
7331         * device/lib/_strncmp.c: changed to use size_t instead of int
7332         * device/lib/_memmove.c: new file (fixed bug #772294)
7333         * device/lib/Makefile.in: added _memmove.c
7334         * device/lib/z80/asm_strings.s: fixed bug #772290
7335         * support/regression/tests/bitfields.c: attempt to fix host assertion
7336         failure on amd64-unknown-linux2.2
7337
7338 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7339
7340         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7341         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7342         * as/z80/asmain.c (main): fixed bug #801766
7343
7344 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7345
7346         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7347         compilers
7348
7349 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7350
7351         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7352         reported in bug #800609
7353
7354 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7355
7356         * Top header beautifications in src/pic16 directory:
7357           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7358           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7359           pcoderegs.h, ralloc.c, ralloc.h
7360         * main.c: added top header and GPL license notice
7361         * pcode.c: fixed the if-conditional warning
7362
7363 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7364
7365         * device/lib/_mullong.c: replaced int by short for gcc
7366
7367 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7368
7369         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7370         and JUMPTABLE iCodes properly now (worked by accident before)
7371         * src/mcs51/gen.c (leftRightUseAcc),
7372         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7373         iCode properly now. Use getSize instead of nRegs since a & b
7374         aren't part of the nRegs tally.
7375
7376 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7377
7378         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7379         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7380           before instructions that use the _STATUS register
7381
7382 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7383
7384         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7385         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7386         fetching of the pointer
7387         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7388         copied from genNearPointerSet()
7389         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7390         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7391         If they pop r0/r1 they must be called in the opposite order than aopOp().
7392         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7393         (resp. --stack-auto), prepared for --xstack
7394
7395 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7396
7397         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7398
7399 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7400
7401         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7402         these ports have their own __sdcc_external_start()
7403
7404 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7405
7406         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7407         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7408         type for bits was changed. It resulted in bit variables becoming
7409         global, which is not permitted in PIC 14 assembly output.
7410
7411 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7412
7413         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7414
7415 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7416
7417         Z80 and MCS51 linkers complaint if a public symbol is defined
7418         in more than one library module:
7419
7420         * as/mcs51/lklib.c
7421         * link/z80/lklib.c
7422         * as/mcs51/Makefile.in
7423
7424 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7425
7426         A few small changes that speed up the peephole optimizer.
7427
7428         * src/SDCCpeeph.c
7429
7430 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7431
7432         Try to make the peephole optimizer smarter by maintaining
7433         an association between the assembly source code and the
7434         iCodes that originated them. Put this information to use
7435         with a new peephole rule condition "notVolatile" so that
7436         the rules can be aggressive yet still safe.
7437
7438         * src/SDCCpeeph.c
7439         * src/SDCCpeeph.h
7440         * src/mcs51/gen.c
7441         * src/mcs51/peeph.def
7442
7443 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7444
7445         Fixed bug #741761
7446
7447         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7448         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7449         if the left or right operand symbols have the accuse flag set.
7450
7451 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7452
7453         Changed the type of the result of the ! (NOT) operator to char;
7454         previously it returned the same type as the source. This allows
7455         us to eliminate all the genFloatNot functions (all of its target
7456         implementations were very buggy) since !float can use the same
7457         code as !long now.
7458
7459         * src/SDCCicode.c (ast2iCode): ! returns char
7460         * src/mcs51/gen.c (genNot, genNotFloat),
7461         * src/ds390/gen.c (genNot, genNotFloat),
7462         * src/z80/gen.c (genNot, genNotFloat),
7463         * src/pic/gen.c (genNot, genNotFloat),
7464         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7465
7466 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7467
7468         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7469         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7470            during interrupts. Ensure WSAVE is located at a shared bank address.
7471         2. Fixed page selection in some places
7472         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7473            the registers name strings.
7474         4. Fixed "signed / unsigned compare" compiler warnings.
7475         5. The PIC port manages its own allocation of the general purpose
7476            registers, but makes no attempt to reuse them. As a result when
7477            compiling it soon runs out of general purpose registers. Some
7478            additional code was added to the files pcode.c and device.c to walk
7479            through the function call tree and rename the registers so that they
7480            get reused.
7481
7482         * src/pic/device.c
7483         * src/pic/gen.c
7484         * src/pic/glue.c
7485         * src/pic/pcode.c
7486         * src/pic/pcode.h
7487         * src/pic/ralloc.c
7488         * src/pic/ralloc.h
7489         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7490         genPlus() & genMinus() when the result is the same as left or right
7491
7492 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7493
7494         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7495
7496 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7497
7498         Made bitfield a distinct type from bit so that bitfields
7499         convert as per ANSI C and bits retain their traditional
7500         boolean style behaviour. Implemented bitfield support in
7501         the z80 port.
7502
7503         * src/SDCCsymt.h,
7504         * src/SDCCsymt.c,
7505         * src/SDCCast.c,
7506         * src/cdbFile.c,
7507         * src/mcs51/gen.c,
7508         * src/ds390/gen.c: bit v bitfield split
7509         * src/z80/gen.c: New support for bitfields
7510         * support/regression/tests/bitfields.c: reenabled z80,
7511         added more tests
7512
7513 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7514
7515         Rules 246.x, 247.x relate to bitfields, the others speed up
7516         access to xdata mapped I/O devices.
7517
7518         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7519
7520 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7521
7522         Cleaned up genPackBits and genUnpackBits and added two helper
7523         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7524         for literal assignments in genPackBits (thanks to Frieder for
7525         reminding me).
7526
7527         * src/mcs51/gen.c
7528         * src/ds390/gen.c
7529
7530 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7531
7532         Fixed bug #748310 (pointer to function type mishandled when the
7533         function name is omitted). Also fixed a SIGSEGV when a function
7534         attribute (reentrant, etc) is used on a non-function or on a
7535         function but misplaced before the parameter list.
7536
7537         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7538         bug #748310
7539         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7540         * support/Util/SDCCerr.h,
7541         * support/Util/SDCCerr.c: Added func attr misuse error msg
7542
7543 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7544
7545         Fixed bug #787649 by anonymous
7546         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7547         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7548
7549 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7550
7551         Fixed numerous bitfield problems.
7552
7553         * src/SDCC.y: More bitfield related error checking
7554         * src/SDCCsymt.h,
7555         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7556         * support/Util/SDCCerr.h,
7557         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7558         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7559         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7560         * support/regression/tests/bitfields.c: tests added
7561
7562 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7563
7564         Made the constant following the "interrupt" keyword optional. If
7565         omitted, the function will not automatically be given an entry
7566         in the interrupt vector table (similar to #pragma NOIV, but
7567         less syntacticly kludgy). The interrupt number is also now
7568         range checked. Also fixed a bug in the high order bit example
7569         in the manual.
7570
7571         * src/SDCC.y
7572         * src/SDCCmem.c
7573         * src/SDCCglue.c
7574         * src/SDCCsymt.h
7575         * support/Util/SDCCerr.c
7576         * support/Util/SDCCerr.h
7577         * doc/sdccman.lyx
7578
7579 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7580
7581         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7582         * src/SDCCicode.c (operandOperation): rewritten some ops
7583         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7584         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7585         other type
7586         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7587         be re-activated by defining REDUCE_LITERALS)
7588         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7589         unsigned, but are signed by default
7590         * src/SDCCval.c (constVal): rearranged
7591         * src/SDCCval.c (valMod): preliminary fix
7592         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7593         * support/regression/literalop.c: added, work in progress
7594
7595 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7596
7597         Generate warnings for useless declarations like "char data;"
7598         that don't do what new users expect.
7599
7600         * src/SDCC.y
7601         * support/Util/SDCCerr.h
7602         * support/Util/SDCCerr.c
7603
7604 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * src/SDCCval.c (valMult): fix overflow detection of negative int
7607
7608 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7611
7612         Changes to support big endian targets:
7613
7614         * src/ports.h
7615         * src/SDCCglue.c
7616         * src/avr/main.c
7617         * src/ds390/main.c
7618         * src/izt/i186.c
7619         * src/mcs51/main.c
7620         * src/pic/main.c
7621         * src/pic16/main.c
7622         * src/xa51/main.c
7623         * src/z80/main.c
7624
7625 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7626
7627         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7628         * device/lib/time.c: fixed warning "integer overflow in expression"
7629
7630 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7631
7632         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7633         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7634         constants are unsigned; added recognition of "u" flag for unsigned
7635         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7636         * src/SDCCval.c (valDiv, valMod): fixed signdness
7637         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7638         signedness of modulo, left and right shift
7639         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7640         * support/Util/SDCCerr.h: added warning W_INT_OVL
7641         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7642         * src/SDCCast.c (ast_print): improved output of constants
7643
7644 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7645
7646         Fixed some warnings when building with MSVC:
7647
7648         * as\mcs51\asdata.c
7649         * as\z80\asdata.c
7650         * as\mcs51\asm.h
7651         * as\z80\asm.h
7652         * link\z80\aslink.h
7653         * link\z80\lkdata.c
7654         * link\z80\lkeval.c
7655         * link\z80\lkgb.c
7656         * link\z80\lkihx.c
7657         * link\z80\lks19.c
7658         * link\z80\lksym.c
7659         * support\cpp2\cpplib.c
7660         * src\ds390\gen.c
7661         * src\mcs51\gen.c
7662
7663 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7664
7665         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7666
7667 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7668
7669         * support\librarian\clean.mk: Do not remove Makefile.
7670         * support\librarian\Makefile: added.
7671
7672 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7673
7674         Added librarian to MSVC build:
7675         * all.dsp
7676         * sdcc.dsw
7677         * support\librarian\librarian.dsp
7678
7679         'configure' not needed for librarian, removed:
7680         * support\librarian\configure
7681         * support\librarian\configure.in
7682         * support\librarian\config_in.h
7683         * support\librarian\Makefile.in
7684
7685         Hopefully these ones built the librarian and the rest of sdcc properly:
7686         * Makefile
7687         * Makefile.common.in
7688
7689         Messed up 'configure', so revert to previous version:
7690         * configure
7691         * configure.in
7692
7693 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7696         there, while the mantissa of a double is "only" 53 bits wide.
7697
7698 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7699
7700         Adding sdcclib to the build.  MSVC project coming soon.
7701         Files added/changed:
7702
7703         * support\librarian\clean.mk
7704         * support\librarian\configure
7705         * support\librarian\configure.in
7706         * support\librarian\config_in.h
7707         * support\librarian\Makefile.bcc
7708         * support\librarian\Makefile.in
7709         * support\librarian\sdcclib.c
7710         * Makefile.bcc
7711         * Makefile
7712         * Makefile.common.in
7713         * configure
7714         * configure.in
7715
7716 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7717
7718         Linker now complaints if linked modules have conflicting options, for
7719         example, one compiled using --model-large and another one compiled with
7720         --model-small.  The following files were modified:
7721
7722         * as\mcs51\asdata.c
7723         * as\mcs51\aslink.h
7724         * as\mcs51\asm.h
7725         * as\mcs51\asmain.c
7726         * as\mcs51\asout.c
7727         * as\mcs51\i51pst.c
7728         * as\mcs51\lkdata.c
7729         * as\mcs51\lklibr.c
7730         * as\mcs51\lkmain.c
7731         * as\z80\asdata.c
7732         * as\z80\asm.h
7733         * as\z80\asmain.c
7734         * as\z80\asout.c
7735         * as\z80\z80pst.c
7736         * link\z80\aslink.h
7737         * link\z80\lkdata.c
7738         * link\z80\lklibr.c
7739         * link\z80\lkmain.c
7740         * src\SDCCglue.c
7741
7742 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7743
7744         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7745         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7746
7747 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7748
7749         * src/z80/mappings.i: fix _mul[us][int,long] entries
7750
7751 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7752
7753         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7754
7755 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7756
7757         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7758         * support/regression/tests/bitopcse.c: added
7759         fixed warning:
7760         * src/avr/gen.c:
7761         * src/pic/gen.c:
7762         * src/pic16/gen.c:
7763         * src/z80/gen.c:
7764         * src/xa51/gen.c:
7765
7766 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7767
7768         added support for new library format to z80, gbz80 linkers:
7769         *link/z80/aslink.h
7770         *link/z80/lklex.c
7771         *link/z80/lklib.c
7772         *link/z80/lklist.c
7773
7774 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7775
7776         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7777         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7778
7779 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7780
7781         added DUMMY_READ_VOLATILE:
7782         * src/SDCC.y:
7783         * src/avr/gen.c:
7784         * src/xa51/gen.c:
7785         * src/z80/gen.c:
7786         * src/pic/gen.c:
7787         * src/pic16/gen.c:
7788         * src/mcs51/gen.c:
7789         * src/ds390/gen.c:
7790         * src/SDCCcse.c (algebraicOpts): many improvements
7791         * src/SDCCcse.h: removed algebraicOpts()
7792         * src/SDCCicode.c (picDummyRead): added
7793
7794 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7795
7796         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7797         "Insufficient space in data memory".
7798
7799 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7800
7801         * src/mcs51/gen.c: fixed bug #771358
7802         * src/z80/gen.c: fixed bug #759087
7803
7804 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7805
7806         * src/pic16/glue.c: minor cleanup by Vangelis
7807
7808 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7809
7810         * device/include/regc515c.h: fixed #758477
7811         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7812         * device/lib/_gptrput.c: saved a few bytes
7813         * my tab spacing is 8, yours too?)
7814         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7815         * device/lib/serial.c: process RX bytes earlier than TX bytes
7816         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7817
7818 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7819
7820         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7821
7822 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7823
7824     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7825
7826 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7827
7828         * device/lib/Makefile.in: bad fix, reverted to 1.43
7829
7830 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7831
7832         * device/lib/Makefile.in: added missing z80 object files
7833
7834 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7835
7836         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7837         pic16 progress by Vangelis:
7838         * src/SDCCglobl.h:
7839         * src/SDCCmain.c:
7840         * src/pic/Makefile:
7841         * src/pic:
7842         * pic/Makefile:
7843         * pic16/device.c:
7844         * pic16/device.h:
7845         * pic16/gen.c:
7846         * pic16/gen.h:
7847         * pic16/genarith.c:
7848         * pic16/glue.c:
7849         * pic16/main.c:
7850         * pic16/pcode.c:
7851         * pic16/pcode.h:
7852         * pic16/pcodepeep.c:
7853         * pic16/peeph.def:
7854
7855 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7856
7857     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7858
7859 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7860
7861     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7862     added gbz80 build to MSVC project.
7863     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7864     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7865     from 8051 stuff and setup so it links using a .lnk file.
7866
7867 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7868
7869     * support/librarian/sdcclib.c: sdcc librarian.
7870     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7871     with sdcclib.
7872
7873 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7874
7875     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7876
7877 2003-07-02  Borut Razem <borut.razem AT siol.net>
7878
7879         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7880         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7881         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7882         src/xa51/main.c, src/z80/main.c:
7883         virtualization of glue() function: each port has it's own glue function,
7884         which is accessed by do_glue function pointer in PORT.general structure
7885
7886 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7887
7888         * DS800C400 fun, improved ROM interface and tinibios.
7889
7890 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7891
7892         * More support for DS80C400. Now includes beginning of interface to ROM.
7893
7894 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7895
7896         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7897
7898 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7899
7900         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7901
7902 2003-06-19  Borut Razem <borut.razem AT siol.net>
7903
7904         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7905
7906 2003-06-19  Borut Razem <borut.razem AT siol.net>
7907
7908         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7909         fixed Z80 port - crt0.o: cannot open.
7910
7911 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7912
7913         * support/Util/MySystem.c (merge_command): revert bad fix
7914
7915 2003-06-18  Borut Razem <borut.razem AT siol.net>
7916
7917         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7918
7919 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7920
7921         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7922         option --use-stdout sends errors to stdout instead of stderr.
7923
7924 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7925
7926         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7927
7928 2003-06-15  Borut Razem <borut.razem AT siol.net>
7929
7930         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7931         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7932         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7933         fixed width array of pointers replaced with sets;
7934         multiple include and lib paths ared transferred to preprocessor and linker
7935         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7936         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7937         fixed width array of pointers
7938         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7939         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7940         fixupPath(), getPathDifference()
7941         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7942         fixed width array of pointers
7943
7944 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * src/pic16/ralloc.c: fix warnings
7947         * src/pic16/pcode.c: fix warning
7948
7949 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7950
7951          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7952         know all the details, but essentially this set of changes enable
7953         the pic16 port to generate movff instructions and generate assembler
7954         directives,
7955         * src/SDCCmain.c:
7956         * src/pic16/gen.c:
7957         * src/pic16/glue.c:
7958         * src/pic16/pcode.c:
7959         * src/pic16/device.c:
7960         * src/pic16/main.c:
7961         * src/pic16/pcode.h:
7962         * src/pic16/pcoderegs.c:
7963         * src/pic16/ralloc.c:
7964         * src/pic16/ralloc.h:
7965
7966 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7967
7968         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7969         added option --vc, so sdcc errors and warnings are compatible with
7970         Microsoft Visual Studio.
7971
7972 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7973
7974         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7975           device/lib/libfloat.lib: added atof function.
7976
7977 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7978
7979         * doc/sdccman.lyx: updated to Lyx 1.3
7980         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7981         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7982         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7983
7984 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7985
7986         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7987
7988 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7989
7990         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7991           additions to the "related tools/documentation" section
7992
7993 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7994
7995         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7996
7997 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7998
7999         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8000         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8001
8002 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8003
8004         * doc/sdccman.lyx: fix double dash and other minor things
8005         * doc/Makefile: fix double dash
8006
8007 2003-05-28  Karl Bongers(patches from Martin Helmling)
8008         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8009           condition and ignore commands.
8010
8011 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8012
8013         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8014           is in parts still quite out of date, I did changes as far as I felt makes sense
8015           for a non-native english speaker.
8016           Please feel free to add to the manual or to correct my changes.
8017         * doc/Makefile: undid touching the date of intermediate tex files.
8018
8019 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8020
8021         * doc/sdccman.lyx: Manual has an index now
8022
8023 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8024
8025         Finalize muluint/mulsint and mululong/mulslong merging:
8026         * device/lib/_mulint.c
8027         * device/lib/_mullong.c
8028         * device/lib/gbz80/mul.s
8029         * device/lib/gbz80/stubs.s
8030         * device/lib/z80/mul.s
8031         * device/lib/z80/stubs.s
8032         * src/SDCCsymt.c (initCSupport)
8033
8034 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8035
8036         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8037         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8038           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8039           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8040           instead of /Zm500.
8041
8042 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8043
8044         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8045           the regression tests I'm not brave enough to enable 245.b, 245.c
8046         * doc/sdccman.lyx: added latex preamble for hyperref package.
8047           Using pdflatex this will give you a hyperlinked pdf file with
8048           bookmarks. (prepend '%' before /usepackage if this breaks something)
8049
8050 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8051
8052          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8053
8054 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8055
8056         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8057
8058 2003-05-21    <johan AT balder>
8059
8060         * src/SDCCglue.c (printIval): fixed bug #739934
8061
8062 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         Applied patch from bug 737905 (renamed yylineo to mylineno):
8065         * src/altlex.c
8066         * src/SDCCast.c
8067         * src/SDCglobl.h
8068         * src/SDCC.lex
8069         * src/SDCCsymt.c
8070         * src/SDCCval.c
8071         * src/pic16/pcode.c: Cleaned warnings
8072         * src/pic16/pcodeflow.c: Cleaned warnings
8073         * src/pic16/pcoderegs.c: Cleaned warnings
8074
8075 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8076
8077         * src/pic16/pcode.c: Cleaned warnings
8078         * src/pic16/pcodepeep.c: Cleaned warnings
8079         * src/pic16/ralloc.c: Cleaned warnings
8080
8081 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8082
8083         * doc/sdccman.lyx: fixed bug 739745
8084         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8085
8086 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8087
8088         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8089         it can be defined with CFLAGS when running configure
8090         * src/SDCCmain.c: fixed compiling + linking with object files
8091
8092 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8093
8094         * configure.in: configure for pic16 port,
8095             added --disable-pic16-port
8096         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8097         * src/SDCCmain.c: linkOptions is changed to set *,
8098             added if/endif conditional macros to remove options help
8099             messages from optionsTable when a port is not configured, added
8100             support for the PIc16 port in the ports table, when executing
8101             the compiler with no port specified on command line, a default
8102             port is selected with the new macro DEFAULT_PORT which is
8103             defined in port.h, in setDefaultOptions() linkOptions is removed
8104             from initialization assignment, since now it is a set,
8105             parseCmdLine uses setParseWithComma for linkOptions, in
8106             linkEdit() linkOptions are accessed with new function indexSet()
8107             which returns the i'th item of a set variable. See SDCCset.c, in
8108             linkEdit() when calling buildCmdLine(), added linkOptions as
8109             last argument. Now users can pass arguments to gplink via the
8110             -Wl option, main() uses pic16glue() to glue up pic16 programs
8111         * src/SDCCpeeph.c: various changes to support pic16
8112         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8113             return the i'th item of the set
8114         * src/SDCCset.h: added function prototype for indexSet()
8115         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8116         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8117         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8118             added macro DEFAULT_PORT
8119         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8120         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8121             generated
8122         * src/pic16/glue.c: commented out some error producing lines
8123         * src/pic16/main.c: __config directives are commented out to stop
8124             gpasm complaining and test the linkage with gplink, _linkCmd and
8125             _asmCmd changed to be more gplink and gpasm friendly
8126         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8127             produced an error when parsed, peep rule 12 is added to utilize
8128             movff, but it is commented out since the pCode does not support
8129             yet a command with 2 address arguments
8130
8131 2003-05-18    <johan AT balder>
8132
8133         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8134         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8135 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8136
8137         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8138   Added feature to script commands from file.
8139
8140 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8143         * src/SDCCutil.c: include ctype.h for win32
8144
8145 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8146
8147         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8148
8149 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8150
8151         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8152   Fixed so you can set breakpoints prior to run, run does not stop
8153   on entry now.  Add tbreak.  Other enhancements and fixes for use
8154   with ddd.
8155
8156 2003-05-12  Borut Razem <borut.razem AT siol.net>
8157
8158         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8159
8160 2003-05-11  Borut Razem <borut.razem AT siol.net>
8161
8162         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8163         the path of bin directory, so that PATH is the only env. variable, which has to be set
8164         in case of standard installation.
8165         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8166         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8167         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8168
8169 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8170
8171         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8172         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8173         temp files are in the port dir; clean the gen/test directory when
8174         generating new test.c
8175         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8176         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8177         * support/regression/tests/zeropad.c: added
8178
8179 2003-05-09    <johan AT balder>
8180
8181         * src/SDCCglue.c: fixed bug #597940
8182
8183 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8184
8185         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8186   cache sfr, optimize next,step, fix off by one sourceline,
8187   support ddd list function.
8188         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8189
8190 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8191
8192         * support/regression/HTMLgen.py: added compare_s2f()
8193         * support/regression/Makefile: redo 1.27
8194         * support/regression/generate-cases.py: redo 1.5
8195
8196 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * support/regression/tests/float.c: workaround 33 bit hex constant
8199         * support/regression/tests/simplefloat.c: fix division for host
8200
8201 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8202
8203         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8204         that tame's the PIC's over-aggressive optimizer.
8205
8206 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8207
8208          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8209          support for MSVC.
8210
8211 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8212
8213         Initial support for DS80C400. "Hello world" runs on TINIm400
8214         (with polled I/O).
8215
8216 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8217
8218          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8219          * Some notes on ddd usage added in debugger/README
8220          Martin Helmling adding more features and fixes for ddd GUI debugger.
8221          Code added for nexti, stepi, up, down, and other adjustments.
8222
8223 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8224
8225         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8226         * src/pic/peeph.def Added two rules to optimize carry manipulation
8227         * src/pic/* removed debug printfs
8228
8229 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8230
8231         * debugger/mcs51/cmd.c: added header newalloc.h
8232
8233 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8234
8235         * as/Makefile: new EXEEXT
8236         * as/z80/Makefile: remove trailing slash of BUILDIR
8237         * as/z80/clean.mk: new EXEEXT
8238         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8239         * support/cpp2/Makefile.in: new EXEEXT
8240         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8241
8242 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8243
8244         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8245         EXEEXT was introduced to fix all related problems with targets
8246         "clean", "install" and "uninstall"; a couple of further flaws
8247         especially with "clean" have been fixed too
8248         * as/mcs51/Makefile.in
8249         * as/mcs51/clean.mk
8250         * as/z80/Makefile
8251         * Makefile
8252         * clean.mk
8253         * debugger/mcs51/Makefile.in
8254         * debugger/mcs51/clean.mk
8255         * link/z80/Makefile
8256         * link/z80/Makefile.in
8257         * link/z80/clean.mk
8258         * link/Makefile
8259         * packihx/Makefile.in
8260         * packihx/clean.mk
8261         * sim/ucsim/Makefile
8262         * sim/ucsim/clean.mk
8263         * sim/ucsim/avr.src/Makefile.in
8264         * sim/ucsim/avr.src/clean.mk
8265         * sim/ucsim/s51.src/Makefile.in
8266         * sim/ucsim/s51.src/clean.mk
8267         * sim/ucsim/xa.src/Makefile.in
8268         * sim/ucsim/xa.src/clean.mk
8269         * sim/ucsim/z80.src/Makefile.in
8270         * sim/ucsim/z80.src/clean.mk
8271         * sim/ucsim/main_in.mk
8272         * sim/ucsim/packages_in.mk
8273         * sim/ucsim/gui.src/Makefile.in
8274         * sim/ucsim/gui.src/serio.src/Makefile.in
8275         * sim/ucsim/gui.src/serio.src/clean.mk
8276         * src/Makefile.in
8277         * src/clean.mk
8278         * support/cpp2/Makefile.in
8279         * support/cpp2/clean.mk
8280         * support/makebin/Makefile
8281         * support/makebin/clean.mk
8282         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8283         * doc/sdccman.lyx: --program-suffix no longer needed
8284
8285 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8286
8287          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8288          Martin Helmling added support for ddd GUI debugger.
8289          Code added to display assembly, set variables, and other commands
8290          to interface to ddd.
8291
8292 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8293
8294         * as/Makefile: fix target clean
8295         * as/clean.mk: fix target clean
8296         * as/z80/clean.mk: fix target clean
8297
8298 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * Makefile.common.in: added  AT EXEEXT AT
8301         * configure.in: removed all mingw32 stuff
8302         * configure: rebuilt from configure.in
8303         * doc/sdccman.lyx: updated section "installation"
8304         * support/scripts/sdcc_mingw32: adapted to configure
8305         * support/scripts/sdcc_cygwin_mingw32: added
8306
8307 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8308
8309         * src/pic Added object file support for the PIC port
8310         * src/pic Applied patch from Craig Franklin (this started the object file support)
8311         * src/regression Updated the PIC regression tests for object files
8312
8313 2003-04-20  Borut Razem <borut.razem AT siol.net>
8314
8315         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8316           lklex.c: In function `getfid':
8317           lklex.c:203: warning: array subscript has type `char'
8318         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8319           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8320         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8321           stack handling macros
8322
8323 2003-04-19  Borut Razem <borut.razem AT siol.net>
8324
8325         * "handling space characters in file path" task:
8326         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8327         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8328         * support/Util/MySystem.h: make it self-sufficient
8329         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8330           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8331           handling space characters in file path
8332         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8333           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8334         * support/Util/MySystem.c: handling space characters in executable's path
8335
8336 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8337
8338         * as/z80/Makefile: fix permanent rebuild of z80
8339         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8340         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8341
8342 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8343
8344         * src/SDCCopt.c: add special case optimization to replace modulo by
8345           a power of two with a bitwise AND.
8346
8347 2003-04-18    <johan AT balder>
8348
8349         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8350
8351 2003-04-17    <johan AT balder>
8352
8353         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8354         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8355
8356 2003-04-13  Borut Razem <borut.razem AT siol.net>
8357
8358         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8359         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8360           fixed mingw problem in adl_NORMALIZE_PATH
8361
8362 2003-04-12  Borut Razem <borut.razem AT siol.net>
8363
8364         * fixed "#pragma SAVE/RESTORE can not be nested":
8365         * src/SDCC.lex: reworked pragma handling functions
8366         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8367         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8368
8369 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8370
8371         * src/SDCCutil.c (pathEquivalent): defined but not used
8372         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8373         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8374         * configure: rebuilt from configure.in
8375         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8376         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8377         * device/include/Makefile.in: replace sdcc_datadir
8378         * device/lib/Makefile.in: replace sdcc_datadir
8379         * Makefile.common.in: add LDFLAGS from configure
8380         * packihx/Makefile.in: use LDFLAGS
8381         * src/Makefile.in: use LDFLAGS
8382         * support/cpp2/Makefile.in: add LDFLAGS from configure
8383         * support/makebin/Makefile: use LDFLAGS
8384         * .version: bumped version number to 2.3.5
8385
8386 2003-04-12  Borut Razem <borut.razem AT siol.net>
8387
8388         * completed "different paths" task:
8389         * src/SDCCmacro.c: fixed bug in handling quotes
8390         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8391         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8392
8393 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8396
8397 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8398
8399         * ds390/gen.c ds390/peeph.def: fix bug 706781
8400
8401 2003-04-11  Borut Razem <borut.razem AT siol.net>
8402
8403         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8404
8405 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8406
8407         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8408         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8409          set - this bit used to not be set...).
8410         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8411           bad code in PIC Port
8412         * src/regression/and2.c added to test bug 609268
8413         * src/regression/Makefile added and2.c to regression test
8414
8415
8416 2003-04-08    <johan AT CP255758-A>
8417
8418         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8419         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8420         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8421
8422 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8425         fix bug #487815
8426         * support/cpp2/Makefile.in: fix bug #487815
8427         * configure: rebuilt from configure.in
8428         * Makefile.common.in: docdir changed, new path suffixes
8429         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8430         * sdcc_vc_in.h: reflect changes from sdccconf.h
8431         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8432         * src/SDCCutil.h: remove BINDIR hack
8433         * doc/sdccman.lyx: update new path hierarchy
8434
8435 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8436
8437         * src/SDCCpeeph.c: added okToRemoveSLOC test
8438
8439 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8440
8441         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8442
8443 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8444
8445         * src/SDCCpeeph.c: added labelIsReturnOnly test
8446         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8447
8448 2003-04-05    <johan AT balder>
8449
8450         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8451         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8452         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8453         * src/SDCCast.c: fixed a warning
8454         * src/SDCCast.h: fixed a warning
8455         * src/SDCCicode.c (operandFromAst): fixed a warning
8456
8457 2003-04-04    <johan AT balder>
8458
8459         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8460         * src/SDCCast.c (decorateType): fixed bug #715076
8461         * src/SDCC.y: fixed bug #702907
8462
8463 2003-04-03    <johan AT balder>
8464
8465         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8466         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8467         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8468         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8469         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8470
8471 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8472
8473         * _decdptr.c: fix return values
8474         * _gptrget.c: fix return values
8475         * _gptrgetc.c: fix return values
8476         * _gptrput.c: fix return values
8477         * _mulint.c: fix return values
8478         * as/z80/Makefile: fix 'make -j' problem
8479
8480 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8481
8482         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8483         * configure.in: big cleanup, updated to autoconf 2.5x
8484         * configure: rebuilt from configure.in
8485         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8486         * sdcc_vc_in.h: reflect changes from sdccconf.h
8487         * doc/Makefile: fixed a flaw in "make install"
8488
8489 2003-04-02    <johan AT balder>
8490
8491         * src/ds390/gen.c (genCmp): no comments
8492         * src/mcs51/gen.c (genCmp): no comments
8493         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8494         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8495
8496 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8497
8498         * support/regression/generate-cases.py: place generated file in given sub directory
8499         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8500         * support/regression/Makefile: improvements for 'make -j';
8501         side effect: it's simpler and faster now
8502
8503 2003-03-31  Borut Razem <borut.razem AT siol.net>
8504
8505         * src/z80/main.c: link-{port} and as-{port} defined without path
8506         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8507
8508 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8511
8512 2003-03-30  Borut Razem <borut.razem AT siol.net>
8513
8514         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8515           changed type of list parameter to set
8516         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8517         * src/port.h: changed type of do_assemble() parameter to set
8518         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8519           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8520           definition of "cppoutfilename" macro with NULL value in preProcess()
8521         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8522         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8523         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8524           replaced with set *binPathSet
8525         * shash_add() deallocates the item, if allready exsists, before adding the new one
8526         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8527
8528 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8529
8530         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8531           a nested for loop bug in the PIC port
8532         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8533           for loops
8534
8535 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8536
8537         * support/Util/dbuf.h: remove C++ stuff to make it portable
8538
8539 2003-03-28  Borut Razem <borut.razem AT siol.net>
8540
8541         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8542           literal strings in stringLiteral()
8543         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8544         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8545           to the project
8546
8547 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8548
8549         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8550
8551 2003-03-26    <johan AT balder>
8552
8553         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8554         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8555         * src/SDCCast.c (decorateType): fixed " -v < 3"
8556
8557 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8558
8559         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8560         Added Lenny Story's debug infrastructure changes:
8561         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8562         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8563         * src/cdbFile.c: added
8564         * src/SDCCdebug.c: added
8565         * src/SDCCdebug.h: added
8566         * src/SDCCast.c (createFunction)
8567         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8568         * src/SDCCmain.c (parseCmdLine, main)
8569         * src/SDCCmem.c (redoStackOffsets)
8570         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8571         * src/SDCCsymt.h
8572         * src/common.h
8573         * src/avr/gen.c (genAVRCode)
8574         * src/ds390/gen.c (gen390Code)
8575         * src/mcs51/gen.c (gen51Code)
8576         * src/pic/gen.c (genpic14Code)
8577         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8578         * src/xa51/gen.c (genXA51Code)
8579         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8580
8581 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8582
8583         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8584         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8585
8586 2003-03-22    <johan AT balder>
8587
8588         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8589
8590 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8591
8592         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8593         * doc/cdbfileformat.lyx: added, written by Lenny Story
8594         * doc/Makefile: added cdbfileformat.lyx
8595         * doc/clean.mk: added cdbfileformat.lyx
8596
8597 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8598
8599         * src/mcs51/peeph.def: fix bug #705773
8600
8601 2003-03-20    <johan AT balder>
8602
8603         An sfr/sbit can have an "at #" AND an initializer
8604         * src/SDCCsymt.c (checkSClass):
8605         * src/SDCCmem.c (allocGlobal):
8606         * src/SDCCmem.c (allocLocal):
8607         * src/SDCCast.c (createBlock):
8608
8609 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8610
8611         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8612
8613 2003-03-16    <johan AT balder>
8614
8615         Undid the hackup of const and volatile, the problem is much bigger
8616         * src/SDCC.y:1.65
8617         * src/SDCCast.c:1.171
8618         * src/SDCCglue.c:1.138
8619         * src/SDCCicode.c:1.146
8620         * src/SDCCsymt.c:1.150
8621         * src/SDCCval.c:1.65
8622
8623 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8624
8625         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8626         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8627
8628 2003-03-13    <johan AT balder>
8629
8630         Hackup const and volatile modifiers in type chains a bit:
8631         * src/SDCC.y:1.63
8632         * src/SDCCast.c:1.169
8633         * src/SDCCglue.c:1.136
8634         * src/SDCCicode.c:1.143
8635         * src/SDCCsymt.c1.146
8636         * src/SDCCsymt.h1.59
8637         * src/SDCCval.c:1.63
8638
8639 2003-03-12    <johan AT balder>
8640
8641         * src/SDCCBBlock.h: more LRH debugging junk
8642         * src/SDCCcflow.h: more LRH debugging junk
8643         * src/SDCCloop.c: more LRH debugging junk
8644         * src/SDCC.y (struct_declaration): fixed bug #697590
8645         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8646         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8647         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8648
8649 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8650         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8651         test function names must now match exactly).
8652         * src/SDCCcse.c: added special case in findCheaperOp to allow
8653         extending a short integer. Makes less awful code for bug 700121 test case.
8654
8655 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8656
8657         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8658         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8659
8660 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8661
8662         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8663         actually called (operandsNotEqual() was called for all
8664         operandsNotEqualX tests).
8665
8666 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8667
8668         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8669         with shorter literals. Fixes bug 700121.
8670
8671 2003-03-11    <johan AT balder>
8672
8673         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8674
8675 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8676
8677         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8678         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8679
8680 2003-03-10  Borut Razem <borut.razem AT siol.net>
8681
8682         * src/SDCCmain.c: pipe preprocessor's output
8683         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8684         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8685         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8686         which closes all pipes in pipeSet set
8687         * src/SDCCset.c: free deleted item in function deleteSetItem()
8688         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8689         moved from z80 to src subproject
8690         * .version: increased version number to 2.3.4
8691
8692 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8693
8694         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8695         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8696         * support/regression/ports/xa51/spec.mk: fix typo
8697
8698 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8699
8700         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8701
8702 2003-03-09  Borut Razem <borut.razem AT siol.net>
8703
8704         * src/SDCCmain.c: pipe preprocessor's output
8705         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8706         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8707         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8708         which closes all pipes in pipeSet set
8709         * src/SDCCset.c: free deleted item in function deleteSetItem()
8710         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8711         moved from z80 to src subproject
8712
8713 2003-03-09  Borut Razem <borut.razem AT siol.net>
8714
8715         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8716         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8717         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8718         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8719         * src/SDCCglobl.h: unification of WIN32 native definitions
8720
8721 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8722
8723         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8724
8725 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8726
8727         * src/configure.in:   check for endianess (even while cross-compiling)
8728         * src/configure:      check for endianess (even while cross-compiling)
8729         * src/configure_in.h: check for endianess (even while cross-compiling)
8730         * src/avr/gen.c:        remove old endianess stuff
8731         * src/mcs51/gen.c:      remove old endianess stuff
8732         * src/ds390/gen.c:      remove old endianess stuff
8733         * src/pic/gen.c:        remove old endianess stuff
8734         * src/pic/genarith.c:   remove old endianess stuff
8735         * src/pic/glue.c:       fix endianess check
8736         * src/pic16/gen.c:      remove old endianess stuff
8737         * src/pic16/genarith.c: remove old endianess stuff
8738         * src/pic16/glue.c:     fix endianess check
8739         * src/xa51/gen.c:       remove old endianess stuff
8740         * src/z80/gen.c:        fix endianess check
8741         * src/SDCCglue.c:       fix endianess check
8742         * src/ds390/peeph.def: fix bug 700036
8743
8744 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8745
8746         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8747         * src/configure: find appropriate data-types on host for SDCC's int and long
8748         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8749         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8750         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8751
8752 2003-03-07    <johan AT balder>
8753
8754         Just a big NOOP:
8755                 some minor cleanups before the big shot
8756                 OP_DEFS and OP_USES now use Kevin's protection
8757                 new option --nolabelopt
8758
8759         * src/SDCCBBlock.c:
8760         * src/SDCCast.c,:
8761         * src/SDCCcflow.c:
8762         * src/SDCCcse.c:
8763         * src/SDCCicode.c:
8764         * src/SDCCicode.h:
8765         * src/SDCClabel.c:
8766         * src/SDCCloop.c:
8767         * src/SDCCmain.c:
8768         * src/ds390/ralloc.c:
8769         * src/mcs51/ralloc.c:
8770         * src/pic/ralloc.c:
8771         * src/xa51/ralloc.c:
8772         * src/z80/ralloc.c:
8773
8774 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8775
8776         * src/pic/pcode.c (get_op): fix 64 bit warnings
8777         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8778         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8779         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8780         * support/regression/tests/malloc.c: fix 64 bit warnings
8781
8782 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8783
8784         * src/mcs51/gen.c (genMinus): fixed bug 696436
8785
8786 2003-03-02  Borut Razem <borut.razem AT siol.net>
8787
8788         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8789
8790 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8791
8792         * configure.in: test for mkstemp
8793         * sdccconf_in.h: add HAVE_MKSTEMP
8794
8795 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8796
8797         * device/include/ctype.h: removed warning while using --stack-auto
8798         * device/include/malloc.h: removed warning while using --stack-auto
8799         * device/include/string.h: removed warning while using --stack-auto
8800
8801 2003-02-23  Borut Razem <borut.razem AT siol.net>
8802
8803         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8804         because NDEBUG is defined (see man assert)
8805         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8806
8807 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8808
8809         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8810         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8811
8812 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8813
8814         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8815         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8816
8817 2003-02-18    <johan AT balder>
8818
8819         * as/mcs51/asmain.c (asmbl): module can start with a digit
8820         * as/z80/asmain.c (asmbl): module can start with a digit
8821
8822 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8823
8824         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8825         * src/asm.c: fix pipe() for Mingw32
8826
8827 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8828
8829         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8830         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8831         make -V work again; --c1mode reads now from stdin
8832         * doc/sdccman.lyx: added --c1mode
8833         * support/Util/SDCCerr.c: new messages for c1 mode
8834         * support/Util/SDCCerr.h: new messages for c1 mode
8835         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8836
8837 2003-02-15    <johan AT balder>
8838
8839         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8840
8841 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8842
8843         * doc/sdccman.lyx: Environment variables, -o and other minor things
8844
8845 2003-02-14    <johan AT balder>
8846
8847         * src/xa51/main.c: before anyone really tries to use it :)
8848
8849         * Install doc's in share/sdcc/doc
8850         * removed some obsolete files
8851         * Do a proper make distclean and uninstall
8852         M Makefile.common.in
8853         R sdccbuild.sh
8854         M as/Makefile
8855         M device/include/Makefile.in
8856         M device/lib/Makefile.in
8857         M doc/sdccman.lyx
8858         M link/Makefile
8859         M sim/ucsim/doc/Makefile.in
8860         M src/clean.mk
8861         R src/avr/peeph.rul
8862         R src/xa51/peeph.rul
8863         M support/cpp2/Makefile.in
8864         M support/makebin/Makefile
8865
8866
8867 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8870
8871 2003-02-10  Borut Razem <borut.razem AT siol.net>
8872
8873         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8874         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8875         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8876         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8877         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8878         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8879         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8880         src/z80/Makefile.bcc: Borland Makefile cleanup
8881         * as/z80/Makefile.bcc: Added Borland Makefile
8882         * support/cpp2/borland.h: Removed
8883
8884 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8885
8886         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8887         * src/SDCC.lex: new pragma NOIV
8888         * src/SDCCglobl.h: new pragma NOIV
8889         * src/SDCCmem.c: new pragma NOIV
8890
8891 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8892
8893         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8894
8895 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8896
8897         * src/SDCCmain.c: signal handling is switched off by --debug
8898         * doc/Makefile: small fix for install; use clean.mk again
8899         * doc/clean.mk: clean *.pdf and *.html too
8900
8901 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8902
8903         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8904         * device/lib/printfl.c: fix a ds390 bug by making it portable
8905         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8906         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8907         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8908         * debugger/mcs51/cmd.c: converted multi-line string literals
8909         * sim/ucsim/globals.cc: converted multi-line string literals
8910         * src/SDCCmain.c: introduced signal handler to remove temp files
8911         * doc/Makefile: small tweaks, implement clean
8912         * doc: removed generated files
8913
8914 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8915
8916         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8917         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8918         Address Record is not correctly generated for DS390."
8919
8920 2003-02-02  Borut Razem <borut.razem AT siol.net>
8921
8922         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8923         * as/mcs51/asm.h: fixed compilation with Borland C
8924         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8925         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8926         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8927         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8928         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8929         src/z80/Makefile.bcc: delete $(LIB) only if exist
8930         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8931
8932 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8933
8934         * device/include/malloc.h: introduced NULL
8935         * device/include/string.h: introduced NULL
8936         * device/include/stdlib.h: introduced NULL
8937         * device/lib/_memcpy.c: removed NULL
8938         * device/lib/_strcat.c: removed NULL
8939         * device/lib/_strchr.c: removed NULL
8940         * device/lib/_strcmp.c: removed NULL
8941         * device/lib/_strcpy.c: removed NULL
8942         * device/lib/_strcspn.c: removed NULL
8943         * device/lib/_strlen.c: removed NULL
8944         * device/lib/_strncat.c: removed NULL
8945         * device/lib/_strncmp.c: removed NULL
8946         * device/lib/_strncpy.c: removed NULL
8947         * device/lib/_strpbrk.c: removed NULL
8948         * device/lib/_strrchr.c: removed NULL
8949         * device/lib/_strspn.c: removed NULL
8950         * device/lib/_strstr.c: removed NULL
8951         * device/lib/_strtok.c: removed NULL
8952         * device/lib/malloc.c: removed NULL, include own header
8953
8954 2003-02-02    <johan AT balder>
8955
8956         * 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
8957         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8958         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8959         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8960         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8961         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8962
8963 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8964
8965         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8966         area 'DATA'"
8967
8968 2003-02-01    <johan AT balder>
8969
8970         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8971
8972 2003-01-31    <johan AT CP255758-A>
8973
8974         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8975
8976 2003-01-30    <johan AT balder>
8977
8978         * src/SDCCBBlock.c: automatic bug detection
8979         * src/SDCCicode.c: automatic bug detection
8980
8981 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8982
8983         * src/SDCCglobl.h:   now --xram-size 0 works
8984         * src/SDCCmain.c:    now --xram-size 0 works
8985
8986 2003-01-29    <johan AT balder>
8987
8988         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8989
8990 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8991
8992         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8993         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8994         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8995         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8996         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8997         * src/SDCCmain.c:    Added options --xram-size and --code-size
8998
8999 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9000
9001         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9002         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9003
9004 2003-01-27    <johan AT balder>
9005
9006         * src/SDCC.y: fixed bug #613764
9007
9008 2003-01-26    <johan AT balder>
9009
9010         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9011         * src/SDCCsymt.h: fixed bug #673374
9012         * src/SDCCglue.c: fixed bug #661910
9013         * src/SDCCast.c: fixed bug #458099 and 673374
9014
9015 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9016
9017         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9018         * as/mcs51/strcmpi.h: added
9019         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9020         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9021         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9022         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9023         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9024         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9025         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9026         * as/mcs51/Makefile.aslink: new module strcmpi
9027         * as/mcs51/Makefile.asx8051: new module strcmpi
9028         * as/mcs51/Makefil.bcc: new module strcmpi
9029         * as/mcs51/Makefile.in: new module strcmpi
9030         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9031
9032 2003-01-26    <johan AT balder>
9033
9034         * src/SDCCglue.c: reverted back to 1.124
9035         * src/SDCCast.c: reverted back to 1.156
9036         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9037
9038 2003-01-25    <johan AT balder>
9039
9040         * src/SDCCglue.c: A better fix for bug #661910
9041         * src/SDCCast.c: A better fix for bug #661910
9042         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9043
9044 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9045
9046         * src/Makefile.in: remove spawn.o
9047         * src/SDCCmain.c: remove spawn.h
9048         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9049         * src/spawn.c: removed
9050         * src/spawn.h: removed
9051         * support/regression/ports/ds390/spec.mk: link with -r
9052
9053 2003-01-24    <johan AT CP255758-A>
9054
9055         * src/ds390/gen.c (aopOp): fixed bug #667458
9056         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9057         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9058         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9059
9060 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9061
9062         * src/mcs51/peeph.def: better assembler identation by Frieder
9063         * src/mcs51/gen.c: better assembler identation by Frieder
9064
9065 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9066
9067         * as/z80/string.h: removed for gcc 3.2
9068         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9069         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9070
9071 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9072
9073         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9074         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9075         * support/regression/Makefile: separate temp files for ports
9076         * support/regression/generate-cases.py: separate temp files for ports
9077         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9078         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9079
9080 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9081
9082         * moved tinitalk to device/examples/ds390
9083
9084 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * as/mcs51/lkmem.c: rflag is for DS390
9087         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9088         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9089                          (linkEdit): move mem- and map-files the same way as ihx-files
9090         * src/z80/main.c (_setDefaultOptions): removed --generic
9091         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9092         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9093         * src/pic/glue.c (picglue): --c1mode works again
9094         * src/pic16/glue.c (pic16glue): --c1mode works again
9095         * src/asm.c (printCLine): fix #660034
9096
9097 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9098
9099         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9100         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9101         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9102         * as/mcs51/lkmem (summary): better fix for sp problem
9103         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9104         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9105         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9106                                               remove --stack-after-data
9107
9108 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9109
9110         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9111         * src/SDCCutil.c (join): ugly bug: missing '\0'
9112         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9113
9114 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9115
9116         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9117         * src/port.h: typo
9118         * src/pic/main.c (_asmCmd): gpasm supports -o
9119         * src/z80/main.c: more general macros
9120         * device/lib/Makefile.in: remove intermediate files
9121
9122 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9123
9124         * .version: Bumped version number to 2.3.3
9125         * src/SDCCBBlock.c: new option -o
9126         * src/SDCCglobl.h: new option -o
9127         * src/SDCCglue.c: new option -o
9128         * src/SDCCmain.c: new option -o
9129         * src/asm.c: new option -o
9130         * src/ds390/main.c: new option -o
9131         * src/pic/glue.c: new option -o
9132         * src/pic/pcode.c: new option -o
9133         * src/pic/ralloc.c: new option -o
9134         * src/pic16/glue.c: new option -o
9135         * src/pic16/pcode.c: new option -o
9136         * src/pic16/ralloc.c: new option -o
9137         * src/z80/main.c: new option -o
9138         * device/lib/Makefile.in: use -o
9139         * support/regression/ports/ds390/spec.mk: use -o
9140         * support/regression/ports/gbz80/spec.mk: use -o
9141         * support/regression/ports/mcs51/spec.mk: use -o
9142         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9143         * support/regression/ports/z80/spec.mk: use -o
9144         * support/regression/ports/ucz80/spec.mk: use -o
9145         * support/regression/ports/xa51/spec.mk: use -o
9146         * support/regression/fwk/lib/timeout.c: fix usage string
9147
9148 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9149         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9150
9151 2003-01-07    <johan AT balder>
9152
9153         * src/SDCCast.c (decorateType): fixed bug #600035
9154
9155 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9156         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9157         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9158         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9159         * src/pic/pcode.c: outcommented unused variable to remove warnings
9160         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9161
9162 2003-01-06    <karl AT turbobit.com>
9163         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9164    regression tests.
9165
9166 2003-01-06    <johan AT balder>
9167
9168         * src/SDCCicode.c: fixed array add
9169
9170 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9171         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9172         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9173
9174 2003-01-04    <johan AT balder>
9175
9176         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9177
9178 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9179         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9180
9181 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9182         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9183         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9184
9185 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9186         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9187
9188 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9189         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9190
9191 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9192         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9193
9194 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9195
9196     * in \sdcc\as\mcs51\ changed these files in order to create an
9197     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9198     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9199     following files to include the previous two files: aslink.dsp,
9200     Makefile.aslink, Makefile.bcc, and Makefile.in.
9201
9202     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9203     .adb instead of .cdb
9204
9205 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9206
9207         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9208         value from option --iram-size.
9209
9210 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9211
9212         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9213         dram[] array.
9214
9215 2002-09-18    <wiml AT hhhh.org>
9216
9217         * SDCClrange.h: exposed setFromRange() and setToRange()
9218         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9219           packRegsForAccUse() (bug 542397)
9220         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9221           multiple times and emitting the fetch operations more than once
9222           added aopGetUsesAcc() function to allow binary operators to
9223           fetch their operands in the correct order; made genMinus() emit
9224           compact code for X = LITERAL - Y
9225
9226 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9227         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9228         sprintf() in line 1267.
9229
9230 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9231         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9232         like ports.
9233
9234 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9235         Changes to aslink (All the changes are marked with 'JCF'):
9236
9237         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9238         summary().
9239
9240         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9241         area BSEG.  Also moves, if possible, the DATA area down into the internal
9242         ram so more space is available.
9243
9244         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9245         sflag.
9246
9247         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9248         not bytes.  Function summary() which creates a memory usage summary
9249         file with extension .mem.  Reports of overlaping stack and small stack
9250         size.  If the space for the stack is less than 16 bytes aslink trows a
9251         warning.
9252
9253         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9254         the 8051.  Option 'y' for memory summary output file.
9255
9256         Changes to sdcc (All the changes are marked with 'JCF'):
9257
9258         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9259
9260         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9261         overlaying area for it (uses RegBankUsed[4]).
9262
9263         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9264         bank zero as used by default.  By default aslink locates the stack
9265         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9266         the creation of the .mem file.  Delegates the allocation of data area
9267         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9268         the begining of the stack area to aslink.
9269
9270         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9271         glue() in SDCCglue.c creates an area for it.
9272
9273 2002-09-03  Borut Razem <borut.razem AT siol.net>
9274         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9275         sdcc/src/pic/glue.c:
9276         introduced atexit() handler for teporay files removal in case of
9277         errors, assertions, ...
9278
9279 2002-08-29  Borut Razem <borut.razem AT siol.net>
9280         * sdcc/support/cpp2/auto-host_vc_in.h:
9281         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9282         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9283         Maybe there is a similar problem with BORLANDC? It should be checked!
9284
9285         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9286         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9287         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9288         was not executed, and the compiler (cl) launched a warning:
9289         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9290
9291 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9292         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9293
9294 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9295         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9296
9297         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9298           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9299           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9300           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9301           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9302           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9303           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9304         - added Release configuration in VS projects
9305         - review of compiler an linker options
9306         - VC .exe files are generated in bin_vc directory, not to interfere
9307           with binaries generated from other projects (cygwin, mingw, bcc ...)
9308
9309         * sdcc/src/yacc.dsp: added
9310
9311         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9312         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9313         and insert the version number definitions from .version
9314
9315         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9316
9317         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9318         added - genarate auto-host.h using auto-host_vc_in.h as template
9319
9320         * sdcc/sdcc_vc.h,
9321         removed from CVS, generated automatically
9322
9323 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9324         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9325
9326 2002-08-11  Borut Razem <borut.razem AT siol.net>
9327         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9328
9329 2002-08-10  Borut Razem <borut.razem AT siol.net>
9330         * src/SDCCmain.c (main):
9331         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9332         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9333         The consequence was that some temporary files were not removed.
9334
9335         * src/SDCCglue.c:
9336         unification of code in functions tempfilename() and tempfile():
9337         function tempnam() is defined in Visual Studio 6.0 and .NET
9338
9339         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9340
9341         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9342           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9343         - removed compiler command line option /WX: Treats all warnings as errors
9344         - update a list of source files, included into the project
9345
9346         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9347           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9348         changed project type to Generic Project so that can be correcly converted to VS.NET project
9349
9350         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9351
9352         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9353
9354         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9355
9356         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9357         added return 0 statements after assert() to make compiler happy
9358
9359         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9360         added newline in the def file to keep MSC compiler satisfied
9361
9362         * sdcc/src/z80/gen.c:
9363         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9364           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9365         - solved MSC error in function aopDump()
9366
9367         * sdcc_vc.h: define PREFIX as "\\sdcc"
9368
9369 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9370         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9371
9372 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9373         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9374         - Rewrote the register banking algorithm.
9375         - Added pCode live-range analysis to registers (for now, only non-used and
9376         singly-used registers optimized away)
9377
9378         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9379
9380         * 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.
9381
9382 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9383         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9384
9385 2002-04-22  Michael Hope  <michaelh AT vroom>
9386
9387         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9388
9389         * configure.in (DD_COPT): Added include support required for gbdk.
9390
9391         * .version: Bumped version number just to increase it.
9392
9393         * src/SDCCmain.c: Added -nostdinc to the default options.
9394
9395 2002-04-15  Michael Hope  <michaelh AT vroom>
9396
9397         * device/lib/z80/printf.c (sprintf): Added.
9398
9399         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9400
9401         * src/z80/peeph.def: Added transpose redundent load rule.
9402
9403         * src/z80/main.c: Added force callee saves for jaune.
9404
9405         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9406
9407         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9408
9409 2002-03-28  Johan Knol  <johan AT balder>
9410
9411         * src/SDCCval.c: fixed bug #532436
9412
9413 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9414         * /src/port.h:
9415         Added "char *Processor" field to the port structure.
9416
9417         * /src/SDCCmain.c:
9418         Added -p option. Allows port dependent processor to be specified.
9419
9420         * all ports:
9421         Initialized the new field char *Processor field to NULL in all ports
9422
9423         * /src/pic/*:
9424         Compiler generated registers for interrupt context saving
9425         were not getting allocated.
9426
9427 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9428
9429         * /src/SDCCast.c:
9430         Fixed left shift. Will promote the left side of a left shift
9431         if a) left shifting more than size of operand or b) when assigned
9432         to something size > size of left side
9433
9434 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9435         * src/pic/*
9436         tons of changes. Register allocation has been
9437         rewritten. Added customization for the various PICs. Flow
9438         analysis is restructured. ...
9439
9440         * src/pic/device.h:
9441         Added
9442
9443         * src/pic/device.c:
9444         Added. device.c is a PIC port hack to accomodate variations
9445         in PIC devices.
9446
9447 2002-03-13  Michael Hope  <michaelh AT vroom>
9448
9449         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9450
9451 2002-03-04  johanknol  <johanknol AT manik>
9452
9453         * /src/SDCCval.c: fixed
9454
9455         const unsigned char arr[][2] = { { 0, 1 } };
9456         t18.c:1: error: Initializer element is not constant
9457
9458 2002-03-04  bela  <bela AT manik>
9459
9460         * /device/include/mcs51reg.h:
9461         ds89c420 register definition update
9462
9463 2002-03-03    <johan AT FRIJA>
9464
9465         * support/Util/SDCCerr.c: did something, but don't no why anymore
9466
9467         * support/regression/tests/bug-524691.c: made it a little less shy
9468
9469         * src/SDCCast.c (decorateType): fixed bug #524697
9470
9471         * src/SDCCast.c: made some lineno improvements
9472
9473         * src/SDCCval.c (getNelements): changed warning to error
9474
9475         * src/SDCCglue.c (printIvalArray): changed warning to error
9476
9477         * src/SDCCicode.c: fixed a warning for mingw
9478
9479         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9480
9481         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9482
9483 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9484
9485         * src/ds390/peeph.def:
9486         Added some more peephole rules
9487
9488         * src/ds390/gen.c: Various fixes & enhancements
9489
9490         * src/SDCClrange.c, src/SDCClrange.h:
9491         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9492
9493         * src/ds390/ralloc.c:
9494         various fixes & enhancements (ds390) specific
9495
9496         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9497         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9498         from rallocs.
9499
9500         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9501
9502 2002-03-02    <johan AT FRIJA>
9503
9504         * src/SDCCast.c (decorateType): fixed bug #524708
9505
9506         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9507
9508         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9509
9510 2002-03-01  Michael Hope  <michaelh AT vroom>
9511
9512         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9513
9514         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9515
9516 2002-03-01    <johan AT FRIJA>
9517
9518         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9519
9520         * src/SDCCast.c (decorateType): fixed bug #524209
9521
9522         * src/SDCCval.c (valNot): fixed bug #524195
9523
9524 2002-02-26    <johan AT balder>
9525
9526         * src/xa51/gen.c: fixed a warning
9527
9528         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9529
9530         * src/SDCCast.c (decorateType): fixed bug #522534
9531
9532 2002-02-23    <johan AT balder>
9533
9534         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9535
9536 2002-02-22    <johan AT balder>
9537
9538         * src/SDCCast.c: fixed bug #514865
9539
9540         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9541
9542 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9543
9544         * sdcc/src/SDCCloop.c:
9545         Previous fix was not good. basic blocks that have "break" or "return" are
9546         not really partof a loop , but live ranges used in these blocks should
9547         be live thru the entire loop, so set partOfLoop but don't add them to
9548         loop region
9549
9550 2002-02-21    <johan AT FRIJA>
9551
9552         * src/SDCCcse.c: fixed bug #514308
9553
9554 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9555
9556         * src/SDCCloop.c:
9557         Fixed BUG #519583. If a conditional block ended in a return/break
9558         statement inside a loop, it was not being considered part of the loop.
9559
9560         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9561
9562 2002-02-10  Karl Bongers <karl AT turbobit.com>
9563
9564         * debugger/*:
9565         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9566         with lots of comments and notes.
9567
9568         * device/examples/test2.c:
9569         Fix bug, "red" variable not being initialized(compiler complained).
9570
9571         * device/examples/Makefile, examples/test3.c:
9572         Add Makefile in device/examples folder, compiles test3.c
9573         for use as a multiple module SDCDB test case.
9574
9575         * sim/ucsim/cmd.src/cmdset.cc:
9576         Took out debug printfs in ucsim "next" command.
9577
9578         * sim/ucsim/xa.src:
9579         Karl and Johan start ucsim XA support.  Most dissassembly working,
9580         about 75% emulation done(plenty of work remaining).
9581
9582         * sim/ucsim/z80.src:
9583         Add Z80 support to ucsim, add test-ucz80 regression test,
9584         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9585         Notice z80 compiler fails on examples/test3.c/crc code.
9586
9587 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9588
9589         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9590         Added support for --parms-in-bank1
9591
9592         * src/ds390/peeph.def:
9593         added a few more peephole optimzations
9594
9595         * src/ds390/main.c:
9596         1) added __builtin_inp & __builtin_outp used to read in data of given length
9597            from a memory mapped port
9598         2) added __builtin_memcmp
9599         3) added __builtin_swapw swap bytes of a short
9600
9601         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9602         1) handle multiple send & receives from register bank1
9603         2) ralloc can now allocate DPTR1 to some liveRanges
9604
9605         * src/SDCCsymt.c, src/SDCCsymt.h:
9606         changes to handle multiple sends & receives
9607
9608         * src/SDCCptropt.h:
9609         added some pointer arithmetic optimization
9610
9611         * src/SDCCptropt.c:
9612         added some pointer arithmetic optimizations but not stable yet so not
9613         called from anywhere (will get this working shortly)
9614
9615         * src/SDCCopt.c: fixed for multiple sends & receives
9616
9617         * src/SDCCmain.c:
9618         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9619         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9620            set preprocessor defines (depending on options)
9621
9622         * src/SDCCicode.c, src/SDCCicode.h:
9623         changes made to handle multiple sends & receives
9624
9625         * src/SDCCglobl.h:
9626         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9627
9628         * src/SDCCcse.c, src/SDCCcse.h:
9629         added function findbackward def (to be used in upcoming optimization)
9630
9631         * src/SDCCcflow.c, src/SDCCcflow.h:
9632         added function returnAtEnd - to determine if a basic block terminates with
9633         a RETURN iCode
9634
9635         * src/SDCCast.c, src/SDCCast.h:
9636         added option parms-in-bank1
9637
9638         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9639         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9640         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9641         adjusted for --parms-in-bank1 option
9642
9643         * device/include/string.h:
9644         donot redefine "reentrant" keyword
9645
9646         * device/include/ds80c390.h: Added some more SFRs
9647
9648 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9649
9650         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9651
9652 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9653
9654         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9655
9656 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9657
9658         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9659
9660 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9661
9662         * Added --xram-movc option
9663
9664 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9665
9666         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9667
9668 2002-01-11  Johan Knol
9669
9670         * Added math lib of Jesus Calvino-Fraga
9671
9672 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9673
9674         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9675         * support/regression/Makefile: new target test-mcs51-stack-auto
9676         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9677
9678 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9679
9680         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9681
9682 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9683
9684         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9685
9686 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9687
9688         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9689
9690         * src/SDCCglue.h: add definition for printIvalChar()
9691
9692 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9693
9694         * src/SDCCast.c: fix #498138 by Johan
9695
9696         * src/SDCCglue.c: fix #498138 by Johan
9697
9698 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9699
9700         * support/regression/Makefile: fix clean
9701
9702         * support/regression/ports/ds390/support.c: fix transmission of last character
9703
9704 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9705
9706         * /sdcc/src/ds390/gen.c:
9707         a) improved computing address of stack variable
9708         b) took out some #if 0 code
9709         c) improved parmBytes adjustment
9710         d) improved genPlusIncr & genMinusIncr
9711         e) genCmp could generate bad code (when left assigned to DPTR)
9712         f) Fixed bug in hasInc
9713
9714         * /sdcc/src/ds390/ralloc.c:
9715         a) packRegsForSupport could mess up live information (Fixed)
9716         b) packRegsDPTRuse could be incorrect for left & right shift
9717
9718         * /sdcc/src/mcs51/ralloc.c:
9719         packRegsForSupport could mess up the live information (Fixed)
9720
9721         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9722
9723         * /sdcc/src/SDCCast.c:
9724         can reverse a loop even if function call is present as long
9725         as the loop control variable is local & is not passed as parameter
9726
9727 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9728
9729         * /sdcc/ChangeLog: *** empty log message ***
9730
9731         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9732         More builtin function additions for TININative
9733
9734         * /sdcc/src/ds390/ralloc.c:
9735         Had broken the regression testsuite
9736
9737         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9738
9739         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9740         Added funcattr hasStackParms will be set for reentrant functions when there
9741         are paramteres on the stack, this helps in minimizing frame pointer generation
9742         typeFromStr can handle function pointers now
9743
9744         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9745         *** empty log message ***
9746
9747 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9748
9749         * /src/ds390/gen.c, /src/ds390/main.c:
9750         More builtin function additions for TININative
9751
9752         * /src/ds390/ralloc.c:
9753         Had broken the regression testsuite
9754
9755         * /src/SDCCast.c: Fixed a bug in dumptree
9756
9757         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9758         Added funcattr hasStackParms will be set for reentrant functions when there
9759         are paramteres on the stack, this helps in minimizing frame pointer generation
9760         typeFromStr can handle function pointers now
9761
9762         * /doc/builtins.txt, /doc/TININative.txt:
9763         *** empty log message ***
9764
9765
9766 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9767
9768         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9769         ALPHA version for -mTININative
9770
9771         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9772         updated to reflect changes in the port structure
9773
9774         * /src/port.h:
9775         added function do_assemble (similar to do_link) if non-null this function
9776         will be called to do assembly (-mTININative) requires a multi command
9777         assembly
9778         added function genAssemblerEnd will be called to generate assembler Epilogue
9779
9780         * /src/SDCCsymt.c:
9781         added _JavaNative to debug info printing
9782
9783         * /src/SDCCmain.c: added option --tini-libid
9784         added port->do_assemble function (-mTININative) has a multi command assemble
9785
9786         * /src/SDCCglue.c: Disabled "constExpr" check
9787         added port->genAssemblerEnd function
9788
9789         * /src/SDCCglobl.h: Added option --tini-libid value
9790
9791         * /src/SDCCast.h:
9792         tookout optimizeCompare from the header (has no external references)
9793
9794         * /src/SDCCast.c: made one more function "static"
9795
9796 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9797
9798         * src/z80/mappings.i: Added z80asm support.
9799
9800         * src/z80/main.c: Added z80asm support on --asm=z80asm
9801
9802         * src/z80/gen.c: Fixed asm portability issues.
9803
9804         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9805
9806         * src/SDCCglue.c (printExterns): Added global/extern split.
9807
9808 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9809
9810         * support/regression/Makefile: added test for mcs51 model large
9811
9812         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9813
9814         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9815
9816 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9817
9818         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9819
9820 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9821
9822         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9823
9824         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9825
9826 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9827
9828         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9829
9830         * support/regression/tests/simplefloat.c: Port to mcs51.
9831
9832 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9833         * support/regression/tests/bug-485362.c: Added.
9834
9835         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9836
9837         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9838
9839         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9840
9841         * src/z80/gen.c (aopDump): Added a dump function.
9842
9843 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9844         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9845
9846         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9847
9848         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9849
9850         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9851
9852         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9853
9854         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9855
9856         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9857
9858         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9859
9860         * support/regression/ports/ds390/support.c: Use tinibios.
9861
9862         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9863
9864 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9865
9866         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9867         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9868
9869         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9870
9871         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9872
9873 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9874
9875         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9876
9877         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9878         (packRegsForIYUse): Created and optimised.
9879
9880 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9881
9882         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9883 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9884
9885         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9886
9887         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9888
9889         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9890
9891 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9892
9893         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9894
9895         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9896
9897 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9898
9899         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9900
9901         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9902
9903         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9904
9905 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9906
9907         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9908         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9909         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9910
9911         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9912
9913         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9914         (genNotFloat): Added.
9915         (genUminusFloat): Added.
9916
9917         * device/lib/z80/Makefile: Added floating pt stubs.
9918
9919         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9920
9921         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9922
9923         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9924
9925 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9926
9927         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9928
9929         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9930
9931         * sdcc/support/regression/Makefile: Add port ds390.
9932
9933         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9934
9935         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9936
9937         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9938
9939         * sdcc/support/regression/ports/ds390/support.c: Added.
9940
9941         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9942
9943         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9944
9945         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9946
9947 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9948
9949         * device/include/malloc.h: Added z80 and gbz80 support.
9950
9951         * device/lib/gbz80/heap.s: Added.
9952
9953         * device/lib/z80/heap.s: Added.
9954
9955         * device/lib/malloc.c: Added z80 and gbz80 support.
9956
9957         * support/regression/tests/malloc.c (testMalloc): Added.
9958
9959         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9960
9961         * support/regression/tests/bug-478094.c: Added.
9962
9963         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9964
9965 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9966
9967         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9968
9969         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9970
9971         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9972
9973         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9974
9975         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9976
9977 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9978
9979         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9980
9981 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9982
9983         * support/regression/tests/bug-477927.c: Added.
9984
9985         * src/z80/peeph.def: Added minor rules.
9986
9987         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9988
9989         * src/z80/peeph.def: Added jump optimisation modification.
9990
9991 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9992
9993         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9994
9995 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9996
9997         * support/regression/tests/funptrs.c: Added.
9998
9999 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10000
10001         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10002
10003 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10004
10005         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10006
10007         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10008
10009         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10010         (movLeft2ResultLong): Created.
10011
10012         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10013         (joinPushes): Added.  Joins two char pushes into a word push.
10014
10015 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10016
10017         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10018
10019         * support/makebin/Makefile (install): Added creation of dest dir.
10020
10021 2001-10-24 Karl Bongers <karl AT turbobit.com>
10022
10023         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10024
10025 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10026
10027         * src/z80/ralloc.c: Turned off faulty pack for one use.
10028
10029         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10030
10031         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10032
10033 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10034
10035         * support/regression/Makefile: Improved clean
10036
10037         * support/regression/ports/gbz80/spec.mk: Added clean
10038
10039         * support/regression/ports/host/spec.mk: Added clean
10040
10041         * support/regression/ports/z80/spec.mk: Added clean
10042
10043         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10044
10045         * support/regression/ports/mcs51/timeout.c: little improvements
10046
10047 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10048
10049         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10050
10051         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10052
10053         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10054
10055 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10056
10057         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10058
10059         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10060
10061 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10062         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10063
10064         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10065
10066         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10067
10068         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10069
10070         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10071
10072         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10073
10074         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10075
10076         * support/regression/tests/longor.c: Added.
10077
10078 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10079
10080         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10081
10082         * as/mcs51/aslink.h: define PATH_MAX
10083
10084         * as/mcs51/asm.h: define PATH_MAX
10085
10086         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10087
10088         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10089
10090         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10091
10092         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10093
10094         * src/SDCCglobl.h: define PATH_MAX
10095
10096         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10097
10098         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10099
10100 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10101
10102         * src/z80/gen.c (gencjneshort): Fixed
10103
10104         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10105
10106 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10107
10108         * support/regression/tests/bug-469671.c: Added.
10109
10110         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10111
10112 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10113
10114         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10115
10116         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10117
10118 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10119
10120         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10121
10122         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10123
10124         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10125
10126         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10127
10128         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10129
10130         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10131
10132         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10133
10134 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10135
10136         * 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.
10137
10138         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10139
10140         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10141
10142 2001-10-07    <johan AT FRIJA>
10143
10144         * device/lib/gets.c (gets): fixed the return value.
10145
10146 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10147         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10148
10149         * 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.
10150
10151         * 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.
10152
10153         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10154
10155         * src/pic/gen.c: Removed Safe_strdup.
10156
10157         * configure.in: Added option to enable libgc support.
10158
10159         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10160         (bitVectUnion): Optimised.
10161         (bitVectIntersect): Optimised.
10162         (bitVectBitsInCommon): Optimised.
10163         (bitVectCplAnd): Optimised.
10164
10165         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10166
10167 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10168
10169         * src/SDCCmain.c: distinguish between assembler debug and plain options
10170
10171         * src/avr/main.c:   remove standard assembler options
10172
10173         * src/ds390/main.c: remove standard assembler options
10174
10175         * src/mcs51/main.c: remove standard assembler options
10176
10177         * src/port.h: removed "PENDING" comment
10178
10179 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10180
10181         * src/device/lib/_mulint.c  : new, with assember functions
10182
10183         * src/device/lib/_mullong.c : new, with assember functions
10184
10185         * src/device/lib/_divuint.c : with assember functions
10186
10187         * src/device/lib/_divsint.c : with assember functions
10188
10189         * src/device/lib/_divulong.c: with assember functions
10190
10191         * src/device/lib/_divslong.c: with assember functions
10192
10193         * src/device/lib/_moduint.c : with assember functions
10194
10195         * src/device/lib/_modsint.c : with assember functions
10196
10197         * src/device/lib/_modulong.c: with assember functions
10198
10199         * src/device/lib/_modslong.c: with assember functions
10200
10201         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10202
10203         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10204
10205         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10206                                       replaced _mululong.c and _mulslong.c by _mullong.c
10207
10208 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10209
10210         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10211
10212 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10213
10214         * src/SDCCglue.c: test, if win32api is available for MINGW
10215
10216 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10217
10218         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10219         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10220         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10221         * support/regression/ports/host/spec.mk: removed GENERIC
10222         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10223         * support/regression/ports/z80/spec.mk: removed GENERIC
10224
10225 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10226
10227         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10228
10229         * support/regression/tests/bug-467035.c: Created.
10230
10231 2001-10-01    <johan AT FRIJA>
10232
10233         * src/SDCC.y: fixed bug #466586 part 1
10234
10235 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10236
10237         * SDCCicode.c: z80 has no generic pointers
10238         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10239
10240 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10241
10242         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10243
10244 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10245
10246         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10247
10248         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10249
10250 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10251
10252         * configure.in: Fixed up so that ucsim is only configured once.
10253
10254         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10255
10256         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10257         (getPathDifference): As above.
10258
10259         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10260
10261         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10262
10263 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10264         * .version: Updated to 2.3.1
10265
10266         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10267         Added copyright header.
10268
10269         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10270         (assemble): Added support for macro based assembler commands.
10271         (linkEdit): Added support for macro based linker commands.
10272         (preProcess): Changed the pre-processor to use macros.
10273         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10274         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10275
10276         * device/lib/z80/crt0.s: Added module name for debugging.
10277
10278 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10279
10280         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10281
10282         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10283
10284         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10285
10286         * src/Makefile.in: Added SDCCmacro and SDCCutil
10287
10288 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10289
10290         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10291
10292 2001-09-16    <johan AT FRIJA>
10293
10294         * 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.
10295
10296 2001-09-15    <johan AT FRIJA>
10297
10298         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10299         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10300
10301 2001-09-11    <johan AT FRIJA>
10302
10303         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10304
10305 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10306
10307         * support/regression/tests/bug-460444.c: Added test case.
10308
10309         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10310         (genCast): Added justification for all of the asserts.
10311
10312 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10313
10314         * support/regression/support.c: _xdata replaced by xdata
10315
10316         * support/regression/spec.mk: removed _generic
10317
10318 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10319
10320         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10321
10322         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10323         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10324
10325         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10326
10327         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10328
10329         * support/regression/tests/bug-460010.c: Added test case.
10330
10331         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10332
10333 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10334
10335         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10336
10337         * support/regression/testfwk.c: removed workaround for bug #436344
10338
10339         * support/regression/tests/bp.c: use less memory with mcs51
10340
10341         * support/regression/tests/bug-441448.c: use less memory
10342
10343         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10344
10345         * support/regression/collate-results.py: typo
10346
10347 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10348
10349         * support/regression/tests/fetchoverlap.c: Added new test case.
10350
10351         * support/regression/tests/bp.c: Added new test case.
10352
10353         * support/regression/tests/bug-448984.c: Added new test case.
10354
10355         * support/regression/tests/pow2shifts.c: Added new test case.
10356
10357         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10358         (genlshTwo): Fixed right shift for count > 8.
10359
10360         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10361
10362 2001-09-08    <johan AT FRIJA>
10363
10364         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10365
10366 2001-09-07    <johan AT FRIJA>
10367
10368         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10369
10370         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10371
10372 2001-09-06    <johan AT FRIJA>
10373
10374         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10375         * bernhard noted me at this: "() equals to (void)" (1.38)
10376
10377 2001-09-05    <johan AT FRIJA>
10378
10379         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10380
10381 2001-09-04    <johan AT FRIJA>
10382
10383         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10384
10385
10386 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10387
10388         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10389
10390 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10391
10392         * link/z80/aslink.h: Fixed path for PATH_MAX
10393
10394 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10395
10396         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10397
10398         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10399
10400         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10401
10402         * 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.
10403
10404 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10405
10406         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10407         (genCmp): Fixed up genCmp for the GB with longs.
10408
10409         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10410
10411         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10412
10413         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10414
10415         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10416
10417 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10418
10419         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10420
10421 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10422
10423         * 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.
10424
10425         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10426
10427 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10428
10429         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10430
10431         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10432
10433 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10434
10435   * sim/ucsim/configure:    little improvement of Cygwin-detection
10436   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10437   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10438   * support/regression/tests/bug-221100.c: small changes for mcs51
10439   * support/regression/tests/bug-221168.c: small changes for mcs51
10440   * support/regression/tests/bug-227710.c: small changes for mcs51
10441   * support/regression/tests/staticinit.c: small changes for mcs51
10442   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10443   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10444   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10445
10446 $Revision$