* src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array offset if possible
[fw/sdcc] / ChangeLog
1 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
4         offset if possible
5         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
6
7 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
10         inifinitely recurseable, added static   
11         * support/regression/tests/bug-1408066.c: added
12
13 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
14
15         * src/SDCCicode.h,
16         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
17         renamed, added possibility to create "postLoopLbl"-labels
18         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
19         newiTempLoopHeaderLabel
20         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
21         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
22         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
23         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
24         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
25         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
26         (basicInduction): fixed bug #136564, made static,
27         (loopInduction): changed parameter of basicInduction, made static,
28         (addPostLoopBlock): added
29         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
30         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
31         findLoopEndSeq
32         * support/regression/tests/bug-136564.c: added
33         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
34         --std-sdcc99 to LIBSDCCFLAGS
35
36 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
37
38         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
39         while loop
40         * support/regression/tests/bug-1406131.c: added
41
42 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
43
44         * src/SDCCast.c (decorateType): fix promotion of unary minus
45         * src/SDCCsymt.c (computeType): beautified
46         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
47         (valUnaryPM, valComplement): fix sign and promotion,
48         (valNot): ANSI: result type is int (SDCC: unsigned char)
49         * support/regression/tests/uminus.c: speedup by removing superflous
50         test case 'int'
51         * support/regression/tests/onebyte.c: added promotion and signedness
52         tests for unary minus
53         * support/regressions/tests/bug-477927.c: disable warning about
54         uninitialized variables
55         * support/regression/tests/not.c: added
56
57 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
58
59         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
60         * src/mcs51/gen.c (gen51Code): show final register usage after
61         fillGaps in asm with --i-code-in-asm
62         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
63         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
64         incUsed, rliveClear, adjustIChain): made static,
65         (setFromRange): excluded because it's unused,
66         (findPrevUseSym, markWholeLoop): added,
67         (findPrevUse): rewritten; fixes bug 895992; now a complete search
68         through all branches of predecessors enables sdcc to emit the warning
69         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
70         (rlivePoint): made static, added parameter emitWarnings which is only
71         true during the first run out of two,
72         (findRecursiveSucc, findRecursivePred): removed,
73         (computeLiveRanges): made static, added parameter emitWarnings,
74         (dumpIcRlive): added for debugging only
75         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
76         removed prototype of setFromRange()
77         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
78         in call of computeLiveRanges()
79         * support/regression/tests/bug-895992.c: added
80         * support/regression/tests/bug-971834.c: added
81         * support/valdiag/tests/bug-895992.c: added
82         * support/valdiag/tests/bug-971834.c: added
83
84 2005-12-18 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
87           (genUnpackBits): improved code for direct operands,
88           (genPackBits): improved code for literal assignment to bitfields
89             and for direct destination operands (no FSR indirection),
90             prevented redundant AND, fixes #1362800,
91           (AccLsh): added parameter to disable masking of the result
92         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
93           skip instructions with side-effects (like incfsz),
94           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
95         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
96         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
97           fixes #1375263
98
99 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
100
101         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
102         volatile variables as spill location
103
104 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
105
106         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
107         replacing literals
108         * support/regression/tests/bug-1376320.c: added
109
110 2005-12-08 Raphael Neider <rneider AT web.de>
111
112         * src/pic/device.c: renamed is_shared to pic14_is_shared
113         * src/pic/gen.c (genIfx): re-enabled handling of sbits
114         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
115           (is_valid_identifier): added for above workaround
116
117 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
118
119         * device/lib/Makefile.in: fixed to enable port-specific-objects
120         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
121           char, thanks Hubert Sack
122         * doc/sdccman.lyx: documented --xstack-loc,
123           elaborated a bit more on interrupts and pitfalls,
124           removed "setjmp/longjmp unsupported",
125           documented some unsupported C99 features
126         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
127         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
128           if, thanks Hubert Sack
129         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
130         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
131           make make_library
132         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
133           regression tests can report resource usage (rfe 700441)
134         * support/regression/collate-results.py: report resource usage
135         * support/regression/ports/ds390/spec.mk,
136         * support/regression/ports/hc08/spec.mk,
137         * support/regression/ports/mcs51/spec.mk,
138         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
139         * support/regression/ports/ds390/uCsim.cmd,
140         * support/regression/ports/hc08/uCsim.cmd,
141         * support/regression/ports/mcs51/uCsim.cmd,
142         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
143         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
144           library, use the default one
145         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
146           building the library
147
148 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
149
150         * config.dsp: added dependency on .version and configure_vc.awk
151         * device/include/setjmp.h: updated for --stack-auto and --xstack
152         * device/include/mcs51/at89c51snd1c.h: corrected line endings
153         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
154         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
155         * device/lib/libsdcc.lib: added _setjmp
156         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
157           (decorateType): fixed bug 1372851,
158           (optimizeGetHbit): fixed warning
159         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
160           array initialisation
161         * support/regression/tests/bug1057979.c: added test for bug 1358192
162         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
163
164 2005-12-03 Borut Razem <borut.razem AT siol.net>
165
166         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
167           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
168
169 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
170
171         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
172         createIval): implement symbol independant "flexible array member",
173         (createIvalCharPtr): implemented flexible array initialisation with a
174         string
175         * src/SDCCsymt.c (copyStruct): removed,
176         (getSize): fixed misleading comment,
177         (getAllocSize): removed, the additional allocation size is now in
178         sym->flexArrayLength,
179         (checkStructFlexArray): new, syntax checks for flexible array members,
180         (compStructSize): added syntax checks for "flexible array members"
181         (copyStruct): removed,
182         (copyLinkChain): removed inefficient fix for bug 770487
183         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
184         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
185         symbol->flexArrayLength
186         * src/SDCCerr.c,
187         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
188         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
189         * support/regression/tests/structflexarray.c: added
190         * support/valdiag/tests/structflexiblearray.c: added
191
192 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
193
194         * src/SDCCast.c (decorateType): fixed bug 1368489
195         * support/Util/SDCCerr.c,
196         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
197
198 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
199
200         * device/include/mcs51/at89c51snd1c.h: added file submitted by
201           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
202
203 2005-11-27 Borut Razem <borut.razem AT siol.net>
204
205         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
206           support/cpp2/mkdeps.h: added command line option
207           -obj-ext=<extension> to SDCPP to define object file externion, used
208           for generation of make dependencies (-M)
209         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
210
211 2005-11-26 Borut Razem <borut.razem AT siol.net>
212
213         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
214           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
215           added pic and pic16 libraries
216
217 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
218
219         * device/include/float.h: Corrected typo in prototype of __fsgt
220
221 2005-11-25 Borut Razem <borut.razem AT siol.net>
222
223         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
224           added creation of model-mcs51-stack-auto libraries
225
226 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
227
228         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
229         and fields-list too
230         * src/SDCCast.c (createIvalArray): removed obsolete comment
231
232 2005-11-24 Borut Razem <borut.razem AT siol.net>
233
234         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
235           added missing device/lib/mcs51/crt*.asm sources
236
237 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
238
239         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
240
241 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
242
243         * device/lib/_fs2schar.c,
244         * device/lib/_fs2sint.c,
245         * device/lib/_fs2slong.c: optimized inline asm
246
247 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
248
249         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
250           Better handling of floats between -1.0 and 0.0.
251
252 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
253
254         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
255           (the missing "if"s prohibited removal of redundant labels)
256
257 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
258
259         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
260           Properly convert floats between -1.0 and 0.0 to long, int, and char
261           types (max integer value of negative floats tends to zero).
262         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
263           Removed changes made so to work properly with floats between
264           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
265           and _fs2char.c
266
267 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
268
269         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
270         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
271         (genCast) cosmetic change
272         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
273         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
274         from mcs51
275         * support/regression/tests/bitfields (testSignedBitfields): added
276
277 2005-11-18 Borut Razem <borut.razem AT siol.net>
278
279         * sdcc/device/lib/Makefile.in: remove all unnecessary files
280         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
281           introduced SILENT option to make building of pic16 libraries less
282
283 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
284
285         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
286           Now they work properly with floats between -1.0 and 0.0
287         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
288
289 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
290
291         * src/SDCCicode.c (printOperand): added missing else
292
293 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
294
295         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
296         reformatted for better readability
297         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
298         signed bitfields
299
300 2005-11-17 Borut Razem <borut.razem AT siol.net>
301
302         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
303           introduced SILENT option to make building of pic16 libraries less
304           verbose - used for nightly snapshot build
305         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
306           available on Win32 platforms.
307         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
308           medium, large, pic and pic16
309
310 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
311
312         * device/lib/printf_large.c: Temporary patch for bug 1358192:
313           printf("%f"...) sets fraction to zero.
314
315 2005-11-16 Raphael Neider <rneider AT web.de>
316
317         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
318           fixes #1357221
319         * src/pic/gen.c (genIfx): implemented for CARRY bit
320         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
321           to generic pointers, fixes #1357332,
322           (pic16_movLit2f): NEW,
323           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
324
325 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
326
327         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
328
329 2005-11-11 Raphael Neider <rneider AT web.de>
330
331         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
332         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
333           compute pointer's type from operand,
334           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
335           improved single bit reads, fixes bug #1353379
336
337 2005-11-09 Borut Razem <borut.razem AT siol.net>
338
339         * support/scripts/sdcc.nsi: added lib/pic to the package
340
341 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
342
343         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
344
345 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
346
347         * support/regression/tests/bug1348008.c: added
348         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
349         * support/regression/tests/bug1337835.c: updated comment
350
351 2005-11-06 Borut Razem <borut.razem AT siol.net>
352
353         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
354           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
355           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
356           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
357           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
358           dynamic construction of cl_error_class and derivates - 2.nd try
359
360 2005-11-05 Borut Razem <borut.razem AT siol.net>
361
362         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
363           bug, which caused Bus Errors on sparc solaris
364
365 2005-11-04 Borut Razem <borut.razem AT siol.net>
366
367         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
368           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
369           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
370           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
371           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
372           and derivates to resolve the initialization problem on OSX
373
374 2005-11-02 Borut Razem <borut.razem AT siol.net>
375
376         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
377           corrected typo - #include <winsock2.h>
378
379 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
380
381         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
382           (_asxxxx_mapping): added org directive for future enhancements
383
384 2005-11-01 Borut Razem <borut.razem AT siol.net>
385
386         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
387           enabled sockets on WIN32
388         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
389
390 2005-10-31 Borut Razem <borut.razem AT siol.net>
391
392         * support/regression/generate-cases.py: escape backslashes in {testcase}:
393           WIN32 backslash path delimiters should be escaped when used in C strings
394         * support/regression/tests/bitfields.c: exclude failing assertions for
395           __CYGWIN32__ and __MINGW32__ hosts
396
397 2005-10-30 Borut Razem <borut.razem AT siol.net>
398
399         * src/SDCCutil.c: corrected double comparison typo
400
401 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
402
403         * device/lib/medium/Makefile: added for new memory model medium
404         * device/include/asm/mcs51/features.h: updated for medium/pdata
405         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
406           added Multiply & Accumulate sbit's and MAC0_PAGE define
407         * device/include/mcs51/c8051f300.h: added sfr16 definitions
408         * device/include/mcs51/c8051f310.h: added sfr16 definitions
409         * device/lib/_mullong.c: update for medium model
410         * device/lib/incl.mk: added medium model
411         * doc/sdccman.lyx: documented medium model
412         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
413         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
414         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
415         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
416           (allocParms): set SCLS and OCLS to pdata for medium model
417         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
418           for pdata,
419           (powof2): return <0 if not power of 2
420         * src/avr/gen.c (genBitWise): use updated powof2
421         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
422           (shiftR2Left2Result): small optimization in setup, save acc when storing,
423           (shiftLLeftOrResult): use B if necessary
424         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
425         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
426         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
427         * support/regression/Makefile.in: added test-mcs51-medium
428         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
429
430 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
431
432         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
433         specifier unsigned
434         * device/lib/time.c (mktime): fixed bug 1334315
435
436 2005-10-28 Raphael Neider <rneider AT web.de>
437
438         * device/include/pic/p16f_common.inc: added common declarations
439         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
440
441 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
442
443         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
444           (aopPutUsesAcc): added to predict accumulator use,
445           (assignResultValue): save acc if necessary,
446           (genMinusDec): store result if indirectly addressed,
447           (genDivOneByte):  save acc if necessary,
448           (movLeft2Result): bugfix if left already in acc,
449           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
450             attention to accumulator use (esp. pdata),
451           (genReceive): receive pdata correctly
452         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
453         * src/SDCCicode.h: added isOperandInPagedSpace prototype
454
455 2005-10-27 Raphael Neider <rneider AT web.de>
456
457         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
458
459 2005-10-27 Raphael Neider <rneider AT web.de>
460
461         * .version: changed version to 2.5.4
462         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
463         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
464           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
465             arithmetics support routines
466         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
467         * device/lib/Makefile.in: also create installdir for pic
468
469         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
470           pic14 port as well
471         * src/pic/device.c (dump_sfr): rewritten to delegate register
472           placement to the linker (use `extern sym' rather than sym EQU addr),
473           (validAddress): fixed to check last specified address
474         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
475           (popGetLit): truncate literal value to 8 bit,
476           (popGet): moved assert to more appropriate place
477           (popGetExternal): create pCode operand from and mark the according
478             symbol as being `extern'
479           (popGetAddr): added sanity check on immediate's offset, provide
480             GPOINTER tag on demand
481           (aopPut): fixed for immediates,
482           (mov2w_op): move operand's address or contents to WREG (depending on
483             operand type), safer variant of mov2w,
484           (movwf,call_libraryfunc): NEW, handy abbreviations,
485           (get_argument_pcop,get_return_val_pcop,pass_argument,
486           get_returnvalue): interface for accessing function parameters and
487             return values,
488           (assignResultValuei,genRet): use new parameter/return value interface
489           (pic14_getDataSize): back to old version handling generic pointers,
490           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
491             provided implementation and/or fixed old one,
492           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
493             calls, removed legacy 8051 reference code
494           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
495           (loadSignToC): NEW, move the operands sign bit to CARRY,
496           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
497             genRightShiftSigned, accepts negative shift counts,
498           (setup_fsr): load FSR and adjust IRP (indirect memory access),
499           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
500             generic pointers, __data pointers and __code pointers,
501           (genUnpackBits,genPackBits): rewritten to work with generic pointers
502             and signed bitfields, limit bitfields to 8 bit,
503           (genDataPointerGet): fixed number of bytes read,
504           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
505           (genPointerGet,genPointerSet): fixed handling of __code pointers,
506             pointers to constant data are no longer assumed to point to __code
507             space, removed invalid pointer types,
508           (bitpatternFromVal): retrieve the PICs representation of an integer
509             or float literal,
510           (genDataPointerSet): fixed assigning to po_immediate operands,
511           (genGenPointerSet): implemented as library call,
512           (genIfx): fixed incorrect condition,
513           (genAddrOf): limit generic pointers' addresses to 2 bytes,
514             provide GPOINTER tag according to destination's storage class,
515           (genCast): added code to handle casting to generic pointers, added
516             sign-/zero extension of the result
517           (aop_isLitLike,op_isLitLike): fixed handling of immediates
518         * src/pic/gen.h: added macros to access IRP bit in STATUS register
519         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
520           extend the result
521         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
522           address/register resides in the shared banks
523           (emitSymbolToFile): improved to handle global and `pinned' symbols,
524             put all variables into separate sections (have the linker arrange
525             them)
526           (picglue): put init code and interrupt handlers in separate sections
527         * src/pic/main.c: added port specific options table, modified to PORT
528           structure to make GPOINTERs 3 byte, added pic14_options
529           (_pic14_do_link): private linking routine (update paths to libraries,
530             add libsdcc.lib by default)
531         * src/pic/main.h: declare pic14_options
532         * src/pic/pcode.c: fixed instructions i/o relations,
533           (RegCond): reverted to correct version,
534           (newpCodeOpLit): truncate literals to 8 bit,
535           (genericPrint): added debug output,
536           (getRegFromInstruction): fixed for various operand types, simplified
537           (BuildFlow): fixed broken handling of isntructions with labels
538           (LinkFlow): start at last instruction in flow (skip trailing comments),
539             pass the flow on to the next instruction after CALL
540           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
541           (insertPCodeInstruction): fixed inserting after a skip instruction,
542           (DoBankSelect): fixed for labeled instructions
543           (OptimizepBlock): honor --nopeep switch
544           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
545         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
546         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
547           (pCodeOptime2pCodes): allow disabling this optimization via
548             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
549             but is still buggy), started implementation of a dataflow based
550             pCode optimization (CSE + dead code elimination)
551           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
552         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
553           names are independant of the stack location and therefore portable across
554           devices
555
556 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
557
558         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
559           (selectSpil): fixed bug 1337835 by not spilling bit variables
560         * support/regression/tests/bug1337835.c: added test for this bug
561         * src/mcs51/peeph.def: restart after rule 3.c,
562           addded rules 263.x to optimize loading constants
563
564 2005-10-26 Raphael Neider <rneider AT web.de>
565
566         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
567         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
568           (genAssign): emit warning when casting literals to generic pointer
569             type, also applies when taking the address of a fixed variable,
570           (genCast): improved casting to generic pointers
571         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
572           extern variables, added verbose error message
573         * device/include/pic16/{string.h,errno.h}: added #pragma library c
574
575 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
576
577         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
578         carry must be complemented too
579         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
580         could be emitted by genMinus
581         * src/SDCCval.c (constVal): fixed bug 1305065
582
583 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
584
585         * src/SDCCast.c (addCast): added promotion for bit variables
586         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
587         promotion casts + optimisation
588         (optimizeGetWord): fix warning 'i' might be used uninitialized
589         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
590         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
591
592 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
593
594         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
595         all chars are promoted to int; promotion should be handled in SDCCast.c
596
597 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
598
599         * device/lib/_strcmp.c: Fixed bug 1326457
600
601 2005-10-11 Raphael Neider <rneider AT web.de>
602
603         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
604         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
605
606 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
609         * support/regression/tests/sfr16.c: added test for the sfr32 bug
610
611 2005-10-04 Raphael Neider <rneider AT web.de>
612
613         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
614           device/lib/pic16/pics.all: added pic18f1320
615         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
616
617 2005-09-30 Raphael Neider <rneider AT web.de>
618
619         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
620         * src/pic16/devices.inc: NEW, provides device descriptions
621         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
622
623 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
624
625         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
626           GETHBIT
627
628 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
629
630         * doc/sdccman.lyx: updated Highest Order Bit documentation,
631           documented Any Order Bit, Higher Order Byte and Higher Order Word
632         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
633         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
634           (optimizeGetAbit): new, to get any bit, not only the high bit,
635           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
636           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
637           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
638           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
639             RIGHT_OP: also try GETBYTE, GETWORD optimization,
640             GETABIT, GETBYTE, GETWORD: decorate them,
641           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
642           (ast_print): added GETABIT, GETBYTE, GETWORD
643         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
644         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
645           (geniCodeBinary): new generic binary icode,
646           (ast2iCode): added GETABIT, GETBYTE, GETWORD
647         * src/port.h: updated comment for PORT.hasExtBitOp
648         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
649           (genGetByte): new, to get a single byte,
650           (genGetWord): new, to get a word from a long,
651           (gen51Code): added GETABIT, GETBYTE, GETWORD
652         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
653
654 2005-09-23 Raphael Neider <rneider AT web.de>
655
656         * configure.in, configure: have device/lib/pic configured
657         * device/lib/Makefile.in: added model-pic14
658         * device/lib/clean.mk: added pic/ to clean rule
659         * device/lib/pic: added rudimentary pic14 library providing support
660           functions for multiplication/division/generic pointer access
661         * src/SDCCopt.c (convilong): mark support functions as extern
662           for pic14 port as well
663         * src/pic/gen.c (genMult): added assertions,
664           (genpic14Code): emit warning on unhandled iCodes
665         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
666         * src/pic/pcode.c (pCodeOpCopy),
667         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
668           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
669           SFR_REGISTER}), made safe for future extensions
670         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
671           instructions even if preceeded by SKIP instructions (also remove
672           them); removed unused code
673         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
674           prevents leaving parts of the structure uninitialized after copying
675
676 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
677
678         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
679           ago by me
680         * support/regression/tests/addsub.c: added test for the bug
681
682 2005-09-21 Raphael Neider <rneider AT web.de>
683
684         * device/include/pic16/pic18f1220.h,
685           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
686         * device/lib/pic16/Makefile.rules: added missing opening paren
687         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
688           are provided in genutils.c,
689           (genUminusFloat,genUminus,genCmpEq): added asserts on different
690           operand/result sizes,
691           (genCmp): assert on NULL pointers first, then check deref'ed values
692         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
693           result size
694
695 2005-09-18 Raphael Neider <rneider AT web.de>
696
697         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
698           as these are now unused,
699           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
700         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
701           local, avoids uninitialized pointer dereference on r->name
702         * src/pic16/ralloc.c (newReg): fixed indentation
703
704 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
705
706         * src/SDCCval.c (constVal): fixed bug 730366
707         * support/Util/SDCCerr.c,
708         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
709
710 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
711
712         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
713
714 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
715
716         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
717
718 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
719
720         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
721           (hex2dec): made hex_digit unsigned char, removed ascii dependance
722         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
723           (hex2dec): made hex_digit unsigned char, removed ascii dependance
724         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
725         * packihx/packihx.c (hexDigit): made c unsigned char
726         * as/mcs51/lklibr.c (fndsym),
727         * link/z80/lkgb.c (gb),
728         * link/z80/lklibr.c (fndsym),
729         * link/z80/lkrloc.c (relr),
730         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
731         * src/SDCC.lex (checkCurrFile, process_pragma),
732         * src/SDCCglue.c (spacesToUnderscores),
733         * src/SDCCmain.c (setParseWithComma, processFile),
734         * src/asm.c (tvsprintf, printCLine),
735         * src/avr/gen.c (emitcode, aopPut),
736         * src/ds390/gen.c (emitcode),
737         * src/hc08/gen.c (emitcode, emitinline),
738         * src/mcs51/gen.c (emitcode, genInline),
739         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
740           tokenizeLineNode),
741         * src/pic/ralloc.c (debugLog),
742         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
743           tokenizeLineNode),
744         * src/pic16/ralloc.c (debugLog),
745         * src/z80/main.c (_process_pragma):
746            made all ctype.h function calls safe
747         * src/SDCCopt.c: include math.h for fabs
748         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
749           and used them throughout the code to make ctype.h function calls safe
750         * src/ds390/main.c (asmLineNodeFromLineNode),
751         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
752         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
753            unsigned char*
754         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
755           (newpCodeAsmDir): made ctype.h function calls safe
756         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
757           pic16_emitcode):  made lbp unsigned char*
758         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
759           (pic16_newpCodeAsmDir): made ctype.h function calls safe
760         * src/xa51/gen.c (emitcode),
761         * src/z80/gen.c (_emit2): made lbp unsigned char*
762         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
763            char*
764
765 2005-09-05 Raphael Neider <rneider AT web.de>
766
767         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
768           access bank splitpoint
769
770 2005-09-05 Raphael Neider <rneider AT web.de>
771
772         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
773
774 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
775
776         * .version: changed to version 2.5.3
777         * doc/sdccman.lyx: changed version to 2.5.3,
778           documented --codeseg and --constseg and pragma codeseg and constseg,
779           documented bit parameters (reentrant) and bit returning
780         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
781            currFunc->recvSize, but is this ok for all ports?
782           (ast2iCode): result of ~ on unsigned char must be cast to int for
783            bool to work
784         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
785           function pointers in bit space
786         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
787           (processFuncArgs): call port.reg_parm() with reentrancy info
788         * src/port.h,
789         * src/avr/main.c,
790         * src/ds390/main.c,
791         * src/hc08/main.c,
792         * src/pic/main.c,
793         * src/pic16/main.c,
794         * src/xa51/main.c,
795         * src/z80/main.c: port.reg_parm prototype extended with
796           "bool reentrant" parameter
797         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
798           options.stackAuto for allocating bit register parameters
799         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
800           (genSend): set BitBankUsed if it is,
801           (selectRegBank): factored out of genCall for use in genPcall,
802           (genCall): removed redundant dtype assignmen, use selectRegBank,
803           (genPcall): handle returning in Carry properly, save in F0 if needed,
804           (genReceive): handle bit register parameters
805         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
806           (mcs51_assignRegisters): enable bit registers for all reentrant
807            functions and don't set BitBankUsed unconditionally
808         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
809         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
810         * support/regression/tests/funptrs.c: added tests for BOOL and for return
811
812 2005-08-27 Borut Razem <borut.razem AT siol.net>
813
814         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
815         ppc-osx (Darwin) does not support -u option. It seems that it is
816         supported only on Linux - GNU cp
817
818 2005-08-25 Borut Razem <borut.razem AT siol.net>
819
820         * sim/ucsim/gui.src/serio.src/Makefile.in,
821           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
822           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
823           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
824           install and strip, since the strip at /usr/ccs/bin should be used
825           on solaris
826
827 2005-08-24 Borut Razem <borut.razem AT siol.net>
828
829         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
830
831 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
832
833         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
834         ffffffffu
835
836 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
837
838         * as/mcs51/aslink.h: completed lkrloc.c prototypes
839         * as/mcs51/lkmain.c (link_main): fixed warning
840         * device/include/stdbool.h: ds390 has no advanced bit support yet
841         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
842         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
843         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
844           and updated their macros
845         * src/SDCCval.c (constVal): updated comment for renamed b_long
846
847 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
848
849         * as/mcs51/asdata.c: changed ctype['['] to BINOP
850         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
851           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
852           (oprio): set priority for '['
853         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
854            and adb_24_bit
855         * as/mcs51/asm.h: added defines R_BIT and S_BIT
856         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
857         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
858         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
859           added overlayable BIT_BANK area
860         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
861           (summary2): explain 'T' in legenda
862         * as/mcs51/lkrloc.c: replaced old K&R style,
863           (relr): added R_BIT processing,
864           (errmsg): added "Bit-addressable relocation error",
865           (adb_bit): added for converting from byte- to bit-addressable space,
866           (adb_24_bit): added for converting from byte- to bit-addressable space
867         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
868            used in reentrant functions now even as return value
869         * device/lib/_gptrput.c (_gptrput): removed obsolete code
870         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
871           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
872         * src/SDCCglobl.h: added indicator BitBankUsed
873         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
874            the bit registers b0-b7
875         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
876           (geniCodeCast): fixed bug 1263853,
877           (geniCodeLogicAndOr): put result in bool or char,
878           (geniCodeReceive): added parameter func for accessing the return type,
879           (geniCodeFunctionBody): pass func to geniCodeReceive
880         * src/SDCCmain.c: added indicator BitBankUsed
881         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
882         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
883           (checkSClass): don't put automatic bool/bit on stack,
884           (checkFunction): removed check on function cannot return bit
885         * src/SDCCsymt.h: added newBoolLink prototype
886         * src/mcs51/gen.c (rb1regs): added bit registers,
887           (movc): created for assigning to carry,
888           (pushReg, popReg): created for pushing registers,
889           (sameRegs): check both AOP_REG and AOP_CRY types,
890           (aopOp): handle bit registers,
891           (aopPut): optimization no self-assign,
892           (saveRegisters): push reg->base (bits) only once for bit registers,
893            and use pushReg,
894           (unsaveRegisters): pop reg->base only once and use popReg,
895           (assignResultValue): added parameter func and return in carry for bits,
896           (genIpush): optimization no reload in A if not changed,
897           (genSend): bit parameters in reentrant functions are passed in bit
898            registers by first assigning to bits in B, then save registers and
899            copy B to bits,
900           (genCall): handle returning in Carry properly, save it in F0 if needed,
901           (genPcall): updated assignResultValue call, this is not safe yet for bit
902            returning function !!!
903           (genFunction): don't generate equ's for bit registers and use pushReg,
904           (genEndFunction): take care of bit returning functions and use popReg,
905           (genRet): return bit in Carry,
906           (genIfx): optimize bit registers and other directly addressable bits,
907           (genReceive): updated assignResultValue call
908         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
909           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
910            registers when using stack-auto
911         * src/mcs51/ralloc.c (_G): added allBitregs,
912           (regs8051): added the bit registers,
913           (createStackSpil): use macro IS_BIT,
914           (getRegBit): added to allocate a bit register, else spill,
915           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
916           (updateRegUsage): factored out to ease stepping while debugging,
917           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
918            also allocate bit registers,
919           (fillGaps): handle bit registers,
920           (findAllBitregs): added to create bit vector with all bit registers,
921           (mcs51_allBitregs): returns this bit vector,
922           (mcs51_assignRegisters): when using stack-auto use bit registers for
923            passing parameters and creating local variables
924         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
925
926 2005-08-22 Borut Razem <borut.razem AT siol.net>
927
928         * device/lib/Makefile.in: replaced find option -or with -o
929           to make it run on solaris
930
931 2005-08-22 Raphael Neider <rneider AT web.de>
932
933         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
934           fixes #1265442 (crash on Solaris)
935
936 2005-08-20 Borut Razem <borut.razem AT siol.net>
937
938         * configure, configure.in: added tests for libsocket and libnsl libraries,
939           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
940           from support/regression/Makefile.in
941         * support/regression/Makefile.in: added
942         * device/lib/pic16/Makefile.common.in: force make to use bash shell
943         * sim/ucsim/libtool: regenerated on sparc-solaris
944         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
945           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
946           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
947           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
948           sparc-solaris, which doesn't use GNU ld linker
949         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
950         * as/Makefile: find on sparc-solaris does not support -maxdepth option
951
952 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
953
954         * src/mcs51/peeph.def: updated comments
955
956 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
957
958         * device/lib/_gptrget.c,
959         * device/lib/_gptrput.c: slightly shorter
960         * doc/sdccman.lyx: incremented version
961         * src/mcs51/peeph.def: moved peephole comments to the line of first
962           change to better keep line correlation, reanimated 186.e
963         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
964
965 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
966
967         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
968           David Saxton with quotes around file name.
969
970 2005-08-15 Borut Razem <borut.razem AT siol.net>
971
972         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
973           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
974           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
975           make tests run on x86_64 platform
976
977 2005-08-13 Raphael Neider <rneider AT web.de>
978
979         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
980           as it might be executed DURING a build (parallel make is wonderful)
981
982 2005-08-13 Raphael Neider <rneider AT web.de>
983
984         * device/lib/Makefile.in (port-specific-objects-pic16):
985           revert to cp $(PORT)/bin/*.* $(PORTDIR)
986         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
987           dependency
988         * device/lib/pic16/Makefile.rules: build subdirs before creating
989           the library, removed builddir rule, create $(builddir) early in
990           recurse rule, use empty recurse rule for leaf directories
991         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
992           mkdir errors (race condition), removed duplicate suffix "hex"
993           from clean rules
994         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
995         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
996           prevents mkdir -p from aborting on Alpha
997
998 2005-08-12 Raphael Neider <rneider AT web.de>
999
1000         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1001           db-statements in order to allow for arrays of pointers in code
1002           sections to be placed without interspersed 0-padding, fixes
1003           bug #1256215
1004         * (emitStatistics): fixed division by zero for pic18f1220
1005         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1006           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1007         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1008         * (pic16_pCodeConstString): keep track of already emitted string
1009           literals to prevent "duplicate definitions of symbol _str_NR"
1010         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1011           debug message
1012         * device/lib/Makefile.in: ignore failing PIC16 library builds
1013         * device/lib/pic16/Makefile: do not build if gputils are missing
1014         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1015
1016 2005-08-10 Raphael Neider <rneider AT web.de>
1017
1018         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1019           my last commit)
1020
1021 2005-08-10 Raphael Neider <rneider AT web.de>
1022
1023         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1024           Rokas' patch to add the new fixed point type "__fixed16x16"
1025         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1026           functions for __fixed16x16 arithmetics
1027         * device/lib/pic16: reimplemented the build system to support
1028           a separate build directory, better handling of libio (create
1029           the library in a separate subdir for each architecture) and
1030           easier configuration (centralized in Makefile.common)
1031
1032 2005-08-07 Raphael Neider <rneider AT web.de>
1033
1034         * src/pic16/gen.c (genrshTwo): fixed sign extension
1035         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1036         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1037           added T0CONbits
1038         * device/include/pic16/pic18f4220.h: NEW, header for
1039           pic18f4220 and pic18f4320
1040         * device/include/pic16/pic18fregs.h: added new devices,
1041           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1042         * device/include/pic16/signal.h: resolved name clashes
1043           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1044           to also allow testing for interrupt enable bits, added
1045           comments on how to use the macros
1046         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1047         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1048           register definitions for the devices
1049         * device/lib/pic16/pics.all: added new devices
1050         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1051           allocated memory
1052         * device/lib/pic16/libc/stdlib/memfree: do not count
1053           the block header as free memory
1054         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1055           simplified and added missing end-of-blocklist-marker
1056           (reported by Peter Onion, fixes #1252814)
1057         * (_mergeHeapBlock): fixed loop condition
1058         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1059           len==0, restructured code
1060         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1061           up a bit, reduced bitfield accesses, prevent endless loops
1062           in case of heap corruption
1063         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1064           "unreferenced arguments/must return a value" warnings
1065         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1066           replaced BAUDREG with SPBRG
1067         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1068           device/lib/pic16/debug/gstack/gstack.c: replaced
1069           _naked, _asm, _endasm with __naked, __asm, __endasm
1070
1071 2005-08-05 Raphael Neider <rneider AT web.de>
1072
1073         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1074           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1075
1076 2005-08-05 Borut Razem <borut.razem AT siol.net>
1077
1078         * device/lib/Makefile.in: added missing ';'
1079         * configure: removed ^M characters
1080
1081 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1082
1083         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1084           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1085           License
1086
1087 2005-08-04 Borut Razem <borut.razem AT siol.net>
1088
1089         * configure.in: pic16 libraries build 2nd try - enable running
1090           configure in device/lib/pic16
1091         * configure: regenerated from configure.in
1092         * device/lib/Makefile.in: create $(PORT)/bin directory
1093
1094 2005-08-03 Raphael Neider <rneider AT web.de>
1095
1096         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1097           to get/set values via pointers
1098         * (genUnpackBits,genPackBits): changed detection of
1099           ptr->bitfield vs. sym.bitfield, fixed access via generic
1100           pointers, removed dead (wrong) code for multibyte bitfields
1101         * (genNearPointerGet, genGenPointerGet): removed useless code,
1102           fixed bitfield detection, fixes #1250594
1103         * (genNearPointerSet): removed useless code
1104         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1105           and introduced macro pic16_emitpcode that conditionally emits
1106           the origin of the following pCode (useful for debugging SDCC)
1107         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1108         * (createDefmap): fixed handling of LFSR for --optimize-df
1109
1110 2005-08-02 Borut Razem <borut.razem AT siol.net>
1111
1112         * device/lib/Makefile.in: pic16 libraries build enabled since
1113           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1114
1115 2005-08-02 Raphael Neider <rneider AT web.de>
1116
1117         * src/pic16/gen.c (genPackBits): removed deprecated warning
1118         * (genGenPointerSet): fixed bitfield detection
1119
1120 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1121
1122         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1123
1124 2005-07-31 Raphael Neider <rneider AT web.de>
1125
1126         * device/lib/pic16/libdev/pic18f458.c,
1127           device/include/pic16/pic18f458.h: added missing T0CONbits
1128
1129 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1130
1131         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1132
1133 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1136
1137 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1138
1139         * device/include/mcs51/at89c51ed2.h: added.
1140
1141 2005-07-23 Raphael Neider <rneider AT web.de>
1142
1143         * src/pic/gen.h: added emitpcode macro for debugging
1144         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1145           and replace by macro adding debug information on demand
1146         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1147         * (gencjne): tried to fix; replaced with correct (slower) code
1148         * (gen{Unp,P}ackBits): fixed single bit access
1149         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1150         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1151           previous instruction
1152         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1153           register has to be handled with care (forbidding movement
1154           of assignments/uses, removing assignments completely, ...)
1155         * (pCodeOptime2pCodes): make use of regIsSpecial
1156         * added lots of debugging output (commented out)
1157         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1158           from being reused as result UNLESS it is known to work
1159
1160 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1161
1162         * support/Util/dbuf.h: include <stddef.h> for size_t
1163         * .version: changed to version 2.5.2
1164
1165 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1166
1167         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1168
1169 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1170
1171         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1172           (genModOneByte): removed needless psha/pula
1173
1174 2005-07-22 Raphael Neider <rneider AT web.de>
1175
1176         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1177           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1178         * src/pic/gen.c (resolveIfx): do not "invent" labels
1179         * (genSkipc): changed to positive logic
1180         * (genSkipCond): removed as no longer needed
1181         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1182           backport from PIC16
1183         * (genLeftShift): check operands are in different registers
1184         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1185           INCF does not update CARRY...
1186         * src/pic/main.c: fixed _linkCmd
1187         * src/pic/pcode.c (unlinkpCode): added inactive code
1188         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1189           alive (do not assign result and operand overlapping registers)
1190
1191 2005-07-22 Raphael Neider <rneider AT web.de>
1192
1193         * src/pic/device.c (dump_sfr): replaced register declaration with
1194           call to emitSymbolToFile() to avoid duplicate symbols
1195         * (assignRelocatableRegisters): do not declare external symbols
1196         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1197           right (take size of type, not etype)
1198         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1199         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1200         * (packRegsForAccUse): disabled assignment of WREG as
1201           the result reg to prevent occurence of just fixed #1235003,
1202           fixes #1242954
1203         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1204           symbols (avoids duplicate symbols in .asm file)
1205         * (pic14emitRegularMap): use emitSymbolToFile()
1206         * src/pic/gen.c (aopOp): fixed spillLocation handling
1207         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1208         * (genDataPointerSet): removed unneccessary variables/output
1209
1210 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1211
1212         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1213         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1214
1215 2005-07-21 Raphael Neider <rneider AT web.de>
1216
1217         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1218           architecture cannot handle them efficiently, fixes bug #1235003
1219         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1220           check for empty sets before using them (fixes bug #1232190)
1221
1222 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1223
1224         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1225           (lnksect2): generate warnings for memory overlap
1226         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1227           constseg to set the name of these segments so you can instruct the linker
1228           to place them in banks
1229         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1230         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1231           added code_seg and const_seg to options
1232         * src/SDCCglue.c (emitMaps): use options.const_seg,
1233           (createInterruptVect): put interrupt vectors in segment HOME,
1234           (glue): put HOME before static segment and put the main glue in HOME,
1235           (glue): use options.code_seg
1236         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1237         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1238           these segments so you can instruct the linker to place them in banks
1239           (linkEdit): use code_loc for HOME segment which should be the first
1240           segment in code memory now
1241         * src/SDCCmem.c: fixed more stuff like bug 1238386
1242         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1243           (changePointer): don't change function pointers to code pointers for
1244           banked functions,
1245           (compareType): added exceptional check for banked function pointers
1246         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1247         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1248           after static in code memory
1249         * src/mcs51/gen.c: added aopLiteralLong prototype,
1250           (aopForSym): use getSize for functions,
1251           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1252           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1253           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1254           the segment,
1255           (genPcall): use call for literal function pointers and generate banked
1256           calls over the one trampoline so there's only one place for the user to
1257           modify according to his/hers hardware,
1258           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1259           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1260         * src/mcs51/main.c: added keyword banked,
1261           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1262         * support/Util/SDCCerr.c,
1263         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1264           needed for passing the bank and address to the trampoline
1265         * device/lib/mcs51/crtbank.asm: added for bankswitching
1266         * device/lib/mcs51/Makefile: added crtbank
1267
1268 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1269
1270         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1271           for fields at offset 0 of a struct or union as reported
1272           on 2005-07-07 in the developer mailing list.
1273
1274 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1275
1276         * src/SDCCmem.c: fixed bug 1238386
1277
1278 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1279
1280         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1281           (patch #1144962), added peephole 300, enabled 259.x
1282         * doc/sdccman.lyx: removed screenshot and provided link instead
1283
1284 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1285
1286         * doc/sdccman.lyx: added section about debugging with ddd
1287         * doc/figures/ddd_example.eps: screenshot of debugging session
1288
1289 2005-07-04 Raphael Neider <rneider AT web.de>
1290
1291         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1292           like CODE pointers, fixes #1115683
1293         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1294           call, fixes bugs #1232211, #1228110,
1295           fixed wrong casts to pCodeFlow from pCodeInstructions
1296
1297 2005-07-04 Raphael Neider <rneider AT web.de>
1298
1299         * src/pic/gen.c (popGet): changed assert to allow for
1300           bit operands
1301         * (popGetAddr): changed signature to provide
1302           an additional index, patched all call sites
1303         * (genCmpEq): handle literal-like operands correctly
1304         * (genAddrOf): added sanity checks on __code/__data pointers
1305         * (genAssign): added handling of symbols from __code section
1306         * (gencjne): do not generate code for comparisons whose result
1307           is neither stored nor used, fixes bug #1171114
1308         * (AccLsh, AccRsh): operate on operand instead of WREG
1309         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1310           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1311           by known count
1312         * rewrote complete shift-by-literal logic, commented unused
1313           functions out
1314         * (genConstPointerGet): get multiple bytes (if result size > 1),
1315           fixed handling of non-immediate addresses
1316         * (genPointerGet): handle CODE pointers like CONST pointers
1317         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1318         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1319           operand is to be treated as a literal or not
1320         * (mov2w,genPcall,genCmpEq),
1321           src/pic/genarith.c: use aop_isLitLike() to decide between
1322           literal/register contents
1323         * (addSign): added missing offset
1324         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1325           only emit comment in debug-mode,
1326           use {aop,op}_isLitLike throughout the file
1327         * src/pic/glue.c: fix initializers for pointers (work in progress)
1328         * src/pic/pcode.c (get_op): honor index on _const symbols
1329         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1330         * (dumppBlock): added pCode size estimation
1331         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1332           check for IS_SYMOP before OP_SYMBOL'ing
1333         * fixed indentation, compacted switch-statements
1334         * (allocReg): find free register and allocate it instead of
1335           allocating new registers all the time
1336         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1337           registers as its operands (necessary only for multibyte GETs)
1338
1339 2005-07-01 Raphael Neider <rneider AT web.de>
1340
1341         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1342           debugging .asm-output macros FENTRY + FEXIT
1343         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1344           way... I wonder...
1345         * (emitpComment): NEW, printf to pCode
1346         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1347           offset handling
1348         * (popGetAddr): NEW, variant of popGet to access an immediates
1349           high(er) bytes instead of the n'th byte of memory they reference,
1350           replaced popGet with popGetAddr where neccessary
1351         * (genDataPointerGet): reactivated and fixed implementation
1352         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1353           accesses
1354         * (genDataPointerSet): fixed multibyte assignments
1355         * (genpic14Code): fixed --i-code-in-asm handling
1356         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1357         * (genPlus): fixed index-out-of-bounds error
1358         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1359         * src/pic/ralloc.c: added debugging output macro FENTRY2
1360         * (spillThis): fixed indentation, enbraced for-body for clarity
1361         * (rematStr): commented out as now unused
1362         * (regTypeNum): commented out special spill case (overwrites
1363           arbitrary values)
1364         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1365
1366 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1367
1368         * doc/sdccman.lyx: documented sfr16/sfr32,
1369           added example for using storage class with function pointers
1370         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1371
1372 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1373
1374         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1375         * device/lib/_itoa.c,
1376         * device/lib/_ltoa.c: optimized codesize
1377         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1378           but don't know how to suppress the double warning.
1379         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1380         * support/Util/SDCCerr.c,
1381         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1382
1383 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1384
1385         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1386           fixed old K&R prototypes
1387         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1388         * device/lib/_gptrget.c,
1389         * device/lib/_gptrgetc.c,
1390         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1391           also new versions for small generic pointers and banked generic pointers
1392         * src/port.h: added const_name
1393         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1394         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1395         * src/SDCCcse.c (findPrevIc): check all associative operators
1396         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1397         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1398         * src/SDCCmem.c: updated comments,
1399           set far-space to 0 for pdata, results in optimized code
1400         * src/SDCCmem.h: added macro CONST_NAME
1401         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1402           moving the info into the highest bits, see also gptrget/gptrput
1403         * src/src.dsp: added sdcc.ico to project files
1404         * src/avr/gen.c (genCast): fixed bug 0x%d
1405         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1406         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1407           relation between ptr_type and DCL_TYPE,
1408           (genCast): fixed bug 0x%d
1409         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1410           (CODE)" for const_name
1411         * src/hc08/gen.c (genCast): fixed bug 0x%d
1412         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1413           (hc08_port): added "CONST (CODE)" for const_name
1414         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1415           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1416           between ptr_type and DCL_TYPE,
1417           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1418           operand* and took AOP() inside function so sfr-ness can be checked,
1419           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1420           new prototype,
1421           (genFunction, genEndFunction): optimized stack setup,
1422           (genMinus): optimized for literals with ending zeroes (in bytes),
1423           (genCast): fixed bug 0x%d
1424         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1425           (mcs51_port): added "CONST (CODE)" for const_name
1426         * src/mcs51/peeph.def: made rule 226 more generic
1427         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1428         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1429         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1430         * src/z80/main.c (z80_port): added NULL for const_name,
1431           (gbz80_port): added NULL for const_name
1432         * support/regression/tests/bug663539.c,
1433         * support/regression/tests/sfr16.c: new tests
1434
1435 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1436
1437         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1438
1439 2005-06-24 Raphael Neider <rneider AT web.de>
1440
1441         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1442           corrected typos...
1443         * device/include/pic16/signal.h: added USBIF
1444           and SIG_USB
1445
1446 2005-06-24 Raphael Neider <rneider AT web.de>
1447
1448         * device/lib/pic16/libdev/pic18f2455.c,
1449           device/include/pic16/pic18f2455.h: NEW
1450         * device/include/pic16/pic18fregs.h,
1451           device/lib/pic16/pics.all,
1452           src/pic16/device.c: added 18f2455
1453         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1454           device/include/pic16/{pic18f[68][567].h,usart.h}:
1455           replaced MULTIPLE_USARTS define with more relaible
1456           compatibility sfrs (for USART access)
1457
1458 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1459
1460         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1461           and the output asm file line is printed on two lines.
1462
1463 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1464
1465         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1466           BGT, BLE, BHI, and BLS instructions
1467         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1468           genCmpEq): removed
1469         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1470           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1471           fixes bug #1216342
1472         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1473
1474 2005-06-15 Raphael Neider <rneider AT web.de>
1475
1476         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1477         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1478         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1479           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1480           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1481
1482 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1483
1484         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1485           Marcel Telka in bug #1215704
1486
1487 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1488
1489         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1490           located in shared memory bank.
1491
1492 2005-05-31 Raphael Neider <rneider AT web.de>
1493
1494         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1495           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1496           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1497
1498 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1499
1500         * device/lib/_strncpy.c: fixed the fix
1501
1502 2005-05-26 Raphael Neider <rneider AT web.de>
1503
1504         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1505           initializers with \0, bug #1208187
1506         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1507           intializers with \0, bug #1208187
1508
1509 2005-05-26 Raphael Neider <rneider AT web.de>
1510
1511         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1512           initializers with \0, bug #1208187
1513         * src/pic16/main.c (_process_pragma): added sanity checks
1514           for stack position and size, emit warnings when appropriate
1515
1516 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1517
1518         * device/lib/_strncpy.c: fixed not filling with \0
1519
1520 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1521
1522         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1523           createFunction),
1524         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1525           compound_statement),
1526         * src/SDCCsymt.h,
1527         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1528
1529 2005-05-24 Raphael Neider <rneider AT web.de>
1530
1531         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1532
1533 2005-05-24 Raphael Neider <rneider AT web.de>
1534
1535         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1536           TRISE definitions, closes bug #1162453
1537
1538 2005-05-22 Raphael Neider <rneider AT web.de>
1539
1540         * src/pic16/main.c (_process_pragma): check for missing
1541           arguments to pragmas code and udata
1542         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1543           consistency fixes to match other headers (thanks to Jim Paris)
1544         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1545
1546 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1547
1548         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1549
1550 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * support/regression/tests/bug1198642.c: new test
1553         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1554         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1555         * support/scripts/resource.h,
1556         * support/scripts/resource.rc,
1557         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1558         * support/scripts/sdcc.ico: added 32x32 icon
1559
1560 2005-05-18 Raphael Neider <rneider AT web.de>
1561
1562         * device/lib/pic16/libdev/pic18f*.c,
1563         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1564           keywords to "__sfr" and "__at (X)"
1565         * device/include/pic16/pic18fregs.h: added pic18f4520
1566         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1567           #1203088 (MPLAB compatibility)
1568
1569 2005-05-17 Raphael Neider <rneider AT web.de>
1570
1571         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1572         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1573         * device/lib/pic16/pics.all: added new devices
1574         * src/pic16/device.c: added support for pic18f4520
1575
1576 2005-05-16 Raphael Neider <rneider AT web.de>
1577         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1578         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1579         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1580           convenience function for bit access
1581
1582 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1583
1584         * device/lib/printf_large.c: fixed bug 1193299
1585         * support/regression/tests/bug1057979.c: added test %3.3s
1586
1587 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1588
1589         * device/include/mcs51/8051.h,
1590         * device/include/mcs51/8052.h: made parseable with lint
1591         * device/include/mcs51/lint.h: added include file for (sp)lint
1592         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1593         * doc/cdbfileformat.lyx,
1594         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1595
1596 2005-05-14 Raphael Neider <rneider AT web.de>
1597
1598         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1599         * device/lib/pic16/libc/stdlib/itoa.c (new)
1600         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1601         * device/lib/pic16/libio/Makefile: exclude subdir according to
1602           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1603         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1604         * src/pic16/gen.c (genFunction): prevent annoying warning
1605         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1606           nameclashes on BeOS
1607         * support/cpp2/cppmain.c (cpp_output_string): new
1608         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1609           fixes bug 1116802
1610
1611 2005-05-13 Borut Razem <borut.razem AT siol.net>
1612
1613         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1614
1615 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1616
1617         * .version: changed to version 2.5.1; back to bleeding edge development
1618
1619 2005-05-11 Borut Razem <borut.razem AT siol.net>
1620
1621         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1622           generate PDF version 1.3 documents
1623
1624 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1625
1626         * .version: changed to version 2.5.0
1627
1628 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1629
1630         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1631
1632 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1633
1634         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1635         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1636         well as many smaller updates.
1637         * .version: changed to version 2.5.0-pre1
1638
1639 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1640
1641         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1642
1643 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1644
1645         * support/regression/tests/bug1185672.c: added
1646         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1647           bug 1185672
1648         * src/mcs51/gen.c (genCall): added comments, made it look safer
1649         * src/mcs51/gen.c (genEndFunction): simplified
1650
1651 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1652
1653         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1654
1655 2005-04-14 Borut Razem <borut.razem AT siol.net>
1656
1657         * fixed bug 1045046 - SIGSEGV with really simple code?:
1658           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1659           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1660
1661 2005-04-14 Borut Razem <borut.razem AT siol.net>
1662
1663         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1664           src/pic16/device.h: temporarily disabled experimental #inline pragma
1665           for 2.5.0 release
1666
1667 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1668
1669         * device/include/z80/stdio.h,
1670         * device/include/z80/string.h: removed these highly incomplete files so
1671           SDCC can use the default ones in device/include/
1672
1673 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1674
1675         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1676         gcc warning.
1677         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1678         fix sdcpp warnings.
1679
1680 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1681
1682         * device/include/malloc.h: removed redundant __reentrant prototypes
1683         * device/lib/_mullong.c: added working xstack variant in asm (C version
1684           doesn't pass regression tests)
1685         * device/lib/bpx.c: used __data and made bpx char for mcs51
1686         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1687           (createFunction): fixed bug with xstackPtr
1688         * src/SDCCcse.c: corrected comments
1689         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1690           (killDeadCode, eBBlockFromiCode): removed unused code
1691         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1692           corrected comments
1693         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1694           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1695           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1696           (genModOneByte): fixed warning in MSVC
1697         * src/mcs51/main.c (): added comments
1698         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1699
1700 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1701
1702         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1703
1704 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1705
1706         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1707
1708 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1709
1710         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1711         characters arrays of larger size than the declared one.
1712
1713 2005-04-10 Borut Razem <borut.razem AT siol.net>
1714
1715         * src/pic/gen.c (genInline),
1716           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1717           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1718           (findNextInstruction), (findPrevInstruction),
1719           (findInstructionUsingLabel),
1720           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1721         * src/pic/pcode.c (findLabel): added missing '\n'
1722         * src/src.dsp: added SDCCdwarf2.c to the project
1723
1724 2005-04-09 Borut Razem <borut.razem AT siol.net>
1725
1726         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1727
1728 2005-04-08 Raphael Neider <rneider AT web.de>
1729
1730         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1731           into the chain after a given one) and mergeDefmapSymbols (combine
1732           defmap entries for each symbol per pcode)
1733         * (createDefmap): have defmap entries merged in the end
1734         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1735           a symbol before replacing one access type's symbol, merge symbols in
1736           the end (replacement symbol might already have an entry)
1737         * (assignValnums): keep reference to written WREG intact
1738
1739 2005-04-08 Raphael Neider <rneider AT web.de>
1740
1741         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1742           Alpha)
1743
1744 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1745
1746         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1747         bytes
1748
1749 2005-04-07 Raphael Neider <rneider AT web.de>
1750
1751         * device/include/pic16/usart.h: added compatibility defines for
1752           devices with more than one USART
1753         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1754
1755 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * device/lib/Makefile.in: updated for port specific include
1758
1759 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1760
1761         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1762
1763 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1764
1765         * device/include/8051.h,
1766         * device/include/8052.h,
1767         * device/include/at89S8252.h,
1768         * device/include/at89c55.h,
1769         * device/include/at89x051.h,
1770         * device/include/at89x51.h,
1771         * device/include/at89x52.h,
1772         * device/include/mcs51reg.h,
1773         * device/include/reg51.h,
1774         * device/include/reg764.h,
1775         * device/include/regc515c.h,
1776         * device/include/sab80515.h: (re)moved these 12 files
1777         * device/include/mcs51/8051.h,
1778         * device/include/mcs51/8052.h,
1779         * device/include/mcs51/at89S8252.h,
1780         * device/include/mcs51/at89c55.h,
1781         * device/include/mcs51/at89x051.h,
1782         * device/include/mcs51/at89x51.h,
1783         * device/include/mcs51/at89x52.h,
1784         * device/include/mcs51/mcs51reg.h,
1785         * device/include/mcs51/reg51.h,
1786         * device/include/mcs51/reg764.h,
1787         * device/include/mcs51/regc515c.h,
1788         * device/include/mcs51/sab80515.h: and added them here
1789
1790 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1791
1792         * device/include/stdarg.h: changed SDCC specific keywords to double
1793           underlined form.
1794         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1795           mcs51 and ds390.
1796         * device/include/hc08/mc68hc908gp32.h,
1797         * device/include/hc08/mc68hc908jb8.h,
1798         * device/include/hc08/mc68hc908jkjl.h,
1799         * device/include/hc08/mc68hc908qy.h: fixed comments
1800         * device/include/mcs51/README: updated
1801         * device/include/mcs51/c8051f120.h: added PINRSF
1802         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1803         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1804           amidst code. Also inline is not supported.
1805
1806 2005-04-06 Raphael Neider <rneider AT web.de>
1807
1808         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1809         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1810           callers stack/frame pointers
1811
1812 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1813
1814         * device/include/pic16/usart.h: added, missing in previous commit,
1815         * device/include/pic16/adc.h: fixed typo,
1816         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1817         commit,
1818         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1819         <p18fxxx.inc>
1820         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1821         uninitialized because a bug appears with gplink
1822         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1823         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1824         complains for unrecognised option
1825
1826 2005-04-05 Raphael Neider <rneider AT web.de>
1827
1828         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1829           structs as well (using memcpy)
1830         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1831           on ISRs (GOTO has no label)
1832         * src/pic16/device.h: added OF_OPTIMIZE_DF
1833         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1834           new data flow analysis/optimization
1835         * src/pic16/pcode.c: added (prototypes for and implementation of)
1836           dataflow analysis functions, fixed pCodeInstructions' inCond and
1837           outCond values, made RCALL a branch instruction
1838         * (pic16_unlinkpCode): keep C line if possible
1839         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1840           C line moved if possible
1841         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1842         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1843           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1844         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1845           new flow)
1846         * (pic16_getJumptabpCode): NEW, needed in...
1847         * (LinkFlow): fixed handling of jumptables, calls and conditional
1848           branches
1849         * (pic16_InsertCommentAfter): NEW
1850         * (pic16_pCodeReplace): made verbose and flow preserving
1851         * (AnalyzeFlow): added call to data flow analysis
1852         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1853         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1854         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1855
1856 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1857
1858         * src/SDCCast.c (decorateType): fixed bug #1105626
1859
1860 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1861
1862         * device/include/asm/pic16/features.h,
1863         * pic18f*.h headers,
1864         * device/include/pic16/adc.h,
1865         * device/include/pic16/delay.h,
1866         * device/include/pic16/i2c.h,
1867         * device/include/pic16/malloc.h,
1868         * device/include/pic16/stdio.h,
1869         * device/include/pic16/stdlib.h,
1870         * device/include/pic16/string.h,
1871         * device/lib/pic16/libc/stdio/printf_tiny.c,
1872         * device/lib/pic16/libc/stdio/printf_small.c,
1873         * device/lib/pic16/libc/stdio/strmgpsim.c,
1874         * device/lib/pic16/libc/stdio/strmmssp.c,
1875         * device/lib/pic16/libc/stdio/strmusart.c,
1876         * device/lib/pic16/libc/stdio/vfprintf.c,
1877         * device/lib/pic16/libc/stdlib/ltoa.c,
1878         * device/lib/pic16/libc/stdlib/putchar.c,
1879         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1880         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1881         * device/lib/pic16/libc/stdlib/memchrram.c,
1882         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1883         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1884         * device/lib/pic16/libio/adc/adcbusy.c,
1885         * device/lib/pic16/libio/adc/adcread.c,
1886         * device/lib/pic16/libio/adc/adcsetch.c,
1887         * device/lib/pic16/libio/usart/ubaud.c,
1888         * device/lib/pic16/libio/usart/ubusy.c,
1889         * device/lib/pic16/libio/usart/udrdy.c,
1890         * device/lib/pic16/libio/usart/uopen.c,
1891         * device/lib/pic16/libio/usart/uputc.c,
1892         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1893         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1894         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1895         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1896         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1897         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1898         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1899         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1900         specific keywords to double underlined form,
1901         * device/lib/pic16/libc/Makefile.rules,
1902         * device/lib/pic16/libsdcc/Makefile.rules,
1903         * device/lib/pic16/libm/Makefile,
1904         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1905         to compile with C standard set in Makefile.common
1906         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1907         rand.c and crc.c in compilation process,
1908         * device/lib/pic16/libsdcc/int/divuint.c,
1909         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1910         `c' from signed to unsigned,
1911         * device/lib/pic16/startup/crt0.c,
1912         * device/lib/pic16/startup/crt0i.c,
1913         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1914         keywords to double underlined form, bug fixes in _do_cinit function
1915         which prevented the correct initialization of the .idata segment,
1916         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1917         core to enter a infinite loop
1918         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1919
1920 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1921
1922         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1923
1924 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1925
1926         * device/include/Makefile.in: add support for hc08 subdirectory
1927         * device/include/hc08/: new subdirectory
1928         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1929         Lucas Loizaga, thanks!
1930         * device/include/hc08/mc68hc908qy.h,
1931         * device/include/hc08/mc68hc908gp32.h,
1932         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1933         their own directory. Changed internal macro names to use the compiler
1934         reserved namespace. Changed SDCC specific keywords to double
1935         underlined form.
1936         * device/include/math.h,
1937         * device/include/malloc.h,
1938         * device/include/stdarg.h,
1939         * device/include/stdbool.h
1940         * device/include/string.h,
1941         * device/include/tinibios.h,
1942         * device/include/ds400rom.h,
1943         * device/include/8051.h,
1944         * device/include/8052.h,
1945         * device/include/80c51xa.h,
1946         * device/include/at89c55.h,
1947         * device/include/at89S8252.h,
1948         * device/include/at89x51.h,
1949         * device/include/at89x52.h,
1950         * device/include/ds80c390.h,
1951         * device/include/reg764.h,
1952         * device/include/regc515c.h,
1953         * device/include/sab80515.h,
1954         * device/include/mcs51/c8051f000.h,
1955         * device/include/mcs51/c8051f018.h,
1956         * device/include/mcs51/c8051f020.h,
1957         * device/include/mcs51/c8051f040.h,
1958         * device/include/mcs51/c8051f060.h,
1959         * device/include/mcs51/c8051f120.h,
1960         * device/include/mcs51/c8051f300.h,
1961         * device/include/mcs51/c8051f310.h,
1962         * device/include/mcs51/c8051f320.h,
1963         * device/include/mcs51/c8051f330.h,
1964         * device/include/mcs51/c8051f350.h,
1965         * device/include/z180.h: Changed SDCC specific keywords to double
1966         underlined form.
1967
1968 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1969
1970         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1971         18F4455,
1972         * (pic16_assignConfigWordValue): disable testing of configuration
1973         register value with config mask,
1974         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1975         function with port->fun_prefix,
1976         * (genFunction): when generating a naked interrupt function never
1977         create an absolute segment placed in interrupt vector address, place
1978         the actual interrupt function at IVA instead, when an interrupt
1979         function is generated with unspecified interrupt then do not create
1980         the absolute section,
1981         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1982         code for generating a call to generic pointer get/put function with
1983         a call to function pic16_callGenericPointer(),
1984         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1985         the call to the generic pointer get/put functions with prefixing the
1986         function name with port->fun_prefix,
1987         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1988         * src/pic16/main.c (_process_pragma): prefix function with
1989         port->fun_prefix,
1990         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1991         calling assembler, old 18Fxxxx macro is deprecated,
1992         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1993         PC_ASMDIR in while condition,
1994         * (findInstruction): add PC_ASMDIR in while condition,
1995         * (buildCallTree): prefix main with port->fun_prefix,
1996         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1997         identifier for variable with banked access in instructions BTFSS,
1998         BTFSC, BCF, BSF, BTG
1999         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2000         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2001         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2002         perform optimization when enviroment variable NO_REG_OPT is set,
2003         * (insideLRBlock): NEW, return 1 if register is inside an
2004         INF_LOCALREGS block,
2005         * (RemoveRegFromLRBlock): remove a register that is completely
2006         eliminated by register optimization, but it is still left in local
2007         register store/restore in/from stack block,
2008         * (Remove2pcodes): after removing register, check to see if it
2009         should be removed from local register store/restore in/from stack
2010         block,
2011         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2012         DUMMY_READ_VOLATILE,
2013
2014         * device/include/pic16/adc.h: minor prototype modifications and
2015         update,
2016         * device/include/pic16/malloc.h: added GPL notice various
2017         modifications,
2018         * device/include/pic16/stdint.h: NEW, standard header for ints
2019         * device/include/pic16/delay.h: NEW, header for delay functions,
2020         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2021         delay1mtcy,
2022         * device/include/pic16/signal.h: NEW, header providing helper macros
2023         for implementing signal handlers,
2024         * device/include/pic16/stdio.h: added prototypes for functions,
2025         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2026         prototypes for stdin and stdout, added macro PUTCHAR to
2027         automatically implement putchar function prototype,
2028         * device/include/pic16/usart.h: modified and updated USART library,
2029         * device/lib/pic16/libio/adc/,
2030         * device/lib/pic16/libio/i2c: some modifications to improve library
2031         performance,
2032         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2033         family of functions,
2034         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2035         family of functions and other sources,
2036         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2037         of the PIC18Fxx[28] devices,
2038         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2039         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2040         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2041         _do_cinit function, because the previous failed when local variables
2042         where not placed in the same memory bank,
2043         * device/lib/pic16/libsdcc/char/: various modifications to improve
2044         library performance,
2045         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2046         information on the new functions of the c library and more...
2047
2048 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2049
2050         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2051
2052 2005-03-26 Raphael Neider <rneider AT web.de>
2053
2054         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2055           if condition == CARRY)
2056         * (genCmp): adapted to new genSkipc semantics
2057         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2058           on rIfx (genCmp was broken)
2059
2060 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2061
2062         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2063         * src/z80/main.c (_keywords[]),
2064         * src/SDCCglobal.h (struct options),
2065         * src/SDCC.y,
2066         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2067         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2068         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2069         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2070         always available in leading double underscore form. The C99 support is
2071         mostly missing, but it's a start.
2072         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2073         reserved identifier "__data".
2074
2075 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2076
2077         * src/mcs51/peeph.def: fixed bug 1170013
2078
2079 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2080
2081         * device/include/mcs51reg.h: fixed bug 842007
2082
2083 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2084
2085         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2086         last time.
2087
2088 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2089
2090         * src/port.h (struct PORT),
2091         * src/avr/ralloc.c (avr_assignRegisters),
2092         * src/avr/main.c,
2093         * src/ds390/ralloc.c (ds390_assignRegisters),
2094         * src/ds390/main.c,
2095         * src/hc08/ralloc.c (hc08_assignRegisters),
2096         * src/hc08/main.c,
2097         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2098         * src/mcs51/main.c,
2099         * src/pic/ralloc.c (pic14_assignRegisters),
2100         * src/pic/main.c,
2101         * src/pic16/ralloc.c (pic16_assignRegisters),
2102         * src/pic16/main.c,
2103         * src/xa51/ralloc.c (xa51_assignRegisters),
2104         * src/xa51/main.c,
2105         * src/z80/ralloc.c (z80_assignRegisters),
2106         * src/z80/ralloc.h,
2107         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2108         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2109         * src/SDCCcse.h,
2110         * src/SDCCdflow.c (computeDataFlow),
2111         * src/SDCCdflow.h,
2112         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2113         * src/SDCCloop.h,
2114         * src/SDCCcflow.c (*),
2115         * src/SDCCcflow.h,
2116         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2117         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2118         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2119         immedDom() returning wrong block; probably fixes bug #1160833)
2120
2121 2005-03-20 Borut Razem <borut.razem AT siol.net>
2122
2123         * support/scripts/inc2h.pl: WIN32 port
2124
2125 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2126
2127         * device/lib/makefile.in: added abs.c and labs.c
2128
2129 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2130
2131         * device/include/stdint.h: added
2132         * device/lib/abs.c: added
2133         * device/lib/labs.c: added
2134         * device/include/stdlib.h: added abs() and labs() prototypes
2135         * device/lib/libsdcc.lib: added abs and labs
2136         * device/include/float.h,
2137         * device/lib/_fsmul.c,
2138         * device/lib/printf_fast.c,
2139         * device/lib/printf_tiny.c: updated comments
2140
2141 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2142
2143         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2144         bug #1164313
2145
2146 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2147
2148         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2149         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2150
2151 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2152
2153         * device/lib/printf_large.c: removed inline assembly for portability and
2154           readability. Use printf_fast if speed or size are more important.
2155         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2156         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2157
2158 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2159
2160         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2161         prevent compiler warning
2162
2163 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2164
2165         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2166         moved to level 0 and declared as static. Also they are explicit
2167         placed in access bank. This was necessery because some times they
2168         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2169         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2170         optimizations. Currently only compare to unsigned char is implemented,
2171         * src/pic16/gen.c: added fReturnIdx array,
2172         * (struct resolvedIfx) is moved to gen.h and made public,
2173         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2174         * (aopForSym): added an optimization to directly store in stack of
2175         the operand of a SEND iCode,
2176         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2177         but as registers instead (AOP_REG) using the fReturnIdx array,
2178         * (pic16_freeAsmop): remove the freed register from the
2179         _G.sregsAlloc field,
2180         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2181         a compare of 'WREG',
2182         * (pic16_popGetTempRegCond): changed function prototype, now
2183         function takes also a bitVector argument v which holds the current
2184         set of registers that are allocated for stack access by aopForSym,
2185         registers allocated in aopForSym for accessing stack symbols are not
2186         any more part of the functions usedRegs field,
2187         * (genCall): some times aopOp is called for a stack variable to be
2188         send, aopForSym might perform the push, if this is true make sure
2189         that genCall doesn't push the variable twice by testing _G.resDirect,
2190         * (genFunction): changed testing for unspecified interrupt number
2191         from 256 to INTNO_UNSPEC,
2192         * modified selection scheme of frame pointer generation. Previously
2193         if function did use local registers a frame pointer was generated,
2194         now a frame pointer is generated only if function has arguments
2195         (that need PLUSW2 register access), or has stack arguments, or the
2196         compiler is not instructed to omit the frame pointer,
2197         * (genEndFunction): before restoring local registers that were saved
2198         in the function preamble, also restore the registers that *might*
2199         have been allocated for stack access,
2200         * (genRet): removed some old comments,
2201         * (genCmp, the active (RN's) version): added a call to the
2202         pic16_genCmp_special function to perform the compare with a more
2203         robust and optimized way,
2204         * (genInline): a feature has been added in inline code generation,
2205         which allows a wildcard variable substitution when writing inline
2206         assembly. Code is incomplete and experimental therefore undocumented,
2207         * (genCast): changed order of aopOp for result and right to allow
2208         aopForSym to directly load the result if possible,
2209         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2210         perform an optimized compare on some selected special occasions,
2211         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2212         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2213         generate an IVT any more,
2214         * src/pic16/main.c (pic16_optionsTable): added command line option
2215         --optimize-cmp,
2216         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2217         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2218         macros,
2219         * src/pic16/NOTES: Raphael Neider added in list of active developers
2220         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2221         jumptable_end to prevent bug #,
2222         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2223         inCond and outCond fields,
2224         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2225         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2226         turn off register spilling,
2227         * (packRegsForOneUse): synced with other ports' versions although it
2228         is not used currently,
2229         * (pic16_packRegisters): added an optimization while reading
2230         structure bitfields, some registers may be saved (malloc code is
2231         decreased by 80 bytes)
2232
2233 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2234
2235         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2236         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2237         this can be optimized more?
2238
2239 2005-03-10 Raphael Neider <rneider AT web.de>
2240
2241         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2242           genNearPointerGet): (hopefully) fixed access to bitfields via
2243           pointers (p->bitN = x; and x = p->bitN; failed)
2244
2245 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2246
2247         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2248
2249 2005-03-09 Raphael Neider <rneider AT web.de>
2250
2251         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2252
2253 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2254
2255         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2256         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2257           (regTypeNum): set REG_BIT type if necessary
2258         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2259         * support/regression/tests/critical.c: check bug 1144613
2260
2261 2005-03-02 Raphael Neider <rneider AT web.de>
2262
2263         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2264
2265 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2266
2267         * src/avr/ralloc.c (serialRegAssign),
2268         * src/ds390/ralloc.c (serialRegAssign),
2269         * src/hc08/ralloc.c (serialRegAssign),
2270         * src/mcs51/ralloc.c (serialRegAssign),
2271         * src/pic/ralloc.c (serialRegAssign),
2272         * src/pic16/ralloc.c (serialRegAssign),
2273         * src/xa51/ralloc.c (serialRegAssign),
2274         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2275
2276 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2277
2278         * src/SDCCast.c (decorateType): fixed bug 1124787
2279
2280 2005-02-20 Hubert Sack <sack AT digiplan.de>
2281         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2282
2283         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2284         patch #1121755
2285
2286 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2287
2288         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2289         to keep the correct label reference count when adding/removing references
2290         to labels. A peephole file using this is appended to patch #1144962.
2291
2292 2005-02-14 Raphael Neider <rneider AT web.de>
2293
2294         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2295         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2296         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2297           retrievals of result operand's value on assignment
2298
2299 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2300
2301         * device/include/pic16/string.h: modified prototype for memccpy()
2302         to memccpy(void *, void *, char, size_t)
2303         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2304         check whether to omit frame pointer or not,
2305         * (genInline): convert all occurences of "\n" to LF in inline
2306         assembler blocks, this helps formatting the inline text,
2307         * (pic16_loadFSR0): modified prototype,
2308         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2309         removed some 8051 legacy code,
2310         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2311         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2312         before allocating temporary registers in functions,
2313
2314 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * support/regression/tests/bitvars.c: corrected the "fix"
2317
2318 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2319
2320         * support/regression/tests/bitvars.c,
2321         * support/regression/tests/bitwise.c,
2322         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2323
2324 2005-02-10 Raphael Neider <rneider AT web.de>
2325
2326         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2327           different size for Alpha
2328         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2329
2330 2005-02-09 Raphael Neider <rneider AT web.de>
2331
2332         * src/SDCC.lex(doPragma) : save and restore warning options as well
2333           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2334         * have #pragma less_pedantic set the errorlevel to WARNING
2335           (fixes #1117001)
2336         * (cloneOptimize) : fixed wrong malloc's size
2337         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2338           facilitate correct handling of #pragma (save|restore)
2339
2340 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2341
2342         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2343
2344 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2345
2346         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2347
2348 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2349
2350         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2351
2352 2005-02-02 Raphael Neider <rneider AT web.de>
2353
2354         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2355         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2356         * (pic16_storeForReturn): fixed to allow returning function pointers
2357         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2358         * device/include/pic16/{stddef.h,stdbool.h}: added
2359
2360 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2361
2362         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2363
2364 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2365
2366         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2367         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2368          appeared to be required
2369
2370 2005-01-31 Borut Razem <borut.razem AT siol.net>
2371
2372         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2373           include/mcs51 and include/z80 directories to the package
2374
2375 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2376
2377         * src/hc08/gen.c (genFunction): fixed bug #1112752
2378
2379 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2380
2381         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2382
2383 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2384
2385         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2386
2387 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2388
2389         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2390
2391 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2392
2393         * device/include/c8051fxxx.h: removed these 6 files
2394         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2395
2396 2005-01-26 Raphael Neider <rneider AT web.de>
2397
2398         * src/pic16/gen.c (genAssign): fixed assignment from longs
2399           in codespace (were cut to three bytes)
2400         * (genDummyRead): implemented (except for CODESPACE...),
2401           fixed bug #1108575
2402         * src/pic16/glue.c (emitStatistics): beautified
2403         * device/lib/pic16/libm/Makefile: added include path
2404
2405 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2406
2407         * src/z80/gen.c (aopPut): fixed bug #1103902
2408
2409 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2410
2411         * device/lib/expf.c: fixed bug #1095792
2412
2413 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2414
2415         * device/lib/pic16/libm: added Math library sources
2416
2417 2005-01-24 Raphael Neider <rneider AT web.de>
2418
2419         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2420           to enable upcast to pCodeOpReg2 (there is no type tag to
2421           differenciate the two and pic16_popGet2p cast into PCOR2)
2422         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2423           (sizeof(sectNames) changed to sizeof(sectName))
2424           Both patches fix segfaults under MinGW.
2425
2426 2005-01-23 Raphael Neider <rneider AT web.de>
2427
2428         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2429           Safe_[mc]?alloc()'ed variables
2430         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2431           of (byte sized) temporaries (assign them to WREG for now)
2432         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2433           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2434           this might fix SIGSEGVs on MinGW...
2435         * src/SDCCopt.c (killDeadCode): restored original behaviour
2436           (volatile operands might get thrown away though)
2437
2438 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2439
2440         * src/pic16/gen.c: fixed bug #1106975,
2441         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2442         pointer update, INTCON is saved, global interrupts are disabled and
2443         restored after updateing TOS.
2444         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2445         * added function attribute 'shadowregs' to take advantage of shadow
2446         registers,
2447         * added function attribute 'wparam' as an alternative to the wparam
2448         pragma,
2449         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2450         user declares a non-ISR function as 'shadowregs',
2451         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2452
2453 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2454
2455         * .version: bumped version number to 2.4.8
2456         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2457         pic16 port,
2458         * device/lib/pic16/libio/i2c/: I2C module support library,
2459         * device/include/pic16/i2c.h: I2C support library header,
2460         * device/lib/pic16/libc/stdio/: standard IO support sources,
2461         * (printf_small.c): printf_small() source, supports float print,
2462         * (printf_tiny.c): printf_tiny() source, does not support floats,
2463         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2464         enable global optimizations for entire library source, other
2465         Makefiles in the source tree are also modified to reflect this,
2466         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2467         function,
2468         * doc/sdccman.lyx: updated to reflect new changes,
2469         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2470         sym->onStack if-case,
2471         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2472         sbit, idata, _idata, xdata, _xdata,
2473         * added pragma library, to link an external library, (see doc),
2474         * removed command line options, --pomit-config-words, --pomit-ivt,
2475         --pleave-reset-vector,
2476         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2477         when calling assembler to reflect memory model used, also define
2478         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2479         reflect stack model used,
2480         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2481         on stack return NULL,
2482
2483 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2484
2485         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2486           of the operands is volatile. Fixes #1020220
2487
2488 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2489
2490         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2491         * (OptimizeRegUsage): make sure that there is really no other flow where
2492           the first pCode is used
2493
2494 2005-01-22 Raphael Neider <rneider AT web.de>
2495
2496         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2497           to fix #1106967 (pCode->seq are not set up correctly)
2498
2499 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2500
2501         * src/SDCCglue.c (glue): make sure code area is declared before the
2502         static initialization area.
2503
2504 2005-01-21 Raphael Neider <rneider AT web.de>
2505
2506         * device/lib/Makefile.in: fixed test for pic16 install dir
2507         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2508           optimizations
2509         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2510           added --optimize-goto compiler switch and pragma wparam documentation
2511         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2512         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2513           and PRODH closing bug #1071770 (peephole optimizer)
2514
2515 2005-01-19 Raphael Neider <rneider AT web.de>
2516
2517         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2518           cmdLine buffers (used when calling sdcpp...) are large enough
2519           (MAX_PATH=256 truncates arguments leading to system halts when
2520           used in MinGW...)
2521         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2522         * (genUminus): rewritten to for efficiency
2523         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2524           used uninitialized in some cases)
2525         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2526           copy the third byte from the int -- now assumes 0x80 (data memory)
2527         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2528           operands (genAddLit expects the iCode's operands to swapped as
2529           well), fixed leftover bytes (crashed for short left operands)
2530         * (pic16_genMinusDec): performance improvements, removed false
2531           PIC14 emitSKPNCs
2532         * (pic16_genMinus): fixed to cope with differently sized operands
2533         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2534           for --obanksel > 1
2535         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2536         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2537           new banksel optimization
2538         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2539           analysis for temporary registers (segfaults...)
2540         * src/pic16/peeph.def: added rule
2541
2542 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2543
2544         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2545         which converts a float number to its ASCII representation
2546         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2547         functions to convert the fractional and integer part of a float to ASCII,
2548         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2549         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2550         ram
2551         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2552         _STATMEM macros,
2553         * device/include/pic16/adc.h: added GPL info,
2554         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2555         a pCodeOp as tested operand,
2556         * (genNearPointerGet): optimized bit testing, does not use
2557         intermediate register for bit value, test directly instead with
2558         BTFSS, BTFSC, works only for single bits,
2559         * (genpic16Code): dump the name of the iCode in the asm,
2560         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2561         renamed to pic16_decodeOp,
2562         * (serialRegAssign): do not allocate a temporary register for iCode
2563         sequences that test a single bit for 1/0
2564
2565 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2566
2567         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2568         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2569         access stack and frame pointers. They are initially assigned to
2570         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2571         accessing SFRs. Updated all occurences of modification of stack or
2572         frame pointer in gen.c and pcode.c,
2573         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2574         assigning of a literal value to pointers,
2575         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2576         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2577         selected
2578
2579 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2580
2581         * doc/sdccman.lyx: update documentation about stack pragma, added
2582         some info for stack memory models
2583
2584 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2585
2586         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2587
2588 2005-01-08 Raphael Neider <rneider AT web.de>
2589
2590         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2591           udata sections to fix bug #1097823
2592
2593 2005-01-05 Raphael Neider <rneider AT web.de>
2594
2595         * src/pic16/gen.c (genGenericShift): added handling of differently
2596           sized left operand and result
2597
2598 2005-01-04 Raphael Neider <rneider AT web.de>
2599
2600         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2601         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2602           to hold the condition bit)
2603         * added new version of genCmp (old code available via #define)
2604         * added new version of genShiftLeft/genShiftRight in a generic
2605           way, now supports shifting by negative values
2606         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2607           shiftCount (expected by genGenericShift)
2608         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2609         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2610           dump
2611         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2612           is an invalid literal too...)
2613
2614 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2615
2616         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2617         from Raphael Neider,
2618         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2619         for 8-bit literals. This fixes some literal operands which are sign
2620         extended to 16-bits ints when instruction needs only 8-bits.
2621
2622 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2623
2624         * device/lib/logf.c: added mcs51 assembly version
2625         * device/lib/expf.c: added mcs51 assembly version
2626         * device/lib/_logexpf.c: new shared asm code for expf and logf
2627         * device/include/math.h: add defines for assembly math library
2628         * device/lib/Makefile.in: build new _logexpf.c
2629         * device/lib/libfloat.lib: use new _logexpf.c
2630
2631 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2632
2633         * src/pic/device.c
2634         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2635           device types which have less than 0x7f registers.
2636
2637 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2638
2639         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2640
2641 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2642
2643         * device/lib/printf_fast.c: only build on supported arch.
2644         * device/lib/printf_tiny.c: only build on supported arch.
2645         * device/lib/printf_fast_f.c: only build if asm float lib
2646         * device/lib/_fsget1arg.c: only build if asm float lib
2647         * device/lib/_fsget2args.c: only build if asm float lib
2648         * device/lib/_fsnormalize.c: only build if asm float lib
2649         * device/lib/_fsreturnval.c: only build if asm float lib
2650         * device/lib/_fsrshift.c: only build if asm float lib
2651         * device/lib/_fsswapargs.c: only build if asm float lib
2652         * device/include/stdio.h: don't provide print_fast,
2653           print_fast_f, print_tiny prototypes if --xstack used
2654
2655 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2656
2657         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2658         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2659           to the SOURCES
2660
2661 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2662
2663         * device/lib/printf_fast_f.c: same as printf_fast, but
2664           with floating point enabled
2665         * device/lib/printf_fast.c: minor tweaks
2666         * device/include/stdio.h: add printf_fast_f
2667
2668 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2669
2670         * src/SDCCmain.c: make --float-reent default for mcs51
2671         * device/lib/_fsadd.c: added mcs51 assembly version
2672         * device/lib/_fssub.c: added mcs51 assembly version
2673         * device/lib/_fsmul.c: added mcs51 assembly version
2674         * device/lib/_fsdiv.c: added mcs51 assembly version
2675         * device/lib/_fseq.c: added mcs51 assembly version
2676         * device/lib/_fsneq.c: added mcs51 assembly version
2677         * device/lib/_fsgt.c: added mcs51 assembly version
2678         * device/lib/_fslt.c: added mcs51 assembly version
2679         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2680         * device/lib/Makefile.in: add _fscmp to build
2681         * device/lib/libfloat.lib: add _fscmp to build
2682
2683 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2684
2685         * device/lib/_fs2slong.c: added mcs51 assembly version
2686         * device/lib/_fs2sint.c: added mcs51 assembly version
2687         * device/lib/_fs2schar.c: added mcs51 assembly version
2688         * device/lib/_fs2ulong.c: added mcs51 assembly version
2689         * device/lib/_fs2uint.c: added mcs51 assembly version
2690         * device/lib/_fs2uchar.c: added mcs51 assembly version
2691         * device/lib/_slong2fs.c: added mcs51 assembly version
2692         * device/lib/_sint2fs.c: added mcs51 assembly version
2693         * device/lib/_schar2fs.c: added mcs51 assembly version
2694         * device/lib/_ulong2fs.c: added mcs51 assembly version
2695         * device/lib/_uint2fs.c: added mcs51 assembly version
2696         * device/lib/_uchar2fs.c: added mcs51 assembly version
2697         * device/include/float.h: added #define to select asm vs c
2698
2699 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2700
2701         * device/lib/printf_fast.c: improvements to float output
2702         * device/include/float.h: add defines for assembly float library
2703         * device/lib/_fsget1arg.c: receive 1 float arg
2704         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2705         * device/lib/_fsnormalize.c: normalize a float
2706         * device/lib/_fsreturnval.c: return float, various helper routines
2707         * device/lib/_fsrshift.c: right shift a float's mantissa
2708         * device/lib/_fsswapargs.c: swap 2 floats
2709         * device/lib/Makefile.in: build these 6 new files for mcs51
2710         * device/lib/libfloat.lib: add these 6 files to the library
2711
2712 2004-12-26 Borut Razem <borut.razem AT siol.net>
2713
2714         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2715           built by gcc 3.4.2
2716
2717 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2718
2719         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2720           and fully reentrant and register bank neutral.
2721         * device/lib/printf_fast.c: added float (not enabled by default),
2722           added compact/slower integer (also not enabled by default),
2723           improved size/speed of fast integer code, other minor changes
2724         * device/include/stdio.h, device/lib/Makefile.in,
2725           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2726
2727 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2728
2729         * src/pic16/pcode.c: declaring variables other than at the start of a
2730           block is not supported in C by VC6.
2731
2732 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2733
2734         * applied a previous patch from Raphael Neider that wasn't included
2735         in the previous commits, which fixes infinite loops within jumptable
2736         improvements,
2737         * made some fixes that previous patches introduced
2738
2739 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2740
2741         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2742         that fixes an issue with AOP_PCODE asmop's offset,
2743         * (pic16_popCopyReg): update instance field too,
2744         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2745         function of pic port,
2746         * (genCmp, genAnd, genAssign),
2747         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2748
2749 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2750
2751         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2752         variables initial values to idata section,
2753         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2754         variables in some functions. This utilizes parmBytes field of iCode
2755         structure to hold the offset of the variable in stack. (might be
2756         able to use the stack field too?)
2757         * applied patch from Raphael Neider # ### , # ###
2758         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2759         variable initial values in idata section,
2760         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2761         for static variables with initial value
2762         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2763         applied fix in while loop from Raphael Neider.
2764
2765 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2766
2767         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2768         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2769         * src/ds390/ralloc.c (serialRegAssign): spill bits
2770         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2771         * support/Util/SDCCerr.c,
2772         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2773         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2774         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2775
2776 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2777
2778         * device/include/sdcc-lib.h: inserted LGPL, added includes
2779           asm/ds390/features.h and asm/mcs51/features.h
2780         * device/include/asm/default/features.h,
2781         * device/include/asm/gbz80/features.h,
2782         * device/include/asm/z80/features.h: added empty _AUTOMEM
2783           and _STATMEM
2784         * device/include/asm/ds390/features.h,
2785         * device/include/asm/mcs51/features.h: added files with defines for
2786           _AUTOMEM and _STATMEM indicating automatic and static storage class
2787         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2788         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2789         * src/SDCCicode.c (geniCodeCast),
2790         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2791         * src/SDCCloop.c (loopInduction): removed unused variable lr
2792         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2793           to convertToFcall to include char modulo (RFE 1065037), added check
2794           if left operand is unsigned and use abs of literal value
2795         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2796           as it doesn't work after conversion from peephole.def to peephole.rul
2797         * src/mcs51/gen.c (toBoolean): added check for size,
2798           (genModOneByte): optimized code for signed char modulo a literal
2799           power of 2 (thanks to Hubert Sack),
2800           (genRRC): removed unnecessary "clr c",
2801           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2802         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2803           jump optimization,
2804           swapped rules 256.c and 256.d,
2805           extended 256.d by using new multiple checks (thanks Erik),
2806           added rules 256.e and 256.f,
2807           updated rule 261.a and 261.b to new generated code
2808         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2809
2810 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2811
2812         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2813           induction related bugs, including first part of bug #1074377
2814
2815 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * applied patch from bug-report #1076292,
2818         * applied patches for genAnd and Goto-optimizations for Raphael
2819         Neider,
2820         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2821         dump a less iCode information,
2822         * src/pic16/device.h (pic16_options_t): added field debgen,
2823         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2824         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2825         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2826         puclic,
2827         * (various functions): added macros FENTRY and FENTRY2 to functions,
2828         to emit function prologue,
2829         * (various functions): fixed indentation,
2830         * (genNearPointerGet): fixed loading of FSR0,
2831         * (genPackBits): applied patch from Raphael Neider to fix updating
2832         of FSR0 and touching only the modified bits,
2833         * src/pic16/genarith.c (various functions): added macros FENTRY to
2834         emit function prologue in comments,
2835         * src/pic16/pcode.h: added functions debugf2, debugf3,
2836         * src/pic16/ralloc.c: partial fix for packForPush caused
2837         segmentation fault,
2838
2839 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2840
2841         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2842           <stsp AT users.sourceforge.net> with reversed byte order
2843         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2844
2845 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2846
2847         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2848           bug #1074377
2849         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2850         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2851
2852 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2853
2854         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2855
2856 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2857
2858         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2859           conditions,
2860           (setFromConditionArgs): friendly operand parser for peephole rules,
2861           (operandBaseName, operandsNotRelated): new peephole condition
2862           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2863           architecture specific register naming into account, handles n-way
2864           comparisons, and supports quoted literals
2865         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2866
2867 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2868
2869         * src/mcs51/peeph.def: fixed bug #1076940
2870
2871 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2872
2873         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2874
2875 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2876
2877         Adding support for replacing ljmps with sjmps in jumptables
2878         generated for switch statements. For now you need to set the
2879         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2880         Now 4 algorithms for mcs51 jumptable generation are used:
2881         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2882         addresses loaded pc-relative for up to 112 cases and stack-pushing
2883         target addresses loaded with offset from dptr for up to 256 cases.
2884
2885         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2886         * src/mcs51/main.c: adapted constants for switch table generation
2887         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2888
2889 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2890
2891         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2892         * support/regression/tests/bug1057979.c: added test for bug 1073386
2893
2894 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2895
2896         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2897         compilers
2898
2899 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2900
2901         * src/pic16/device.h,
2902         * src/pic16/genarith.c,
2903         * src/pic16/glue.c,
2904         * src/pic16/main.c,
2905         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2906
2907 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2908
2909         Large cummulative patch for pic16 port.
2910         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2911         to call when a stack overflow occurs,
2912         * (malloc.h): added CVS Id tag,
2913         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2914         variable,
2915         * added libc directory. The current version of LibC contains string
2916         functions, ctype functions and macros and some functions of the
2917         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2918         be extensively tested in the future. Standard disclaimer here.
2919         Library is not automatically build yet. But one can build it by
2920         invoking 'make' inside the libc directory.
2921         * added ADC library under libio. Preliminary version yet.
2922
2923         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2924         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2925         aopForRemat() now and not by pic16_aopOp(),
2926         * (pic16_popGetTempReg): removed warning messgae when allocating
2927         temporary registers, its a buggy feature and will be removed,
2928         * (pic16_popGet): set register instance field in AOP_CRY,
2929         * (pic16_outBitC): fixed for results in size greater than 1,
2930         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2931         * (pic16_storeForReturn): optimized return of 0,
2932         * (genCmp): experimental code for new genCmp which uses PIC18's
2933         special compare&skip instructions. Initial tests fail some times
2934         with variables grater than 1 byte in size, so new code is disabled,
2935         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2936         a single bit,
2937         * (genCast): began a fix to optimize the casting of a bit to another
2938         bit, now assigning a bitfield to another bitfield will fail, sorry,
2939         * src/pic16/main.c: disabled the use of lr-support feature,
2940         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2941         * added some function prototypes, added function _debugf prototype,
2942         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2943         bits with offset (case PO_GPR_BIT),
2944         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2945         command line,
2946         * (isBankInstruction): modified to return 0 for no banking instruction,
2947         and 1 for banking instruction,
2948         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2949         caused stop processing pCodes after a inline assembly block,
2950         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2951         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2952         registers when it shouldn't,
2953         * src/pic16/ralloc.c (allocReg): add preliminary support for
2954         supporting a limited set of temporary registers,
2955
2956 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2957
2958         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2959           genDataPointerSet): ensure assignments always copy in MSB to LSB
2960           order,
2961           (loadRegFromAop): recognize CLRH optimization,
2962           (genFunction): optimize RECEIVE iCodes in reentrant functions
2963
2964 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2965
2966         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2967           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2968           selected.
2969         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2970         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2971           contiguous with data
2972
2973 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2974
2975         * device/lib/_gptrget.c (_gptrget),
2976         * device/lib/_gptrgetc.c (_gptrgetc),
2977         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2978           instead of sjmp to ret
2979         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2980           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2981
2982 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2983
2984         * .version: bumped version to 2.4.7
2985         * device/lib/_gptrget.c (_gptrget): is now _naked
2986         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2987         * device/lib/_gptrput.c (_gptrput): is now _naked
2988         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2989           (createFunction): fixed xstack
2990         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2991         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2992           or bit either,
2993           (geniCodeCritical): store original interrupt state in an iTemp bit
2994           var unless stack-auto
2995         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2996         * src/SDCCmain.c (setIncludePath): added include/target to search path
2997         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2998         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2999           prototype,
3000           (processFuncArgs): put bit vars in bit area
3001         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3002           unsaveRBank): fixed xstack,
3003           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3004           (genFunction, genEndFunction): fixed xstack,
3005           (genAssign): optimization don't walk backwards through mem
3006         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3007         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3008         * support/regression/Makefile: also make library (for stack-auto) when
3009           making "all" and added "test-mcs51-xstack-auto"
3010         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3011         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3012         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3013         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3014         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3015           make-library by MAKE_LIBRARY
3016         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3017           regression tests for xstack
3018         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3019         * support/regression/tests/critical.c: test for critical on mcs51
3020
3021 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3022
3023         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3024           built version of sdcc instead of installed version
3025
3026 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3027
3028         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3029         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3030           vprintf.c now
3031         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3032         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3033           WARNING: remove device/lib/build/z80/printf.o by hand when
3034           updating from previous build!
3035         * device/lib/z80/printf.c: updated comment
3036         * support/regression/tests/bug1057979.c: test all ports now
3037         * support/regression/tests/bug1065458.c: file added
3038
3039 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3040
3041         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3042           *_start and *_end symbols for static functions
3043
3044 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3045
3046         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3047           and search crt0.o in all library paths,
3048           (setIncludePath): proper handling of --nostdinc,
3049           (setLibPath): proper handling of --nostdlib
3050         * support/regression/Makefile,
3051         * support/regression/ports/ds390/spec.mk,
3052         * support/regression/ports/gbz80/spec.mk,
3053         * support/regression/ports/hc08/spec.mk,
3054         * support/regression/ports/mcs51/spec.mk,
3055         * support/regression/ports/mcs51-large/spec.mk,
3056         * support/regression/ports/mcs51-stack-auto/spec.mk,
3057         * support/regression/ports/z80/spec.mk: use include and lib files from
3058           built version of sdcc instead of installed version
3059         * doc/sdccman.lyx: fixed typo in --nostdinc
3060
3061 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3062
3063         * src/pic/pcode.c,
3064         * src/pic/device.c,
3065         * src/pic/ralloc.c,
3066         * src/pic/gen.c : added support to generate code for struct bit fields.
3067
3068 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3069
3070         * as/xa51/xa_version.h,
3071         * device/include/errno.h,
3072         * device/include/regc515c.h,
3073         * device/lib/_itoa.c,
3074         * device/lib/_ltoa.c,
3075         * device/lib/ser_ir_cts_rts.c,
3076         * sim/ucsim/xa.src/glob.cc,
3077         * sim/ucsim/xa.src/inst_gen.cc,
3078         * sim/ucsim/xa.src/xa_bit.cc,
3079         * sim/ucsim/xa.src/xa_sfr.cc,
3080         * sim/ucsim/z80.src/inst_dd.cc,
3081         * sim/ucsim/z80.src/inst_fdcb.cc,
3082         * support/scripts/keil2sdcc.pl,
3083         * src/pic16/pic16.dsp,
3084         * src/pic16/pic16a.dsp: corrected cvs line endings
3085         * device/lib/printf_large.c: fixed bug 1057979
3086         * src/pic16/gen.c: fixed non-C standard code
3087         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3088         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3089         * support/regression/ports/mcs51/support.c: reload T1 asap
3090         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3091           pdata use and clear idata startup behaviour
3092         * support/regression/tests/bug1057979.c: added
3093
3094 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3095
3096         * device/examples/ds390/ow390/ad26.h,
3097         * device/examples/ds390/ow390/cnt1d.h,
3098         * device/examples/ds390/ow390/crcutil.c,
3099         * device/examples/ds390/ow390/ownet.h,
3100         * device/examples/ds390/ow390/owsesu.c,
3101         * device/examples/ds390/ow390/swt12.h,
3102         * device/examples/ds390/ow390/swtoper.c,
3103         * device/examples/ds390/ow390/temp10.h,
3104         * device/examples/ds390/ow390/thermodl.c,
3105         * device/examples/ds390/tinitalk/tinitalk.dsp,
3106         * device/examples/ds390/tinitalk/tinitalk.dsw,
3107         * device/examples/mcs51/clock/hw.h,
3108         * device/examples/mcs51/simple2/go.bat,
3109         * device/examples/serialcomm/windows/serial.h,
3110         * device/examples/xa51/dummy.c,
3111         * device/examples/xa51/hello.c,
3112         * device/include/80c51xa.h,
3113         * device/include/at89x051.h: corrected cvs line endings
3114
3115 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3116
3117         * src/pic16/main.c (options): added command line --gstack, to trace
3118         stack over/under flows,
3119         * added pragma 'wparam' to allow passing first byte of function
3120         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3121         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3122         call to __gstack_test function and sets up the symbol as extern,
3123         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3124         * popaop): added call to pic16_testStackOverflow,
3125         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3126         wparamList list,
3127         * (genCall, genPcall): now all parameters are passed via stack
3128         except in functions that are pass to wparam pragma in which WREG is
3129         used too,
3130         * (genPcall): REENTRANT flag is checked to see if variable prototype
3131         contains reentrant keyword, don't call a non-reentrant function, via
3132         a reentrant function pointer or vice versa, functions are never
3133         passed via WREG,
3134         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3135         D.Winkler,
3136         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3137         SIGSEGV when accessing a NULL register stucture,
3138         * (pic16_printGPointerType): modified to handle UPPER modifier for
3139         function initializers, changed prototype of function to simpler one,
3140         * (pic16_printIvalFuncPtr): check to see if function is already
3141         added in externs list,
3142         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3143         optimized a move from W to SFR with a move to the same register
3144         later after a CALL,
3145         * device/lib/pic16/debug: NEW directory, contains debug features
3146         which are enabled when linking with libdebug.lib, currently command
3147         line option --gstack enables stack pointer tracing for over/under
3148         flow, corresponding sources are in debug/gstack
3149
3150 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3151
3152         * doc/sdccman.lyx: updated SDCC version,
3153         * (PIC16 port): update list of command line options,
3154         * src/pic16/device.h (structure pic16_options_t): added field gstack
3155         to enable stack overflow tracing on push/pops,
3156         * src/pic16/device.c (statistics structure): added statistics
3157         structure,
3158         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3159         pic16_dump_int_registers): increase statistics counters for each
3160         * variable which is encountered
3161         * (pic16_dump_usection): emit each .udata variable to its own udata
3162         section,
3163         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3164         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3165         parameters via stack, otherwise use old scheme,
3166         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3167         assembler output file,
3168         * src/pic16/main.c: added command line options --gstack to enable
3169         push/pop tracing for stack overflow,
3170         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3171         instructions): added size of each instruction,
3172         * (pic16_countInstruction): estimate size of instructions in
3173         the_pFile list, inline assembly blocks are not counted,
3174         * (pic16_FixRegisterBanking): trace previous register usage, when
3175         banksel optimizations is greater than 0, don't emit a redudant
3176         banksel directive,
3177
3178 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3179
3180         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3181         * src/pic16/ralloc.c : applied same fix for pic16.
3182         * src/pic/gen.c : tidied it up a little.
3183
3184 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3185
3186         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3187         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3188
3189 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3190
3191         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3192
3193 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3194
3195         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3196         non-reentrant function __modsint in the interrupt function (thus
3197         corrupting math operations during serial I/O)
3198         * device/lib/ser_ir.c: as above, changed buffersize
3199         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3200         256.c,d for zeroing
3201         * doc/Makefile: added option -t for rsync
3202
3203 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * src/SDCCast.h (struct ast),
3206         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3207
3208 2004-10-20 Borut Razem <borut.razem AT siol.net>
3209
3210         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3211         package
3212
3213 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3214
3215         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3216         makefile targets,
3217         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3218         support functions to replace long sequences of MOVFF's from access
3219         bank registers to stack and vice versa,
3220         * src/pic16/device.h: added new field opt_flags, where optimization
3221         flags can be set to enable certain features,
3222         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3223         * pBlock, (genFunction, genEndFunction): surroung loop for
3224         saving/loading used registers in stack with PC_INFO pCodes,
3225         INF_LREGS. Code in between can then be optimized by pCode optimizer
3226         to support function calls,
3227         * (genDataPointerSet): fixed bug which loaded float fields in
3228         structures with corrupt data,
3229         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3230         in a standard way debug info on stderr. Feature used for developing
3231         and debugging only,
3232         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3233         obsolete chunks of code,
3234         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3235         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3236         * pic16/src/pcode.c (pic16_newpCodeInfo,
3237         * (pic16_newpCodeOpLocalRegs),
3238         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3239         feature,
3240         * (pic16_pCodeConstString): printing of the initial value of a
3241         symbol as a comment is inhibited since parsing was already done by
3242         copyStr and output is corrupt,
3243         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3244
3245 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3246
3247         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3248
3249 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3250
3251         * as/mcs51/lkarea.c: removed old K&R style,
3252           (lnksect): changed check on boundary error,
3253           (lnksect2): changed check on boundary error,
3254           (lnksect2): extend XSTK to end of page if size = 1
3255         * as/mcs51/lkmain.c: removed old K&R style,
3256           (Areas51): create l_IRAM symbol
3257         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3258         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3259           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3260         * device/lib/_mullong.c: added version to be compiled with xstack
3261         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3262         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3263         * device/lib/mcs51/crtxstack.asm: fixed comment
3264         * src/SDCCglue.c: maxInterrupts defaults to 0,
3265           (emitMaps): added pdata,
3266           (createInterruptVect): (re)moved default,
3267           (glue): added pdata,
3268           (glue): moved __start__xstack to XSTK with default size 1
3269         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3270           and options.float_rent when options.stackAuto is set,
3271           (linkEdit): only write XDATA_NAME if provided on command line
3272         * src/SDCCmem.h,
3273         * src/SDCCmem.c: added pdata
3274         * src/port.h: added pdata_name to PORT
3275         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3276           (saveRegisters, unsaveRegisters): removed usage of B,
3277           (genMinus): fixed accumulator clash,
3278           (genJumpTab): added comment, this needs another look
3279         * src/mcs51/gen.c: added check for "B in use" paranoia,
3280           added pushB() and popB()
3281         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3282           chance
3283         * src/avr/main.c,
3284         * src/ds390/main.c,
3285         * src/hc08/main.c,
3286         * src/mcs51/main.c,
3287         * src/pic/main.c,
3288         * src/pic16/main.c,
3289         * src/xa51/main.c,
3290         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3291           added PSEG (PAG,XDATA) or NULL to port specifier
3292         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3293         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3294           (_mcs51_genInitStartup): removed __start__xstack equ,
3295           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3296         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3297         * src/z80/gen.c (_rleAppend): fixed warnings
3298         * support/regression/tests/zeropad.c: added pdata test
3299         * .version: bumped to 2.4.6
3300
3301 2004-10-17 Borut Razem <borut.razem AT siol.net>
3302
3303         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3304         as a part of nightly build
3305
3306 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3307
3308         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3309         WREG holds the first byte function parameters,
3310         * (aopForSym): take special case for symbols which are in FARSPACE
3311         but in CODESPACE too,
3312         * (assignResultValue): modified to take into account _G.useWreg,
3313         * (genCall): don't use wreg for parameter passing when function is
3314         declared as reentrant, too, added optimization INCF to stack
3315         pointer when stack parameter count is 1,
3316         * (genFunction, genEndFunction): refurnished and fixed to not using
3317         wreg for passing parameters when function has varargs or is
3318         reentrant, fixed bug with symbol name compare for generating
3319         functions in absolute address,
3320         * (pic16_storeForReturn): refurnished,
3321         * (genCmp): began writing a new version of the function, not ready
3322         yet, therefore it is disabled,
3323         * (genAssign): do not read code memory when assigning a function to
3324         a pointer function,
3325         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3326         array of characters, not pointer,
3327         * (pic16initialComments): in debug mode emit an .ident directive for
3328         the assembler,
3329         * (_process_pragma): emit a new warning type (internal to pic16)
3330         when setting stack to default length, emit a similar warning when
3331         placing a function at absolute address and address is not word aligned
3332         * (_pic16_parseOptions): added 'return TRUE' statement,
3333         * (_pic16_linkEdit): if compiling a source, then add the source's
3334         file object, first in the list of objects to link,
3335
3336 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3337
3338         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3339         * src/pic/main.c : removed VC warning.
3340         * src/pic/gen.c : changed comment.
3341
3342 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3343
3344         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3345         reference to a deprecated symbol _GPTRREG was causing failure to
3346         link. Thanks G. M. Gallant for the info.
3347
3348 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3349
3350         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3351         comments for Bugs item #954788.
3352
3353 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3354
3355         * src/pic16/device.c (pic16_dump_gsection,
3356         * pic16_groupRegistersInSection): handle symbols declared to be in
3357         access bank differently,
3358         * src/pic16/gen.c (struct _G): added field resDirect,
3359         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3360         send values read from stack directly to result and don't allocate
3361         temporary values,
3362         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3363         same registers,
3364         * (pic16_sameRegsOfs): NEW,
3365         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3366         free because they were not allocated from temporary pool,
3367         * pic16_popRegFromString): workaround to fix a problem with
3368         allocating variables twice or never,
3369         * (genGenPointerGet): using PRODL instead of FSR0H,
3370         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3371         instead of FSR0H,
3372         * (genAssign): take advantage of the _G.resDirect flag,
3373         * (genCast): around line 11844, use mov2f instead of directly
3374         MOVFF'ing between operands to account for literal values,
3375         * src/pic16/genutils.c: some new debug functions for gpsim have been
3376         added,
3377         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3378         float with integer part only,
3379         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3380         place variables in access bank
3381         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3382         updated sources to reflect recent changes in gen.c
3383
3384 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3385
3386         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3387         sources that searched for headers in installation path, now the
3388         device/include/pic16 is used,
3389         * src/pic16/glue.c (pic16glue),
3390         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3391         .line directives if not in debug mode, this suppresses assembler's
3392         warnings for ignored directives
3393
3394 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3395
3396         * src/port.h: made reset_regparms prototype void parameter explicit.
3397         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3398         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3399         * doc/sdccman.lyx: documented warning disabling and how to use
3400           printf_large to make it print floats.
3401         * device/include/stdbool.h: NEW
3402         * device/lib/_atof.c,
3403         * device/lib/_divuint.c,
3404         * device/lib/_divulong.c,
3405         * device/lib/expf.c,
3406         * device/lib/printf_large.c,
3407         * device/lib/sincosf.c,
3408         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3409         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3410           a completely reentrant lib.
3411
3412 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3413
3414         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3415         * device/include/pic16/stdio.h: fixed bug with colon
3416
3417 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3418
3419         * device/include/pic16/stdio.h,
3420         * device/include/pic16/stdlib.h,
3421         * device/include/pic16/math.h: NEW
3422         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3423         declared as _naked to reduce overhead
3424         * device/lib/Makefile.in (target port-specific-objects-pic16):
3425         changed * to *.* so to ignore the CVS directory,
3426         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3427         stacked variables back in stack,
3428         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3429         corruption
3430
3431 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3432
3433         * .version: bumped version number to 2.4.5
3434         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3435         * support/Util/SDCCerr.c (messages structure): added entry for
3436         W_POSSBUG2
3437
3438         Large cumulative patch for pic16 port and libraries.
3439         * device/include/pic16/sdcc-lib.h,
3440         * device/include/pic16/stdarg.h,
3441         * device/include/asm/pic16/features.h,
3442         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3443         * device/include/pic16/float.h: changes reentrant keyword with
3444         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3445         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3446         updated target build-libraries to include objects from gptr,
3447         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3448         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3449         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3450         all function headings,
3451         * src/SDCCmain.c: added global parameter userIncDirsSet,
3452         * (parseCmdLine): when option -I is encountered add directory to
3453         userIncDirsSet too,
3454         * src/version.awk: added space between control and long,
3455         * src/pic16/NOTES: added some notes for the port,
3456         * src/pic16/gen.c: added prototype for mov2fp function,
3457         * (fReturnpic16[]): properly named return value registers,
3458         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3459         * (aopForSym): added code to handle symbols with onStack flag set,
3460         symbols onStack are allocated PTRSIZE bytes,
3461         * (aopFreeAsmop): handles special case where asmops are stack objects,
3462         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3463         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3464         added argument lock to trace flaws in allocating temporary registers
3465         when developing port,
3466         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3467         * (pic16_popRegFromString): reenabled allocating a direct register
3468         from string,
3469         * (assignResultValue): various beautifications,
3470         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3471         referenced function argument,
3472         * (genIpush): reenabled to allow stacked arguments, handles only
3473         ic->parmPush iCodes,
3474         * (genCall, genPcall): major changes to allow for variable argument
3475         functions, fixed a bug with falsely restoring stack pointer after
3476         returning from call,
3477         * (genFunction): pending code for critical function,
3478         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3479         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3480         * (genNearPointerGet): fixed bug with indirect reading, was always
3481         reading from INDF0
3482         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3483         pointers,
3484         * (genAddrOf): rewrote code to take address of a stacked function parameter
3485         * (genCast): fixed casting to generic pointer type,
3486         * src/pic16/gen.h: added AOP_STA,
3487         * (struct asmop): added field stk,
3488         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3489         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3490         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3491         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3492         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3493         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3494         generic pointers,
3495         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3496         and library paths,
3497         * (pic16_port structure): generic pointer size is set to 3,
3498         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3499         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3500         compiler warning,
3501         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3502         operand is an iTemp,
3503
3504 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3505
3506         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3507         * debugger/mcs51/simi.c: addapt new syntax of s51
3508
3509 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3510
3511         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3512         * src/pic16/pcode.c: commented out some calls to free() in order to
3513         fix bug #989576,
3514
3515 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3516
3517         * src/SDCCicode.h,
3518         * src/SDCCicode.c (isiCodeInFunctionCall),
3519         * src/avr/ralloc.c (selectSpil),
3520         * src/pic/ralloc.c (selectSpil),
3521         * src/pic16/ralloc.c (selectSpil),
3522         * src/ds390/ralloc.c (selectSpil),
3523         * src/hc08/ralloc.c (selectSpil),
3524         * src/xa51/ralloc.c (selectSpil),
3525         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3526         stack in the middle of a function call sequence (fixes bug #1020268)
3527         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3528         costs associated with the minimum switch case.
3529
3530 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3531
3532         * src/SDCC.lex: fixed bug #1030549
3533
3534 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3535
3536         * src/SDCCcse.h (struct cseDef),
3537         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3538         over a function call if the CSE is derived from a symbol whose
3539         address has been taken (fixes bug #1029883)
3540         * support/regression/tests/bug-1029883: a new regression test for
3541         this bug
3542
3543 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3544
3545         * src/hc08/gen.c (emitinline): fixed bug #1029778
3546         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3547         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3548         and starts toward RFE #905167)
3549
3550 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3551
3552         * src/pic16/gen.c (mov2f): New function to move an operand to
3553         another without considering if it is a literal or a register,
3554         * (pic16_sameRegs): don't check if they are both AOP_REG,
3555         * (AccRsh): removed andmask=0 lines,
3556         * (genLeftShift): duplicated to be improved in future versions,
3557         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3558         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3559         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3560         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3561         * (insertBankSwitch): fixed inserting banksel directives algorithm
3562         for instructions that follow a skip instruction, this fixes a report
3563         for broken subtraction code generation,
3564         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3565         iCode is a left op, just in case result and right share the same
3566         registers
3567
3568 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3569
3570         * src/hc08/main.c,
3571         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3572         preservation of HX
3573         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3574         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3575         on 2004-09-12; it was buggy
3576
3577 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3578
3579         * src/SDCCsymt.h: removed RESULT_CHECK
3580         * src/SDCCast.c,
3581         * src/SDCCglue.c,
3582         * src/SDCCval.c,
3583         * src/pic/glue.c,
3584         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3585
3586 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3587
3588         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3589         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3590         configuration values no more rejected by compiler, they are assigned
3591         to configuration registers with a warning message instead,
3592         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3593         the for-loop so last conf register is emitted too,
3594         * (_pic16_initPaths): link library libsdcc.lib by default,
3595         * (_hasNativeMulFor): modified test for multiplication according to
3596         Raphael Neider's remarks. Integer multiplication is also done with
3597         support functions,
3598         * device/include/pic16/pic18fregs.h: corrected type error in while
3599         testing and including 18f6720 header file
3600
3601 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3602
3603         * src/pic16/device.h (pic16_options): removed field use_crt,
3604         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3605         until an optimization to handle single bits is added,
3606         * (pic16_loadFSR0): moved before genUnpackBits,
3607         * (genAnd): some white lines removed,
3608         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3609         leave_reset flags in pic16_options when using crt modules,
3610
3611 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3612
3613         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3614           for bugs 898889 & 979599. Also used some safer print instructions.
3615
3616 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3617
3618         * src/pic16/device.h (pic16_options_t): added field use_crt,
3619         crt_name, no_crt,
3620         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3621         catch a probable future bug,
3622         * src/pic16/gen.c: aopIdx function commented out,
3623         * (genAssign): commented out old code which used aopIdx,
3624         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3625         code, added if conditionals to take into account the --use-crt
3626         command line options,
3627         * src/pic16/main.c (pic16_optionsTable): added new command line
3628         options, --use-crt= and --no-crt,
3629         * (_pic16_linkEdit): now the proper crt object is added in the
3630         linker command line except than when --no-crt is specified,
3631         * src/pic16/pcode.c,
3632         * src/pic16/pcode.h: added some structures and functions for a new
3633         optimization scheme to compansate for instruction overhead between
3634         same iCodes, this scheme is currently under development and is not
3635         working in any way,
3636         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3637         to && operator,
3638         * device/lib/pic16/startup/crt0i.c,
3639         * device/lib/pic16/startup/crt0iz.c: added global char variable
3640         __uflags to force the generation of an idata section
3641
3642 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3643
3644         * doc/Makefile,
3645         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3646         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3647
3648 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3649
3650         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3651         Frieder) and clarified the default code optimization mode
3652
3653 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3654
3655         * src/SDCC.lex (doPragma, process_pragma),
3656         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3657         "opt_code_size", and "opt_code_balanced"
3658         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3659         regrouped options by category, added support for category headers
3660         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3661         and "--opt-code-size"
3662         * doc/sdccman.lyx: documented these new options and pragmas
3663         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3664         preference into account
3665
3666 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3667
3668         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3669           geniCodePreDec): Fixed bug 904237 by generating a warning
3670         * src/SDCCerr.h,
3671         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3672
3673 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3674
3675         * src/pic/device.c : When no max ram set validate full memory range.
3676         * src/pic/pcode.c,
3677         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3678
3679 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3680
3681         * device/lib/_gptrget.c,
3682         * device/lib/_gptrput.c: updated comment
3683         * device/lib/calloc.c,
3684         * device/lib/free.c,
3685         * device/lib/malloc.c,
3686         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3687         * src/SDCCcse.c (cseBBlock),
3688         * src/SDCCicode.c (printOperand, geniCodeArray),
3689         * src/SDCCicode.h (struct operand): fixed bug 868103
3690         * support/regression/tests/bug-868103.c: added
3691         * src/SDCCast.c (searchLitOp),
3692         * src/SDCCcse.h (struct cseDef),
3693         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3694         * src/SDCCicode.h (struct operand),
3695         * src/SDCCsymt.h (struct sym_link),
3696         * src/avr/gen.c (hasInc),
3697         * src/ds390/gen.c (hasInc),
3698         * src/hc08/gen.c (genPlusIncr, hasInc),
3699         * src/mcs51/gen.c (hasInc),
3700         * src/pic16/glue.c (pic16_printIvalChar),
3701         * src/pic16/ralloc.c (regWithIdx),
3702         * src/xa51/gen.c (hasInc) : removed warnings
3703         * src/SDCCast.c (createBlock): added comment ???
3704         * src/hc08/ralloc.c: updated comments
3705
3706 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3707
3708         * doc/sdccman.lyx: updated section on switch statements, added
3709         section about semaphore locking
3710         * doc/Makefile: added option -info for latex2html
3711         * device/lib/_gptrget.c,
3712         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3713
3714 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3715
3716         * src/pic/device.h,
3717         * src/pic/device.c,
3718         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3719          maxram is less than 0x100.
3720
3721 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3722
3723         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3724
3725 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3726
3727         * src/port.h,
3728         * src/mcs51/main.c,
3729         * src/ds390/main.c,
3730         * src/z80/main.c,
3731         * src/hc08/main.c,
3732         * src/pic/main.c,
3733         * src/pic16/main.c,
3734         * src/avr/main.c,
3735         * src/xa51/main.c
3736         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3737         a jump table is the best form for a switch statement, including
3738         automatic insertion of missing cases to make the case range
3739         continuous. Developed in collaboration with Frieder Ferlemann.
3740
3741 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3742
3743         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3744         accumulator result if it needs sign extension
3745
3746 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3747
3748         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3749
3750 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3751
3752         * device/lib/gbz80/printf.c,
3753         * device/lib/z80/printf.c: removed define for NULL
3754
3755 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3756
3757         * as/xa51/xa_link.c,
3758         * device/examples/ds390/ow390/ad26.c,
3759         * device/examples/ds390/ow390/cnt1d.c,
3760         * device/examples/ds390/ow390/counter.c,
3761         * device/examples/ds390/ow390/ds2480.h,
3762         * device/examples/ds390/ow390/ds2480ut.c,
3763         * device/examples/ds390/ow390/findtype.c,
3764         * device/examples/ds390/ow390/gethumd.c,
3765         * device/examples/ds390/ow390/owllu.c,
3766         * device/examples/ds390/ow390/ownetu.c,
3767         * device/examples/ds390/ow390/swt12.c,
3768         * device/examples/ds390/ow390/swtloop.c,
3769         * device/examples/ds390/ow390/temp.c,
3770         * device/examples/ds390/ow390/temp10.c,
3771         * device/examples/ds390/ow390/thermo21.c,
3772         * device/examples/ds390/ow390/tinilnk.c,
3773         * device/examples/ds390/ow390/tstfind.c,
3774         * device/examples/serialcomm/windows/serial.cpp,
3775         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3776         * device/include/reg51.h: fixed line endings for cvs
3777
3778 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3779
3780         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3781         packRegsForAccUse, packRegisters): new accumulator register
3782         packing algorithm
3783         * support/regression/ports/hc08/support.c (_putchar): suppress
3784         warning of unused variable
3785         * src/SDCCicode.c: added SWAP entry to codeTable
3786
3787 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3788
3789         * device/lib/sprintf.c: forgot to add this file before previous commit
3790
3791 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3792
3793         * src/pic16/gen.c (genPackBits): added operand right in function
3794         parameters, load result directly if p_type is POINTER (that is
3795         called by genNearPointerSet)
3796         * (genUnPackBits): added operand left in function parameters,
3797         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3798         FSR0 if accessing bitfields,
3799
3800 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3801
3802         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3803           _print_format; updated printf, sprintf, vsprintf
3804         * device/include/asm/default/features.h: corrected comment/define
3805         * device/lib/Makefile.in: added sprintf.c
3806         * device/lib/libsdcc.lib: added sprintf module
3807         * device/lib/printf_large.c,
3808         * device/lib/vprintf.c,
3809         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3810           into these 3 files
3811         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3812         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3813         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3814           hc08 test
3815         * support/regression/tests/zeropad.c: define idata as data for hc08
3816
3817 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3818
3819         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3820         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3821         labels are referenced at least once (even if a reference is not found)
3822         * src/hc08/gen.c (emitcode): set isComment flag for comments
3823         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3824         loads), rules 6a..6b (optimize jumps to return)
3825
3826 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3827
3828         * device/lib/acosf.c (acosf),
3829         * device/lib/asinf.c (asinf),
3830         * device/lib/atanf.c (atanf),
3831         * device/lib/ceilf.c (ceilf),
3832         * device/lib/cosf.c (cosf),
3833         * device/lib/coshf.c (coshf),
3834         * device/lib/cotf.c (cotf),
3835         * device/lib/fabsf.c (fabsf),
3836         * device/lib/floorf.c (floorf),
3837         * device/lib/log10f.c (log10f),
3838         * device/lib/logf.c (logf),
3839         * device/lib/sinf.c (sinf),
3840         * device/lib/sinhf.c (sinhf),
3841         * device/lib/sqrtf.c (sqrtf),
3842         * device/lib/tanf.c (tanf),
3843         * device/lib/tanhf.c (tanhf),
3844         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3845         replaced all instances of "reentrant" in the library functions
3846         defined in math.h with this macro.
3847         * support/regression/tests/float_trans.c: reenabled test for hc08
3848
3849 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3850
3851         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3852         erroneously deleted
3853
3854 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3855
3856         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3857         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3858         multi-byte volatile operands are used
3859         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3860         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3861         initialization to area GSINIT0 so that it would always precede
3862         any static initializers in GSINIT
3863         * support/regression/tests/zeropad.c: fixed idata define for hc08
3864         * support/regression/tests/bug-927659.c,
3865         * support/regression/tests/float_trans.c: disabled tests for hc08
3866         pending missing library routines
3867         * .version: increased version number to 2.4.4 - hc08 port now passes
3868         regression tests
3869
3870
3871 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3872
3873         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3874         * Makefile.common.in,
3875         * as/Makefile,
3876         * as/hc08/Makefile.in,
3877         * as/mcs51/Makefile.in,
3878         * as/z80/Makefile.in,
3879         * debugger/mcs51/Makefile.in,
3880         * device/include/Makefile.in,
3881         * device/lib/Makefile.in,
3882         * doc/Makefile,
3883         * link/Makefile,
3884         * link/z80/Makefile.in,
3885         * packihx/Makefile.in,
3886         * sim/ucsim/main_in.mk,
3887         * sim/ucsim/avr.src/Makefile.in,
3888         * sim/ucsim/doc/Makefile.in,
3889         * sim/ucsim/gui.src/serio.src/Makefile.in,
3890         * sim/ucsim/hc08.src/Makefile.in,
3891         * sim/ucsim/s51.src/Makefile.in,
3892         * sim/ucsim/xa.src/Makefile.in,
3893         * sim/ucsim/z80.src/Makefile.in,
3894         * src/Makefile.in,
3895         * support/cpp2/Makefile.in,
3896         * support/librarian/Makefile,
3897         * support/makebin/Makefile: added DESTDIR to the install path proposed
3898         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3899         * doc/sdccman.lyx: added DESTDIR documentation
3900
3901 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3902
3903         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3904         instruction for interrupt handlers, use fast returns when returning
3905         from high priority interrupts
3906
3907 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3908
3909         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3910         code generation
3911         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3912         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3913         bugs, ported much of Bernhard's code from mcs51
3914         * src/mcs51/gen.c (genSend),
3915         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3916         than one when calling a reentrant function
3917         * device/lib/_mullong.c: defined an alternate struct layout for big
3918         endian ports (hc08)
3919
3920 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3921
3922         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3923         test
3924
3925 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3926
3927         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3928         are sane and complete before asking the port its prefered parameter
3929         passing method (fixes bug #1017633)
3930         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3931         and _ret3
3932
3933 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3936         problem in bitfields >= 8 bits.
3937
3938 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3939
3940         * src/SDCCsymt.c: undid changes that were not meant to be committed
3941
3942 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3943
3944         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3945
3946 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3947
3948         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3949           copied and wrong bit got inverted
3950
3951 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3952
3953         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3954         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3955         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3956         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3957         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3958         assignments to bitfields at known addresses
3959         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3960         reads from bitfields at known addresses
3961         * src/hc08/ralloc.c (packRegisters),
3962         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3963         genhc08Code): optimize pointer get values used as conditionals
3964         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3965         and branch
3966
3967 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3968
3969         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3970         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3971         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3972         as conditionals
3973
3974 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3975
3976         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3977
3978 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3979
3980         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3981         related problems
3982
3983 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3984
3985         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3986
3987 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3988
3989         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3990         mcs51 port
3991
3992 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3993
3994         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3995
3996 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3997
3998         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3999         cases use more compact code.
4000
4001 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4002
4003         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4004
4005 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4006
4007         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4008
4009 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4010
4011         * src/SDCCsymt.h,
4012         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4013         parameter of changePointer() from symbol* to sym_link*
4014         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4015         * src/SDCCsymt.c (compareType): void* type is castable to other
4016         pointers, but not necesarily an exact match.
4017         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4018         is no longer blindly treated as an exact match.
4019         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4020
4021 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4022
4023         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4024
4025 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4026
4027         * src/pic/gen.c,
4028         * src/pic/pcode.c,
4029         * src/pic/ralloc.h,
4030         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4031
4032 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4033
4034         * src/pic/device.c,
4035         * src/pic/device.h,
4036         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4037
4038 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4039
4040         * src/mcs51/gen.c (emitcode): fixed bug #992819
4041
4042 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4043
4044         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4045           there's no need to make it worse
4046
4047 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4048
4049         * src/mcs51/ralloc.c (deassignLR),
4050         * src/ds390/ralloc.c (deassignLR),
4051         * src/hc08/ralloc.c (deassignLR),
4052         * src/z80/ralloc.c (deassignLR),
4053         * src/pic/ralloc.c (deassignLR),
4054         * src/pic16/ralloc.c (deassignLR),
4055         * src/avr/ralloc.c (deassignLR),
4056         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4057         rlivePoint): fixed another part of bug #971834
4058
4059 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/z80/main.c: enabled "critical" keyword
4062         * src/z80/mappings.i,
4063         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4064         functions (fixes bug #979646)
4065         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4066
4067 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4068
4069         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4070           such as c:\mydir.
4071
4072 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4073
4074         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4075           doesn't disable too much optimizations
4076
4077 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4078
4079         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4080
4081 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4082
4083         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4084
4085 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4086
4087         * src/pic/gen.c tidied up tabs
4088         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4089         * src/pic/main.c tidied up tabs
4090         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4091         * src/pic/pcoderegs.c tidied up tabs
4092         * src/pic/ralloc.c tidied up tabs
4093
4094 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4095
4096         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4097         to S_FIXED for pic16 port and when symbol is not in level 0,
4098         allocate for S_REGISTER storage class and pic16 port, too,
4099         * src/pic16/device.h: prototype for checkSym,
4100         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4101         * (pic16_assignConfigWordValue): test the value and the mask to
4102         validate that the value is suitable for the configuration word,
4103         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4104         collect extern declared symbols, don't emit symbol twice, check
4105         first if symbol is in publics set first,
4106         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4107         * added command line '--fstack' which enables an experimental
4108         feature for stack access, too buggy to be used yet...
4109         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4110         * (pic16_allocDirReg): when register has storage class S_REGISTER
4111         allocate in pic16_dynAccessRegs,
4112         * device/include/pic16/pic18f????.h: modified configuration word
4113         naming convention, words started as CONFIG0H but should be CONFIG1H
4114
4115 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4116
4117         * device/include/mcs51reg.h: fixed bug 970993
4118
4119 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4120
4121         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4122         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4123         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4124         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4125         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4126         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4127           error/warning numbers,
4128           added function setWarningDisabled()
4129         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4130         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4131           _memcmp.c _memmove.c calloc.c realloc.c free.c
4132         * support/regression/tests/malloc.c: added tests for new functionality
4133         * support/regression/tests/zeropad.c: added tests for truncated initializers
4134           and initialized char arrays starting with '\x0'
4135         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4136
4137 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4138
4139         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4140
4141 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4142
4143         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4144         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4145         peephole 177.e. Thanks to anonymous
4146
4147 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4148
4149         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4150         function isn't used in the source but referenced as a
4151         variable initializer then declare it as extern in .asm file
4152
4153 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4154
4155         * .version: increased version number to 2.4.3
4156
4157         Adding version extension according to ChangeLog CVS revision
4158         * src/Makefile.in (target all): added dependency 'version.h'
4159         * (rule version.h): added rule to create version.h from ChangeLog,
4160         * (rule dep): added dependency version.h,
4161         * src/version.awk: AWK script to create version.h
4162         * src/SDCCdwarf2.c (dwWriteModule),
4163         * src/SDCCglue.c (initialComments),
4164         * src/SDCCmain.c (printVersionInfo): modified to write after
4165         version string the version extension number,
4166         * src/SDCCutil.c: included "version.h"
4167         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4168         number,
4169         * src/SDCCutil.h: added prototype for getBuildNumber
4170
4171         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4172         includeDirsSet, too,
4173         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4174         const char [] is found in function prototype...
4175
4176         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4177         moving to WREG with source is already in WREG,
4178         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4179         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4180         * (aopForSym): stack'ed symbols are partially supported, added
4181         if-clause to support symbols in FARSPACE,
4182         * (sameRegs): added test for AOP_ACC to see if registers are same,
4183         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4184         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4185         * (pic16_popRegFromString): will not allocate a new register if it
4186         doesn't find one by name, bug may have introduced...
4187         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4188         * (genIpush): revived to use pic16 port's stack,
4189         * (genAddrOf): added incomplete case for stack'ed operand,
4190         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4191         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4192         can handle multibyte operands,
4193         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4194         * (pic16initialComments): added message for MPLAB compatibility
4195         mode enabled,
4196         * src/pic16/main.h: prototype for pic16_mplab_comp,
4197         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4198         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4199         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4200         because of increased complexity of procedure,
4201         * (_process_pragma): stack pragma changed to format 'stack pos len',
4202         emit symbol '_stack_end' to conform with gplink,
4203         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4204         to search for register,
4205         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4206         PO_GPR_REGISTER,
4207         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4208         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4209         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4210         case for PO_GPR_REGISTER,
4211         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4212         dies, the new era is ahead !...
4213         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4214         pic16_dynInternalRegs,
4215         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4216         * (pic16_allocDirReg): minor optimizations and bug fixes,
4217         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4218
4219         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4220         load stack and frame pointer with address of 'stack_end' symbol
4221
4222 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4223
4224         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4225         without source code but only variable initializers
4226
4227 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4228
4229         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4230         external are not declared as extern to reduce overhead while linking
4231
4232 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4233
4234         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4235
4236 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4237
4238         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4239           Yee Keat for the patch
4240         * src/SDCCast.c (decorateType): fixed bug #979599
4241         * src/ds390/gen.h: removed local fReturnSizeDS390
4242         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4243         * src/ds390/gen.c (genAnd, genOr, genXor),
4244         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4245
4246 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4247
4248         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4249         add relFilesSet to $3, manipulate $2 to handle linking of object
4250         files without source files in command line,
4251         * device/include/pic16 (all headers): added ID location macros,
4252         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4253         entries for ID location bytes,
4254         * (pic16_assignIdByteValue): NEW,
4255         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4256         added field dumpcalltree to pic16_options_t,
4257         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4258         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4259         emitting rFalseIfx label after check_carry label,
4260         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4261         pic16_emitDIRegs), NEW
4262         * (pic16glue): dump .calltree file when option --calltree found,
4263         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4264         * (_pic16_genAssemblerPreamble): emit ID locations after
4265         configuration registers,
4266         * (pic16_linkCmd): modifications of the link command,
4267         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4268         * (pic16_pCodeInitRegisters): don't init stack registers,
4269         * (pic16_findPrevInstruction): fixed bug,
4270         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4271         bug with immediate registers,
4272         * (buildCallTree): traces stack push and pop,
4273         * (pct2): dump also stack usage for each function,
4274         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4275         * (pic16_allocDirReg): various modifications,
4276         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4277         fixed to 1,
4278
4279 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4280
4281         * src/pic16/pcode.c: removed buggy double colon
4282
4283 2004-07-01 Borut Razem <borut.razem AT siol.net>
4284
4285         * support/scripts/sdcc.nsi: added include/pic16 to setup
4286
4287 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4288
4289         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4290         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4291         target 'clean',
4292         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4293         specific command line arguments. Also added sample lkr script
4294         for placing a variable at a specific memory bank.
4295         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4296         at a specific memory bank,
4297         * (pic16_dump_isection): fixed bug which caused string literals to
4298         be omitted when dumping idata section,
4299         * (pic16_groupRegistersInSection): added code to handle registers
4300         in specific memory banks,
4301         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4302         public, all references are renamed too,
4303         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4304         AOP_DPTR2,
4305         * (pic16_storeForReturn): added case to handle when dest is WREG,
4306         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4307         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4308         pic16_rel_udata, check to see if that register is marked as being
4309         a member of a specific memory bank,
4310         * (pic16_printIvalCharPtr): added code to add string literals either
4311         to code or the idata sections,
4312         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4313         also accept the 'udata' pragma,
4314         * src/pic16/main.h: new structure types sectName and sectSym
4315         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4316         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4317         * (pic16_findPrevInstruction): fixed, it returned nothing,
4318         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4319         instruction combinations,
4320         * (pic16_FixRegisterBanking): heavily reorganised,
4321         * (pic16_AnalyzeBanking): if generating banksel directives is
4322         disabled, then don't call FixRegisterBanking at all,
4323         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4324         completely removed,
4325         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4326
4327 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4328
4329         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4330         Phuah Yee Keat <yk.phuah AT nestac.com>
4331
4332 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4333
4334         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4335         correctly the IVT even if it is relocated to some other location
4336
4337 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4338
4339         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4340         * device/include/pic16/pic18f2220.h: NEW,
4341         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4342         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4343         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4344         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4345         nodefaultlibs, ivt_loc is the location of the interrupt vector
4346         table, and nodefaultlibs signs that default libraries should not be
4347         linked in link stage,
4348         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4349         according to --ivt-loc argument,
4350         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4351         when pragma stack is found,
4352
4353 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4354
4355         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4356         256 (range check), 257 (do while), 258.a-f (bit banging
4357         f.e. on 3-wire SPI bus)
4358
4359 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4360
4361         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4362         variables used exclusively within a loop
4363
4364 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4365
4366         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4367
4368 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4369
4370         * src/SDCClrange.c (computeClash): fixed bug #971834
4371
4372 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4373
4374         * src/mcs51/gen.c (genCmp): fixed bug #975903
4375         * src/hc08/gen.c (operandsEqu),
4376         * src/ds390/gen.c (operandsEqu),
4377         * src/z80/gen.c (operandsEqu),
4378         * src/pic/gen.c (operandsEqu),
4379         * src/pic16/gen.c (operandsEqu),
4380         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4381         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4382
4383 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4384
4385         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4386
4387 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4388
4389         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4390         default case in switch statement,
4391         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4392         to eliminate problem with initialisation of pointers, but problem
4393         still exists,
4394         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4395         * (emitStaticSegment): removed various lines emitting debug info,
4396         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4397         added processor registers for utilizing EEPROM,
4398         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4399         configurable and set 8
4400
4401 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4402
4403         * .version: increased version number to 2.4.2,
4404
4405         Cumulative patch for pic16 port
4406         * src/pic16/device.c: changed scheme to dump initial values for
4407         variables in idata segment, all print_idata* functions were removed,
4408         now the pic16_printIval* will be called,
4409         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4410         * _pic16_printPointerType, pic16_printPointerType,
4411         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4412         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4413         NEW, similar to the respective functions in SDCCglue.c,
4414         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4415         way, emitting hex bytes,
4416         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4417
4418 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/avr/ralloc.c (serialRegAssign),
4421         * src/xa51/ralloc.c (serialRegAssign),
4422         * src/pic/ralloc.c (serialRegAssign),
4423         * src/pic16/ralloc.c (serialRegAssign),
4424         * src/hc08/ralloc.c (serialRegAssign),
4425         * src/z80/ralloc.c (serialRegAssign),
4426         * src/ds390/ralloc.c (serialRegAssign),
4427         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4428
4429 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4430
4431         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4432         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4433
4434 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4435
4436         Cumulative patch for pic16 port:
4437         * src/pic16/device.h (typedef PIC16_device) modified fields for
4438         defining microcontrollers,
4439         * src/pic16/device.c: added new info for all devices in Pics16 array,
4440         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4441         to be optimised out by the pCode optimiser,
4442         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4443         specially, bug reported by G.M. Gallant,
4444         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4445         as force'd so that cannot be optimised out by pCode optimiser,
4446         * src/pic16/pcode.c,
4447         * src/pic16/pcodepeeph.c,
4448         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4449         they are disabled by default, but can be enabled explicit with
4450         command argument --denable-peeps, for testing,
4451         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4452         --pomit-ivt in COMPILE_FLAGS
4453
4454 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4455
4456         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4457           compilation on MSVC
4458
4459 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4460
4461         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4462
4463 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4464
4465         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4466         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4467
4468 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4469
4470         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4471         would only assign 0x300001 register.
4472
4473 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4474
4475         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4476         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4477
4478 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4479
4480         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4481         for ds80c400
4482         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4483         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4484         added peephole 254 (left shift), 255 (jump table)
4485
4486 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4487
4488         * device/lib/Makefile.in: removed comment line with model-pic16,
4489         * (target port-specific-objects-pic16): the libraries and objects
4490         are copied to the build directory form the device/lib/pic16/bin
4491         directory
4492
4493         Cumulative patch concerning pic16 port:
4494         * library directory has been re-organized,
4495         * added support for PIC18F1220,
4496         * added headers and library sources for chips 18f1220,18f6520,
4497         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4498
4499         * configuration registers setting has changed, now each supported
4500         device has a complete description of the registers it uses,
4501         * all initialisations are moved to idata sections, these section
4502         can be absolute or relocatable,
4503         * fixed initialisation of codespace variables,
4504         * fixed warning about PCLATU and gpsim,
4505         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4506         * (genAssign): use table reads when assigning from variables in codespace,
4507         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4508         char/int variables placed in codespace,
4509         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4510         registers set in .asm file, no need for --pomit-config-words anymore,
4511         * (pic16glue): some 8051 legacy segments are commented out
4512         (to be removed completely),
4513         * added support for alternative assembler and linker with --asm=
4514         and --link= command line arguments,
4515         * peepholes are disabled automatically in the port, no need to
4516         specify on command line,
4517         * port supports natively char/int/long multiplication, but converts
4518         all divisions to support functions,
4519         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4520         to the file set in variable $2,
4521         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4522         strings in ASCII format and not in hex,
4523         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4524         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4525         allocate proper register if iCodes aren't temporary,
4526
4527 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4528
4529         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4530
4531 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4532
4533         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4534         is commented out
4535
4536 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4537
4538         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4539         computed address is reused
4540         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4541         multi-byte bitfields
4542
4543 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4544
4545         * src/z80/gen.c: (genArrayInit): must check for pointers too
4546
4547 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4548
4549         * support/regression/tests/zeropad.c: never meant to commit the
4550           nestedstruct test: removed, added check for GCC version
4551
4552 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4553
4554         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4555         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4556         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4557           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4558           bugs 928906 and 954082 half-empty initializers
4559         * src/SDCCsymt.h,
4560         * src/SDCCsymt.c (getAllocSize): added for above fix
4561         * src/z80/gen.c (genArrayInit): fixed bug 741044
4562         * support/regression/tests/zeropad.c: added tests
4563
4564 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4565
4566         * src/pic16/device.c (pic16_dump_section): corrected bug which
4567         caused some symbols of the libraries to be misplaced
4568
4569 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4570
4571         * src/pic16/glue.c,
4572         * src/pic16/ralloc.h,
4573         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4574         to fix conflict with pic port
4575
4576 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4577
4578         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4579         externs configuration variables,
4580         * src/pic16/ralloc.h,
4581         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4582         prototype in header, commented out some debug messages
4583
4584 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4585
4586         * src/pic16/glue.c,
4587         * src/pic16/main.c,
4588         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4589         for gpasm COFF object generation. Thanks to D. Hawkins for
4590         his patch info
4591
4592 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4593
4594         * src/ds390/main.c,
4595         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4596         Brock for spotting this)
4597         * src/ds390/gen.c (genEndFunction),
4598         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4599         interrupt handler and critical. Disable push/pop optimizations when
4600         peephole optimizations disabled.
4601
4602 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4603
4604         Updated pic16 library sources and headers.
4605         * device/lib/pic16/pic18f*/ ,
4606         * device/include/pic16/*.h: modified to handle structured SFR
4607         definitions
4608
4609 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4610
4611         * src/port.h (PORT structure): added hook initPaths, now each
4612         port can declare its own default search paths,
4613         which can been seen with the --print-search-dirs option,
4614         see pic16 port for example,
4615         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4616         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4617         * (doPrintSearchDirs): NEW, replaces in a central manner the
4618         printing of search dirs which was split in set*Paths functions,
4619         * (main): added call to port->initPaths and doPrintSearchDirs,
4620         * src/avr/main.c,
4621         * src/ds390/main.c,
4622         * src/hc08/main.c,
4623         * src/izt/i186.c,
4624         * src/izt/tlcs900h.c,
4625         * src/mcs51/main.c,
4626         * src/pic/main.c,
4627         * src/pic16/main.c: modified port structures to reflect addition of
4628         initPaths hook,
4629
4630         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4631         * (pic16_dump_section): for registers in same address reserve memory once,
4632         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4633         to no_banksel,
4634         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4635         result is greater in size than right or left,
4636         * (pic16_genUMult8X8_8): there are some cases where the result can
4637         be 16 bits size, so handle these,
4638         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4639         * (pic16_outBitC): modified to emit pcodes,
4640         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4641         or not,
4642         * (genDivOneByte): implemented algorithm to divide 8-bits,
4643         * (genCmp): uncommented goto, but issues still exist,
4644         * (genAnd): fixed a bug with variables >8bits,
4645         * (genPackBits): optimization added that uses BCF/BSF to change a
4646         single bit,
4647         * (genAssign): fixed bug when assigning floating point literals,
4648         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4649         __sdcc_gsinit_startup label,
4650         * src/pic16/main.c (_pic16_init): removed search directory
4651         initialisations,
4652         * (_pic16_initPaths): NEW, used to initialise search directories,
4653         * (_hasNativeMulFor): support functions for all except char/int
4654         multiplication, and char division,
4655         * (PIC16_port struct): modified entry for native mul support,
4656         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4657         no_banksel option,
4658         * (buildCallTree): call to register_usage is ifdef'ed out,
4659
4660 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * device/include/string.h: applied Stas Sergeev's patch to make this
4663         header file compatible with the preprocessor -Wundef option
4664         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4665         failure (fixes bug #941458)
4666
4667 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4668
4669         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4670         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4671         that the variable, not the function, should be static
4672         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4673         to be consistent with non-literal case
4674
4675 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/SDCCast.c (isConformingBody): fixed bug #949967
4678         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4679         convilong): fixed bug #952086
4680
4681 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4682
4683         * src/SDCCmem.c (allocVariables): fixed bug #955321
4684
4685 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4686
4687         * src/hc08/main.c (_hc08_genAssemblerEnd),
4688         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4689         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4690         completely eliminated the use of a temporary file
4691         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4692         when more than one file linked
4693         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4694
4695 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4696
4697         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4698         which fixes bug #543481
4699         * support/regression/tests/bug-751703.c: fixed comments left from a
4700         cut and paste error
4701         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4702         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4703         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4704         scopes
4705         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4706         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4707         are now changed to underscores in moduleName
4708
4709 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4710
4711         * as/mcs51/lkmem.c: better fix for bug #954173
4712
4713 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4714         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4715
4716         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4717         * device/include/c8051f000.h,
4718         * device/include/c8051f120.h,
4719         * device/include/c8051f300.h,
4720         * device/include/c8051f310.h,
4721         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4722         PWM16) and detab'ed
4723
4724 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4725
4726         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4727         and mailing lists, doc'ed --no-peep-comments, removed reference
4728         to knoppix (newest version has no LyX/LaTeX), other minor changes
4729         * src/SDCCglue.c (glue): save 2 bytes stack space with
4730         option --main-return. The ljmp could probably be avoided too
4731
4732 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4733
4734         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4735
4736 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4737
4738         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4739         * src/SDCCopt.c (isLocalWithoutDef),
4740         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4741         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4742         (credit to Maarten Brock for patch #949363, on which this is based)
4743         * support/regression/tests/bug-751703.c: some test cases of extern used
4744         within inner scopes.
4745
4746 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4747
4748         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4749         SPEC_STRUCT
4750         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4751         struct definitions
4752         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4753         dwWriteLabel): fix to create valid debugger symbols even when
4754         the module name has non-alphanumeric symbols in it
4755         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4756         when a variable's allocation has been optimized away
4757
4758
4759 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4760
4761         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4762         * src/hc08/main.c,
4763         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4764         * src/mcs51/main.c,
4765         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4766         * src/ds390/main.c,
4767         * src/z80/gen.c (z80_emitDebuggerSymbol),
4768         * src/z80/main.c,
4769         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4770         * src/pic/main.c,
4771         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4772         * src/pic16/main.c,
4773         * src/avr/gen.c (avr_emitDebuggerSymbol),
4774         * src/avr/main.c,
4775         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4776         * src/xa51/main.c,
4777         * src/SDCCdebug.c (emitDebuggerSymbol),
4778         * src/SDCCdebug.h,
4779         * src/port.h: added a debugger struct to the port struct. Added a
4780         callback for defining debugger symbols
4781
4782         * src/SDCCast.c (createLabel),
4783         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4784         with isitmp = 1
4785         * src/SDCCicode.h,
4786         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4787         iCode back to the ast for the function
4788
4789         * src/hc08/ralloc.c (hc08_assignRegisters),
4790         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4791         unneeded fields from the regs struct.
4792         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4793         pushReg() & pullReg() functions instead of emitcode()
4794
4795         * src/hc08/gen.c (genLabel, genhc08Code),
4796         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4797
4798         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4799         debugger hooks
4800
4801         * src/hc08/gen.c (genEndFunction, genhc08Code),
4802         * src/hc08/gen.h,
4803         * src/mcs51/gen.c (genEndFunction, gen51Code),
4804         * src/mcs51/gen.h,
4805         * src/ds390/gen.c (genEndFunction, gen390Code),
4806         * src/ds390/gen.h,
4807         * src/z80/gen.c (genEndFunction, genZ80Code),
4808         * src/z80/gen.h,
4809         * src/z80/z80.h,
4810         * src/pic/gen.c (genEndFunction, genpic14Code),
4811         * src/pic/gen.h,
4812         * src/pic16/gen.c (genEndFunction, genpic16Code),
4813         * src/pic16/gen.h,
4814         * src/avr/gen.c (genEndFunction, genAVRCode),
4815         * src/avr/gen.h,
4816         * src/xa51/gen.c (genEndFunction, genXA51Code),
4817         * src/xa51/gen.h,
4818         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4819         specific code to cdbFile.c and out of the backend code generators
4820
4821         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4822         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4823         starting address is now 0
4824
4825         * as/hc08/asm.h,
4826         * as/hc08/m08pst.c,
4827         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4828         assembler directive for DWARF support
4829         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4830
4831         * src/src.dsp,
4832         * src/Makefile.in,
4833         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4834
4835 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4836
4837         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4838         and inappropriate peephole optimization in jump tables
4839
4840 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4841
4842         * as/hc08/m08pst.c,
4843         * src/SDCCglue.c: sdccopt works for the hc08 port now
4844
4845 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4846
4847         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4848
4849 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4850
4851         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4852
4853 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4854
4855         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4856         rules
4857         * src/SDCCmain.c,
4858         * src/SDCCglobl.h,
4859         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4860         comments from the peephole optimizer replacement rules
4861         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4862         symbols
4863         * src/SDCCcse.c (updateSpillLocation),
4864         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4865         equivalents
4866         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4867         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4868         objects far pointers
4869
4870 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4871
4872         * src/SDCCsymt.h: a missing part of my last change
4873         * src/pic/ralloc.c (regTypeNum),
4874         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4875
4876 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4877
4878         * src/SDCCicode.h,
4879         * src/SDCCicode.c (aggrToPtrDclType),
4880         * src/SDCCptropt.h,
4881         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4882         ptrPseudoSymConvert),
4883         * src/pic/ralloc.c (regTypeNum),
4884         * src/pic16/ralloc.c (regTypeNum),
4885         * src/hc08/ralloc.c (regTypeNum),
4886         * src/ds390/ralloc.c (regTypeNum),
4887         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4888         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4889
4890 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4891
4892         * link/z80/lkmain.c (afile),
4893         * as/hc08/lkmain.c (afile),
4894         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4895         prevent a pointer problem when a filename has no directory and
4896         no extension specified.
4897
4898 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4899
4900         * link/z80/lkmain.c (afile): allow periods in directory names
4901         * link/z80/lkmain.c (afile),
4902         * as/mcs51/lkmain.c (afile),
4903         * as/hc08/lkmain.c (afile): allow linker script file to have an
4904         extension other than ".lnk"
4905         * link/z80/lklex.c (getfid),
4906         * link/z80/lkmain.c (parse),
4907         * as/mcs51/lklex.c (getfid),
4908         * as/mcs51/lkmain.c (parse),
4909         * as/hc08/lklex.c (getfid),
4910         * as/hc08/lkmain.c (parse): Support comments in the linker script
4911         file on lines by themselves and after filenames
4912
4913 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4914
4915         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4916
4917 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4918
4919         * src/z80/peeph-z80.def: removed some peephole rules that don't
4920         work with multibyte arithmetic (fixed bug #937126)
4921         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4922         to registers and not global variables
4923         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4924         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4925         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4926         checking for assignments not internally generated (fixed bug #931895)
4927         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4928         structure member (fixed bug #930072)
4929
4930 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4931
4932         * src/SDCCmain.c (linkEdit),
4933         * src/hc08/main.c (_hc08_parseOptions),
4934         * as/hc08/Makefile.in,
4935         * as/hc08/aslink.h,
4936         * as/hc08/asm.h,
4937         * as/hc08/m08pst.c,
4938         * as/hc08/lkrloc.c (relr, rele),
4939         * as/hc08/lkarea.c (lnkarea)
4940         * as/hc08/lkmain.c (afile, parse),
4941         * as/hc08/lkelf.c: support for ELF output
4942         * as/hc08/lks19.c (s19),
4943         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4944
4945 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4946
4947         * as/mcs51/lkihx.c: Fixed bug #899105.
4948
4949 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4950
4951         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4952         .dsp files from Unix to DOS.
4953
4954 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4957         function pointers; we have been compliant for several months now.
4958         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4959         change that was accidently commented out
4960         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4961         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4962         bug #922319
4963
4964 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4965
4966         * src/hc08/gen.c: output of all of the internal debugging information
4967         is now controlled by the D() macro; it is disabled by default
4968
4969 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4970
4971         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4972         harder to keep the same registers during a CAST iCode
4973         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4974         long via int can be done in a single cast, if the signedness is
4975         correct.
4976         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4977         putchar() in tinibios.c in ds390's library
4978
4979 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4980
4981         * src/SDCCast.c (decorateType): fixed bug #898889,
4982         cast result of a literal complement too
4983         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4984         fixed check for bitfields
4985
4986 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4987
4988         * src/SDCCicode.c (geniCodeLogic): made it static,
4989         (geniCodeLogicAndOr): added in order to fix bug #905492,
4990         (ast2iCode): fixed bug #905492
4991         * support/regression/tests/bug-905492.c: added
4992         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4993         (processParms): fixed bug #927659: don't copy parms, this will clear
4994         decorated flag
4995         * support/regression/tests/bug-927659.c: added
4996
4997 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4998
4999         * src/SDCCast.c (addCast): don't cast float to char
5000         * device/lib/libsdcc.lib: added _memmove
5001
5002 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5003
5004         * device/lib/large/Makefile: fixed parallel execution by
5005         replacing `make` by `$(MAKE)`
5006
5007 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5010         offsets (fixes bug #923936)
5011
5012 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5013
5014         * device/lib/small/Makefile: fixed parallel execution by
5015         replacing `make` by `$(MAKE)`
5016
5017 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5018
5019         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5020
5021 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5022
5023         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5024         * src/regression/Makefile: Regression test was not running.
5025
5026 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5027
5028         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5029         complement if possible
5030         * src/SDCCval.c (valComplement),
5031         * src/SDCCicode.c (operandOperation): fixed complement of literal
5032         * support/regression/tests/onebyte.c (testComplement): added
5033
5034 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5035
5036         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5037         return an optimized tree; actually replace actParm with the new tree
5038         * src/SDCCast.h: added some parantheses to remove side effects
5039         * support/regression/tests/bug-920866.c
5040
5041 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5042         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5043         Bit operands were not being handled properly in the pic14 port.
5044         (now src/regression/add.c passes again).
5045
5046 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/SDCC.y (labeled_statement): case and default no longer require
5049         a following statement (RFE #893037)
5050
5051 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5054         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5055         disabled (fixes bug #916294)
5056         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5057         "mov a,acc"; patch provided by Lenny Story
5058         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5059
5060 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5063         functions
5064         * src/ds390/gen.c (genFunction, genEndFunction),
5065         * src/ds390/ralloc.c (ds390_assignRegisters),
5066         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5067         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5068         pushed if there are parameters passed on the stack. Also, a cleaner
5069         way to decide if r0/r1 should be pushed/popped. (Together they fix
5070         bug #918693)
5071
5072 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5073
5074         * doc/sdccman.lyx,
5075         * device/lib/mcs51/crtpagesfr.asm,
5076         * device/lib/mcs51/crtxinit.asm,
5077         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5078         to avoid confusion with Si Lab's SFRPAGE register.
5079
5080 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5081
5082         * src/SDCCglue.c (emitMaps): allow public sfr variables
5083         * src/SDCCglue.c (initialComments): include compiler build date
5084         with compiler version and put the timestamp of the generated
5085         assembly file on a serperate line to be less confusing.
5086         * src/port.h: added genInitStartup hook
5087         * src/avr/main.c,
5088         * src/ds390/main.c,
5089         * src/hc08/main.c,
5090         * src/pic/main.c,
5091         * src/pic16/main.c,
5092         * src/xa51/main.c,
5093         * src/z80/main.c: genInitStartup initialize as NULL (default to
5094         historical behaviour)
5095         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5096         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5097         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5098         library instead of hard coding it into the compiler.
5099         * support/regression/ports/mcs51-stack-auto/spec.mk,
5100         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5101         * device/lib/mcs51/Makefile,
5102         * device/lib/small/Makefile,
5103         * device/lib/large/Makefile,
5104         * device/lib/mcs51/crtpagesfr.asm,
5105         * device/lib/mcs51/crtstart.asm,
5106         * device/lib/mcs51/crtxclear.asm,
5107         * device/lib/mcs51/crtxinit.asm,
5108         * device/lib/mcs51/crtclear.asm,
5109         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5110         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5111         and into user configurable files.
5112         * device/lib/clean.mk: clean mcs51 directory too
5113         * support/regression/tests/longlit.c: added static to T1 declaration
5114         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5115         accesses in the initialization code
5116
5117 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5120         OSCTRIMVAL as noted in bug #916008
5121
5122 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5125         in loops with multiple exits (reported as incorrect registers
5126         used by Martin Helmling in Sdcc-user list)
5127
5128 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5129
5130         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5131         made ds390 register extensions look less like error messages
5132
5133 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5134
5135         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5136         reported by Adam Wozniak in Sdcc-user list
5137
5138 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5139
5140         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5141         arithmetic optimizations, added debug output
5142
5143 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5144
5145         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5146         * sdcc.spec: updated and split sdcc into 3 rpms
5147         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5148         needed for literals of LEFT_OP and '+'
5149         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5150         introduced RESULT_TYPE_NOPROM
5151         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5152         left shift
5153         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5154         limited promotion to int only for '*'
5155         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5156
5157 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5158
5159         * src/pic16/gen.c (genSkip),
5160         (genc16bit2lit), (gencjneshort): commented out
5161         (is_LitOp): new helper function, checks operand type
5162         (genCmpEq): rewritten
5163
5164 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5165
5166         * support/regression/tests/bug-908454.c: added
5167
5168 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5169
5170         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5171         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5172         (geniCodeCast): cosmetic, don't preserve bit storage class
5173         (geniCodeLeftShift): added promotion
5174         (geniCodeLogic): fixed regression
5175         * src/SDCCsymt.c (computeTypeOr): accept bits too
5176         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5177
5178 2004-03-07  Borut Razem <borut.razem AT siol.net>
5179
5180         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5181
5182 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5183
5184         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5185         version of pic16_genPackRegisters which does not check if ic is a
5186         CAST operator,
5187         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5188         function cause string1.c regression test fails
5189
5190 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5191
5192         * sim/ucsim/configure.in,
5193         * sim/ucsim/configure,
5194         * sim/ucsim/doc/Makefile.in: use docdir
5195         * src/SDCC.y: fixed sbit atrributes
5196         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5197         * src/SDCCast.c (decorateType): |^& need special promotion handling
5198         * src/SDCCast.h,
5199         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5200         * src/SDCCsymt.h (computeType),
5201         * src/SDCCicode.c: computeType() needs op
5202         * src/SDCCsymt.c (checkTypeSanity),
5203         * doc/sddman.lyx: "plain" bitfields are unsigned
5204         * src/SDCCsymt.c (computeTypeOr): added
5205         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5206         |^& ops
5207         * src/SDCCval.c (val*): computeType() needs op
5208         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5209         * support/regression/tests/onebyte.c: added tests for |^&
5210
5211 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5212
5213         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5214         for writing icode into asm output.
5215
5216 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5217
5218         * src/pic16/device.c: added some debug lines enabled
5219         with macro DEBUG_CHECK,
5220         * src/pic16/genarith.c: more debug in genPlus,
5221         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5222         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5223         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5224         * (aopForSym): onStack symbols are re-placed in data memspace,
5225         and onStack flag is cleared,
5226         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5227         copy temporary pcodeop,
5228         * (genPcall): added warning for not updating PCLATU,
5229         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5230         always true for pic16 port,
5231         * (genMultOneWord): NEW, supports integer multiplication,
5232         * (genMult): modified to call genMultOneWord,
5233         * (ifxForOp): added warning when return NULL,
5234         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5235         flag is set before call to operandFromSymbol for implicit
5236         added structures,
5237         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5238         options.intlong_rent are set by default,
5239         * (_hasNativeMulFor): modified to allow port generation of integer
5240         multiplication,
5241         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5242         set regtype to REG_SFR for all registers, restricting seting the
5243         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5244
5245 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5246
5247         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5248         more than 500 times in the regression tests
5249
5250 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5251
5252         * support/Util/SDCCerr.h,
5253         * support/Util/SDCCerr.c,
5254         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5255         enumerator_list),
5256         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5257         for symbol conflicts.
5258         * support/valdiags/tests/enum.c,
5259         * support/valdiags/tests/tentdecl.c,
5260         * support/valdiags/tests/struct.c: expect possible error messages
5261         referring to original symbol definitions.
5262         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5263         * src/SDCCsymt.h,
5264         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5265
5266 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5267
5268         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5269
5270 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5271
5272         * src/pic16/ralloc.c (newReg): fixed bug #908929
5273
5274 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * src/ds390/gen.c: added missing #include "main.h"
5277
5278 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5279
5280         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5281         checking if symbol is already in set,
5282         * src/pic16/device.h: prototype for checkAddSym,
5283         * src/pic16/gen.c: (_G): added entry interruptvector,
5284         * (assignResultValue): removed some commented out lines,
5285         * (genFunction): check for ISR via sym->type, absolute section for
5286         interrupt code is created via a new pBlock, the goto instruction is
5287         placed now correctly at the interrupt vector position, changed all
5288         references from ivec to _G.interruptvector,
5289         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5290         is the interrupt is a high priority one, same for return from ISR,
5291         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5292         externs to calls of checkAddSym,
5293         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5294         pic16_pcode_verbose flag is set,
5295         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5296         * src/pic16/pcoderegs.c: message about how many registers are saved
5297         will only be emitted if pic16_pcode_verbose flag is set,
5298
5299 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5300
5301         * src/ds390/ralloc.h,
5302         * src/ds390/ralloc.c (ds390_regWithIdx),
5303         * src/ds390/gen.c (emitcode),
5304         * src/ds390/main.h,
5305         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5306         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5307         ds390operandCompare, getRegsRead, getRegsWritten,
5308         initializeAsmLineNode): customized instruction size calculation for
5309         ds390, started basis for some register optimizations
5310         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5311         corresponding assembly output
5312         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5313         missing push/pop of r0/r1. Optimized push/pops
5314
5315 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5316
5317         * src/mcs51/main.c (instructionSize): fixed ACALL size
5318         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5319
5320 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5321
5322         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5323         the sorting of rlist with NULL elements
5324         * (print_idataType, print_idata): NEW to create idata sections
5325         * src/pic16/device.h: idataSymSet new variable
5326         * src/pic16/gen.c (genFunction): fixed some bugs in string
5327         comparing, improved the absolute section creation for ISRs,
5328         added FSR0L/FSR0H in registers that are saved in an ISR,
5329         * (genInline): fixed the processing of inline snippets,
5330         now they undergo no process by the peephole optimizer
5331         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5332         are placed in idataSymSet,
5333         * (pic16emitStaticSeg): extern symbols are added in externs,
5334         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5335         switching when aboslute variables are placed in access bank memory
5336         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5337         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5338         commented out with #if,
5339         * (pic16_packRegisters): reintroduce the check for CAST because some
5340         symbols are not correctly handled,
5341         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5342         pCodeInstruction instead of pCode,
5343         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5344         pCodeAsmDir definition,
5345         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5346         directive, then the argument directive is emitted without the leading
5347         tab, hack for inline labels which must be in the first column,
5348         * (compareLabel,pic16_findNextInstruction),
5349         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5350         * (insertBankSwitch): modified for the new pCodeAsmDir,
5351
5352 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5353         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5354
5355         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5356         instance,
5357         * (pushSide): commented out with #if,
5358         * (assignResultValue): fixed some typos in saving
5359         registers,
5360         * (genPcall): FIXED and sync'ed with genCall,
5361         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5362         * (genNearPointerGet): fixed to handle some more cases,
5363         implementation scheme via table reads,
5364         * (genConstPointerGet): modified to access code memory correct,
5365         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5366         and improved to handle some cases
5367         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5368         instead of "RETLW" for init data
5369         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5370         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5371         variables are placed in access bank memory (<0x80 and >=0xf80),
5372         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5373         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5374         TBLWT_POSTDEC,TBLWT_PREINC
5375         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5376         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5377         directives
5378         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5379         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5380         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5381         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5382
5383 2004-02-29  Borut Razem <borut.razem AT siol.net>
5384
5385         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5386         support/Util/findme.h, support/Util/system.h: enhance binary relative
5387         search for lib and include by using findProgramPath()
5388
5389 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5390
5391         * src/SDCCpeeph.h,
5392         * src/SDCCpeeph.c (pcDistance),
5393         * src/port.h,
5394         * src/mcs51/ralloc.h,
5395         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5396         * src/mcs51/main.h,
5397         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5398         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5399         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5400         size calculation port specific, started basis for some register
5401         optimizations
5402         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5403         missing push/pop of r0/r1. Optimized push/pops
5404         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5405         * device/lib/_modsint.c (_modsint),
5406         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5407         and stack version so regression tests pass
5408
5409 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5410
5411         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5412         * src/SDCCast.c (decorateType): catch another small optimization
5413         with '?' operator
5414         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5415         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5416         modified to finally use computeType() all over SDCC,
5417         see Feature Request #877103
5418         * src/SDCCval.h: cosmetic
5419         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5420         valCompare(); regression tested in muldiv.c
5421         * support/regression/tests/muldiv.c (testMod): mod sign follows
5422         dividend only
5423
5424 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5425
5426         * src/SDCCast.c (decorateType): fixed bug #902362
5427         * doc/INSTALL.txt: fixed install instructions for win32
5428
5429 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5430
5431         * device/include/Makefile.in (install): fixed by replacing spaces
5432         by tabs
5433         * doc/README.txt,
5434         * doc/INSTALL.txt: updated for release
5435         * doc/sdccman.lyx: added warning for --xstack being buggy
5436
5437 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5438
5439         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5440         to eliminate build warnings.
5441         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5442
5443 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5444            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5445
5446         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5447         removed -penable-stack, added comment for stack pragma, added
5448         warning for not initializing the stack/frame registers, removed
5449         comment at interrupts section
5450
5451         Stack is made permanent, there is no ability to disable stack usage.
5452         * src/pic16/device.h,
5453         * src/pic16/device.c: removed all references to USE_STACK macro,
5454         * src/pic16/device.c (pic16_dump_section): when no elements in
5455         rlist, free rlist before return,
5456         * (pic16_dump_int_registers): NEW, internal registers are a new set
5457         of general purpose registers reused by each function,
5458         * (checkAddReg): returns 1 if registers is added to set,
5459         * (pic16_groupRegistersInSection): when a registers is of type
5460         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5461         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5462         SRCASECMP macro is moved here from device.c
5463         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5464         PO_PCLATU, PO_PRODL, PO_PRODH,
5465         * (pic16_pCodeOpType, genMinus,
5466         changed compares to "a" register, with AOP_ACC,
5467         * (pic16_genPlus): fixed some bugs and indented properly,
5468         * (pic16_addSign): changed size to size+offset in the MOVWF
5469         instruction,
5470         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5471         multiply 8-bit operand by literal, result is 8-bit,
5472         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5473         multiply 2 8-bit operand, result is 8-bit,
5474         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5475         genUMult8X*_16,
5476         * src/pic16/gen.c: changed accUse to contain WREG only,
5477         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5478         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5479         true, do not use immediate addressing any more unless sym is a
5480         pointer in codespace,
5481         * (aopForRemat): do not use immediate addressing when symbol not in
5482         codespace and when symbol's address is requested,
5483         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5484         accUse size (= 1),
5485         * (aopGet): added case for AOP_ACC and don't return "accumulator
5486         bug" but WREG instead,
5487         * (popGetTempReg): pushes contents of temporary register in stack,
5488         * (popReleaseTempReg): pops contents of temporary register from
5489         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5490         * (pic16_popGet): separated case AOP_ACC to return register WREG
5491         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5492         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5493         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5494         the use of immediate pointers to certain cases only.
5495
5496         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5497         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5498         * (assignResultValue, genCall, genRet): modified to use the new
5499         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5500         genPcall is still broken,
5501         * (genFunction): added code to create 'A' type pBlocks when
5502         interrupt functions are generated, code not extensively tested yet,
5503         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5504         * (genEndFunction): modified so ISRs pop stored registers from stack,
5505         * (genMultOneByte): cleanup,
5506         * (AccRsh): added flag andmask, to and result with appropriate mask,
5507         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5508         * (genDataPointerGet): fixed and reenabled its use,
5509         * (genNearDataPointerGet): bugs fixed,
5510         * (genDataPointerSet): bugs fixed,
5511         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5512         pic16_DumpSymbol, pic16_DumpOp,
5513         * src/pic16/genutils.h: function prototypes for the above functions,
5514         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5515         pointers,
5516         * (pic16emitRegularMap): many many many improvements, but needs a
5517         major cleanup,
5518         * src/pic16/main.c: enable_stack in pic16_options is removed,
5519         * (_pic16_parseOptions): removed command line options -penable-stack,
5520         * (_process_pragma): emit stack symbol only when stack pragma is
5521         processed,
5522         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5523         redirected to FSR0L/FSR0H pair,
5524         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5525         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5526         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5527         for immediates,
5528         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5529         * (dumpPicOptype): NEW,
5530         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5531         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5532         with movff instruction,
5533         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5534         added pic16_int_regs, some packRegsFor* functions are commented out,
5535         because produce errors,
5536         * src/pic16/NOTES: minor modifications
5537
5538 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5539
5540         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5541         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5542         --pack-iram.
5543         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5544         * as/mcs51/lkaomf51.c: fixed bug #895763
5545
5546 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5547
5548         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5549
5550 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5551
5552         * doc/sdccman.lyx: added details about the HC08 storage classes and
5553         interrupts, fixed the register usage info for z80 & gbz80
5554
5555 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5556
5557         * doc/sdccman.lyx: added more pic16 port documentation
5558         * device/include/pic16/: added header pic18fregs.h
5559
5560 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5561
5562         * doc/sdccman.lyx: added Vangelis' contribution
5563
5564 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5567         extend to the next CALL or PCALL, not just to the next CALL.
5568
5569 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5570
5571         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5572
5573 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5576         bug #895752 and a better fix for bug #716790
5577
5578 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5579
5580         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5581
5582 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5583
5584         * doc/sdccman.lyx: minor changes, minor changed
5585
5586 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5587
5588         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5589         which can't handle SDCC_NEWONEBYTEOPS,
5590         (geniCodeMultiply): removed conversion from mult to shift for pic14
5591         and pic16
5592
5593 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5594
5595         * src/hc08/gen.h,
5596         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5597         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5598         thus fixing bug #895406
5599
5600 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5601
5602         * device/lib/_modsint.c,
5603         * device/lib/_modslong.c: sign follows divisor only
5604         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5605         signs or signedness can be ignored
5606         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5607         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5608         added optimization for IFX,
5609         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5610         arguments;
5611         reenabled optimization for IFX, which was removed on 2004-01-11
5612         * src/SDCCast.h: added return type IFX
5613         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5614         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5615         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5616         SDCC_OLDONEBYTEOPS selects the old behaviour
5617         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5618         changed again and commented promotion rule
5619         * src/SDCCval.c (valDiv): promotion no longer necessary
5620         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5621         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5622         rewritten
5623         * support/regression/tests/onebyte.c: added
5624
5625 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5626
5627         * gen.c (genInline): reverted to old code for assemnling inline
5628         code because of bug reported James Chadd
5629
5630 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5631
5632         * ralloc.h: missing declarations from previous patch,
5633         seems that patch for ralloc.h was never applied, fixed
5634
5635 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5636            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5637
5638         * pcode.c,
5639         * pcode.h,
5640         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5641         indirect addressing. Marked FSR0 as deprecated
5642         * gen.c (pointerCode): commented out, not needed now
5643         (pic16_popGet2p): new MOVFF helper function
5644         (genGenPointerGet),
5645         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5646         (shiftRLong): removed duplicate debugging info
5647
5648 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * src/ds390/gen.c (genNearPointerGet),
5651         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5652         optimization with bits, but not bitfields.
5653         * src/ds390/ralloc.c (packRegisters),
5654         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5655
5656 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5657
5658         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5659
5660 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5661
5662         * src/SDCCsymt.h,
5663         * src/SDCCicode.c (operandFromSymbol),
5664         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5665         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5666         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5667         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5668         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5669         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5670         bug #892038
5671         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5672         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5673         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5674         * src/SDCCsymt.c (newSymbol),
5675         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5676         enumerator_list),
5677         * src/SDCCval.h,
5678         * src/SDCCval.c (newiList): fixed bug #885705
5679
5680 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5681
5682         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5683         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5684
5685 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5686
5687         * device/include/c8051f120.h,
5688         * device/include/c8051f300.h,
5689         * device/include/c8051f310.h: added/updated header files for Silicon
5690         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5691         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5692         in new section Submitting patches
5693
5694 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5695
5696         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5697         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5698         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5699         genGenPointerSet),
5700         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5701         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5702         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5703         genGenPointerSet),
5704         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5705         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5706         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5707         genGenPointerSet),
5708         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5709         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5710         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5711         genGenPointerSet): fixed bug #892400
5712         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5713         to eliminate build warnings.
5714         * src/SDCCast.c (processParms),
5715         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5716         fixed bug 751859
5717         * support/valdiag/valdiag.py: added GCC to the list of defines active
5718         when compiling with gcc
5719
5720 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * support/Util/SDCCerr.h,
5723         * support/Util/SDCCerr.c,
5724         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5725         with an incomplete type (fixed bug #883734)
5726         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5727
5728 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5729
5730         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5731
5732 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5733
5734         * src/SDCCast.c (decorateType),
5735         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5736         function pointer implementation
5737         * support/regression/tests/funptrs.c: added tests to verify both forms
5738         of function pointers work correctly. Added tests to verify parameters
5739         are passed in the correct order.
5740
5741 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5742
5743         * device.c (regCompare): registers are sorted by ascending
5744         address and increasing size,
5745         * main.c (_pic16_finaliseOptions): removed the declaration
5746         of compiler macro MCU. Now a macro of the format pic18fxxxx
5747         will be defined from the command line
5748
5749 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5750             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5751
5752         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5753         PCOP_RLCF was overwritten!
5754         * gen.c (genSkip): commented out calls to pic16_emitcode,
5755         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5756         * (genlshTwo),
5757         * (genRRC): added debugging info,
5758         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5759         overwritten while shifting,
5760         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5761         overwritten while shifting,
5762         * (AccLsh),
5763         * (AccRsh),
5764         * (shiftLLeftOrResult),
5765         * (shiftRLeftOrResult),
5766         * (shiftRLong),
5767         * (shiftLLong): Implemented with pic16_emitpcode
5768         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5769         * (genLeftShift): Fixed bug, operand for shift by variable always
5770         was "and"ed with 0x0f,
5771         * (genLeftShiftLiteral),
5772         * (genrshTwo),
5773         * (genRightShiftLiteral): added debugging info,
5774         * (genrshFour): added comment,
5775         * (genRightShift): determined signedness from operand "left"
5776         instead of "result"
5777
5778 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5779
5780         * src/SDCCicode.c (geniCodeParms),
5781         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5782         function pointers, fixed function pointer bugs #861242 and #861896
5783
5784 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5785
5786         * device/include/c8051f000.h,
5787         * device/include/c8051f120.h,
5788         * device/include/c8051f300.h: added header files for Silicon
5789         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5790
5791 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5792
5793         * src/SDCCast.c (processParams): added new type flow and restructured
5794         (gatherAutoInit): added new type flow
5795         (addCast): cosmetic changes
5796         (getLeftResultType): added new type flow for array indices, patch
5797         provided by Stas, see FR #877103
5798         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5799         array index patch by Stas
5800         * src/SDCCast.h: added prototype getResultTypeFromType()
5801         * src/SDCCval.h,
5802         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5803         * src/pic/glue.c (pic14emitStaticSeg),
5804         * src/pic16/glue.c (pic16emitStaticSeg),
5805         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5806         for initialization of symbols
5807         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5808         * support/Util/SDCCerr.h:
5809         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5810         * .version: bumped version number to 2.3.8
5811         * device/include/Makefile.in (install),
5812         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5813         avoid warnings
5814
5815 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5816
5817         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5818         Slade Rich fixed an optimization bug
5819         * src/pic/pcodepeep.c,
5820         * src/pic/pcoderegs.c
5821         * doc/Makefile (install): added test for directory
5822
5823 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5824
5825         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5826         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5827         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5828         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5829         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5830         * as/mcs51/asexpr.c (term),
5831         * as/hc08/asexpr.c (term): fixed bug #887146
5832
5833 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5834
5835         * src/z80/gen.c (genMult): handle single byte result product
5836         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5837         DUMMY_READ_VOLATILE (fixed bug #886367)
5838
5839 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5840
5841         * support/regression/tests/libmullong.c: fixed logic, on little endian
5842         hosts we ended without a mullong_wrapper()
5843
5844 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5845
5846         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5847         virus/worm forged address usage.
5848
5849 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5850
5851         Fixed promotion, it should be done on AST level:
5852         * src/SDCCast.c (addCast): added promotion to int
5853         (decorateType): updated call to upCast()
5854         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5855         usualUnaryConversions()
5856
5857 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5858
5859         * support/regression/tests/literalop.c (mulWrapper): Added a
5860         wrapper to remove integer overflow warnings.
5861
5862         * support/regression/tests/float_trans.c: Made work on host.
5863
5864         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5865         location of sz80.
5866
5867         * support/regression/generate-cases.py (main): Changed from inline
5868         to a main method.
5869
5870         * doc/Makefile (install): Changed to depth first to get rid of
5871         missing directory install warning.
5872
5873         * as/Makefile (install-doc): Made work on Mac.
5874
5875 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5876
5877         * src/SDCCast.c: added an additional type flow in decorateType() of
5878         opposite direction, see feature request #860006; it's enabled at runtime
5879         by setting the environment variable SDCC_NEWTYPEFLOW
5880         * src/SDCCast.h: changed prototype of decorateType()
5881         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5882         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5883         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5884         see feature request #877103
5885         * src/SDCCval.c: updated call of decorateType()
5886         (valBitwise): fixed bug #882876
5887         (valMinus): added promotion
5888         (valLogicAndOr): result is unsigned
5889         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5890         * src/SDCCsymt.c (computeType),
5891         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5892         must not cause an unsigned operation
5893         * src/pic/glue (pic14emitRegularMap),
5894         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5895
5896 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5897
5898         * src/pic/pcode.c (PCodeID): commented out left over debug code
5899
5900 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5901
5902         * support/valdiag/tests/overflow.c: added shift tests
5903         * src/pic/device.c,
5904         * src/pic/gen.c,
5905         * src/pic/gen.h,
5906         * src/pic/glue.c,
5907         * src/pic/main.c,
5908         * src/pic/pcode.c,
5909         * src/pic/pcode.h,
5910         * src/pic/pcodepeep.c,
5911         * src/pic/pcoderegs.c,
5912         * src/pic/ralloc.c,
5913         * src/pic/ralloc.h: applied patch from Slade Rich;
5914         added support for multiple code pages and multiple RAM banks on the
5915         PIC 14 port. The ASM files now no longer simply assume all the
5916         code / RAM are in the same page / bank. This means the linker can
5917         safely allocate code/RAM of separate ASM files to different pages/banks.
5918         * doc/sdccman.lyx: added Slade's tips
5919         * src/mcs51/peeph.def: fixed bug #880768
5920
5921 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5924         * src/SDCCast.c (decorateType): fixed bug #880197
5925
5926 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5927
5928         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5929         getopt.h.
5930
5931         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5932         strtof is not part of C89 and isn't included with Mac OS X.
5933
5934 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5937         shiftL2Left2Result): fixed bug #879326
5938         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5939         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5940         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5941         address fetch for clr instruction
5942         * device/lib/hc08/_mulint.c: created optimized assembly version
5943         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5944
5945 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5946
5947         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5948         proposed in FR #877103
5949
5950 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5951
5952         * src/SDCCval.c (cheapestVal): added missing checks
5953         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5954         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5955
5956 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5957
5958         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5959         equal operands
5960
5961 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5962
5963         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5964         loaded with the linker search paths (-L arguments) and the libraries
5965         to be linked with the current source (-l arguments). Changes
5966         currently will affect only the pic16 port.
5967         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5968         include path the port specific paths and port specific libraries,
5969         * gplink command now contains the $3 argument,
5970         * src/pic16/device.h,
5971         * src/pic16/device.c,: structure PIC_device is made public and
5972         renamed to PIC16_device, the same for variable Pics which is renamed
5973         to Pics16. Updated all references to them.
5974         * src/pic16/glue.c (pic16glue): corrected bug with code
5975         initialization which bypassed the variable initializations block.
5976
5977         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5978         COMPILE_FLAGS and added the --nostdinc option
5979
5980 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5981
5982         * device/include/mc68hc908jb8.h: Register defs for another member
5983         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5984
5985 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5986
5987         Documenting changes from previous commits.
5988         * configure.in (version 1.56),
5989         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5990         when generating output files to configure the pic16 library,
5991         but now I've commented it out, since gputils aren't installed in the
5992         SF compile farm, so library won't compile
5993
5994         * device/lib/Makefile.in (version 1.56): initially I've added in
5995         target 'all' the prerequestive 'model-pic16' so it compiled the
5996         pic16 library, but now I've commented it out for the same reasons
5997         above,
5998         * added targets 'model-pic16' and 'objects-pic16' to compile the
5999         library
6000         * added target 'port-specific-objects-pic16' to handle the
6001         generated libraries and copy them into the build/ directory
6002         * added target 'clean-intermediate-pic16' to clean intermediate
6003         files into pic16 directory
6004         * in target 'installdirs' added line to create directory pic16 in
6005         the installation path
6006
6007         * device/include/Makefile.in (version 1.11): in target 'install'
6008         added lines to copy all header files to installation path,
6009         * in target 'installdirs' added line create directory for pic16
6010         headers in the installation path
6011
6012 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6013
6014         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6015          a function call
6016
6017 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6018
6019         * configure,
6020         * device/lib/configure.in,
6021         * device/lib/configure: fixed for autoconf 2.57
6022
6023 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6024
6025         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6026         option so that it actually works. Made it specific to the z80, since
6027         the gbz80 doesn't have these kinds of I/O ports.
6028
6029 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6030
6031         * device/include/z180.h,
6032         * device/lib/_memcpy.c,
6033         * device/lib/_memmove.c,
6034         * device/lib/_mulint.c,
6035         * device/lib/ser_ir.c,
6036         * device/lib/ser_ir_cts_rts.c,
6037         * device/lib/_strcmp.c,
6038         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6039         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6040         portmode; added deprecation warning for bank= and protmode= forms.
6041         Also, guard against buffer overflow.
6042         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6043
6044 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6047         changed interrupt vector table generation to only emit declared vectors.
6048         * device/include/Makefile.in: added missing backslash
6049         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6050
6051 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6052
6053         Mainly changes to support compilation of the device libraries
6054         * src/pic16/device.c: stack is allocated via symbol and not
6055         via literal number. The symbol is placed in the corresponding
6056         position of the data ram
6057         * (pic16_dump_section): relocatable and absolute uninitialized
6058         data are now emitted in sorted order to reduce section naming,
6059         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6060         weren't marked as being in the access bank,
6061
6062 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6063
6064         Added portion of GNU PIC Library under the directory
6065         device/include/pic16 and device/lib/pic16. These files
6066         contain the declarations of SFRs for the PIC18Fxx2 devices.
6067         The directory is initialized via configure from toplevel.
6068
6069 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6070
6071         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6072         the spilllocations to be compared correctly
6073
6074 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * src/SDCCast.c (decorateType): fixed bug introduced today
6077
6078 2004-01-12  Borut Razem <borut.razem AT siol.net>
6079
6080         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6081         doc/sdccman.lyx: upper case pragmas are deprecated
6082
6083 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6084
6085         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6086         in simpler and even better code
6087
6088 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6089
6090         * src/SDCCicode.c (operandOperation): fixed bug #874819
6091         * src/SDCCast.c (decorateType): fixed
6092         char foo (unsigned long ul) { return ul > 0; }
6093
6094 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6095
6096         * doc/sdccman.lyx: Moved and added some sections, small changes
6097         all over. Telling LaTeX to be less strict with word spacing
6098         to better keep the right margin. Changed some notes about
6099         maintainance of the ports in section 3.2.1 - is it OK like this?
6100
6101 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6102
6103         SDCC source changes:
6104         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6105         convilong): modified to inform the pic16 port that builtin functions
6106         are external
6107
6108         PIC16 PORT specific changes:
6109         * src/pic16/device.c pic16_dump_equates() added,
6110         processor registers declared internally by the port are emitted in
6111         the translation as equates,
6112         * src/pic16/gen.c: inline code is passed unprocessed to the
6113         translation,
6114         * (pic16_popGetLit2): fnuction modified to take second operand as
6115         pCodeOp pointer and not as literal,
6116         * (popRegFromIdx): prefixed with pic16_,
6117         * (pic16_popCombine2): modified to receive already allocated pCode
6118         operands,
6119         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6120         * (genFunction): initializes local stack frame and pushes on stack
6121         all the registers used by this function,
6122         * (genEndFunction): restores all registers from stack and restores
6123         stack frame,
6124         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6125         improvements,
6126         * (pic16glue): changed the program startup sequence,
6127         * added new dbName code 'A' for functions placed in absolute section
6128         * src/pic16/main.c: added function attribute _naked,
6129         * added pragma 'code' to place a fnuction at an absolute address,
6130         * added command line arguments --debug-ralloc and --pcode-verbose,
6131         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6132         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6133         * (pic16_newpCodeOpLit2): modified to take the second operand as
6134         pCodeOp pointer,
6135         * (pic16_printpBlock): modified to emit each function in a separate
6136         section,
6137         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6138         UPPER for immediate operands,
6139         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6140         instruction,
6141         * src/pic16/peeph.def: all peepholes with movff are commented out,
6142         because there is a problem in the pcode peep optimizer,
6143         * src/pic16/ralloc.c: the register allocator can now reuse local
6144         function symbols for another function. This saves register usage.
6145         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6146
6147         Added file src/pic16/NOTES with information about program writing on
6148         the current port version.
6149
6150 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6151
6152         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6153         and peephole 252 (array access)
6154
6155 2004-01-09  Borut Razem <borut.razem AT siol.net>
6156
6157         * src/SDCCmain.c : fixed #872250: -l command line defined library
6158           files are scanned before standard library files
6159
6160 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6161
6162         * src/SDCCast.c (decorateType): fixed bug #874046
6163
6164 2004-01-09  Borut Razem <borut.razem AT siol.net>
6165
6166         * support/scripts/sdcc.nsi: remove previous installation
6167
6168 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6169
6170         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6171         bytes for last interrupt vector (mcs51)
6172         * sdcc.spec: fixed typo
6173
6174 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6175
6176         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6177         gen51Code): more efficient parameter receive for --model-large
6178         ("bug" #845294)
6179
6180 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6181
6182         * src/ds390/main.c,
6183         * src/z80/main.c: added missed needLinkerScript flags (more than
6184         one port structure defined in these file)
6185         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6186         bug #795325
6187
6188 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6189
6190         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6191         * src/port.h: added flag needLinkerScript in port->linker
6192         structure to inform whether to create a .lnk file or not,
6193         * src/avr/main.c,
6194         * src/ds390/main.c,
6195         * src/hc08/main.c,
6196         * src/mcs51/main.c,
6197         * src/pic/main.c,
6198         * src/pic16/main.c,
6199         * src/xa51/main.c,
6200         * src/z80/main.c: changed appropriately to configure
6201         needLinkerScript flag
6202         * src/pic/gen.c,
6203         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6204         * src/pic/glue.c: added variable udata_section_name to
6205         override default uninitialized data segment definition for
6206         devices only with SHAREBANK memory (reported from Erik Epetrich)
6207         * (pic14emitOverlay): modified to emit a commented overlay segment
6208         directive when no overlay data exist
6209         * (picglue): modified to emit uninitialized data segment
6210         according to udata_section_name
6211         * src/pic/main.c (_pic14_parseOptions): added command line
6212         options --udata-section-name=[name] to override default
6213         udata definition name
6214         * modified _linkCmd and _asmCmd to include compiler passed
6215         arguments via -W option
6216         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6217         object file from '.rel' to '.o' in port->linker structure,
6218         changed size of fptr from 2 to 3 in port structure
6219
6220 2004-01-07  Borut Razem <borut.razem AT siol.net>
6221
6222         * support/scripts/sdcc.nsi: update PATH
6223         * support/scripts/sdcc.ico: craeted
6224
6225 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6226
6227         * device/include/Makefile.in: fix install
6228         * doc/Makefile: fix install
6229
6230 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6231
6232         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6233         in bug #860505
6234         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6235         how the function variable allocation summary is displayed; also
6236         include information about variables allocated to the overlay
6237         segment
6238
6239 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6240
6241         * as/mcs51/lkmain.c: Help about -Y option
6242         * as/mcs51/lkarea.c: Fixed gcc warnings
6243
6244 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6245
6246         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6247         fixed warning
6248         * support/valdiag/tests/overflow.c: added
6249         * src/SDCCast.c (decorateType),
6250         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6251         LEFT_OP (left shift)
6252
6253 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6254
6255         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6256         (default behaviour).
6257
6258 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6259
6260         A python script to validate compiler diagnostic messages. It can be
6261         used to verify that sdcc complains about bad c source code and
6262         gives a good location of the error.
6263         * support/valdiag/Makefile,
6264         * support/valdiag/valdiag.py,
6265         * support/valdiag/tests/*
6266
6267 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6270         * src/SDCCsymt.c (newEnumType),
6271         * src/SDCCsymt.h
6272         * support/Util/SDCCerr.c,
6273         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6274         enum related bugs.
6275         * support/regression/tests/enum.c: added test for enum values that
6276         require at least 2 bytes of storage.
6277
6278 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6279
6280         * src/common.h: added ifndef/define/endif macros
6281         around the header file.
6282         Bug reported from Jesus Calvino-Fraga
6283
6284 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6285
6286         * sdcc.spec: updated
6287         * device/include/Makefile.in: don't install CVS directories
6288         * device/lib/Makefile.in: added removal of CVS directories after install
6289         * doc/Makefile: fixed install, added local_icons
6290         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6291         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6292         * src/ds390/gen.c (genRightShift): fixed bug #870788
6293         * src/SDCCast.c (decorateType): fixed bug #870781
6294
6295 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6296
6297         PIC16 port related changes:
6298         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6299         added variable stackPos,
6300
6301         * gen.c: genCall, assignResultValue: added support for
6302         pushing/retrieving function parameters to/from stack,
6303         genFunction,genEndFunction: setup stack frame for the
6304         generated function,
6305         genAddrOf: will be changed according to bug 863624
6306
6307         * added files genutils.c and genutils.h which contain gen*
6308         debugged and optimised functions extracted from gen.c
6309
6310         * glue.c: added variable 'externs' which holds extern symbols,
6311         pic16emitRegularMap: is modified to properly handle relocatable
6312          symbols under the new scheme,
6313         pic16createInterruptVect: is modified
6314         pic16printPublics: is modified to emit 'global' assembler directives,
6315         added pic16_printExterns to print extern symbols,
6316         pic16glue: initializes stack/frame pointer in the beginning of
6317         the assembly output. Temporary hack, will be corrected later,
6318         because gplink yet does not support stack and SDCC does not
6319         yet support a type of crt0.o object to create the final binary.
6320
6321         * Removed many lines that contain 8051 legacy code.
6322         * The code is finally placed under a 'code' directive.
6323         * Added port specific options.
6324
6325         * _process_pragma: simplified since now we do not need *special*
6326         include file to define SFR registers. But a separate header
6327         will be needed. This will be developed later.
6328         * _pic16_parseOptions: added, parses port specific options:
6329         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6330         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6331         --preplace-udata-with=
6332
6333         * _pic16_setDefaultOptions: modified to initialize section names,
6334         but hack is temporarly out of order since it needs improvement.
6335         * _pic16_genAssemblerPreamble: configuration words are emitted by
6336         their address instead of their name. This part is incomplete and
6337         supports only the 18Fxx2 devices. Other devices will emit an error
6338         during assembly since they do not contain the same set of config
6339         registers
6340         * _pic16_genIVT: is modified,
6341
6342         * pcode.c: added definitions for some hardware registers that are needed
6343         for stack support
6344         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6345         All PCI entries are updated. Now LFSR is supported.
6346         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6347         * added pic16_newpCodeOpLit2 to support instructions with
6348         two literal arguments
6349         * pic16_pCode2str: corrected code that emits assembler instructions
6350         with two literal operands and those that have an access bit modifier
6351         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6352         this fixes a bug which caused some labels to be lost, when an
6353         assembler directive was added, i.e. banksel,
6354         * pic16_FixRegisterBanking: improved logic that causes the insertion
6355         of bank switching,
6356         * InlineFunction: functions that are called once, are not any more
6357         inlined. This can be a port option in the future,
6358
6359         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6360
6361         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6362         hold the corresponding uninitialized symbols,
6363         * pic16_allocProcessorRegister: registers have explicit marked the
6364         accessBank field,
6365         * pic16_allocInternalRegister: registers are explicit marked as
6366         not used,
6367         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6368         processing list, so bit registers were lost,
6369         *
6370
6371         * ralloc.h: added field 'accessBank' and original symbol operand
6372         in register definition,
6373         * removed the field isMapped from register definition,
6374
6375         ** Several functions have been removed from various sources:
6376         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6377         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6378         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6379         pic16_assignRelocatableRegisters
6380
6381         ** others have been introduced:
6382         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6383         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6384
6385 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6386
6387         * support/scripts/inc2h.pl: changed definition of BIT_AT
6388         to emit 'sbit at' instead of 'bit at'. This was a request.
6389
6390         PIC16 port related preliminary changes:
6391         * gen.c: prefixed function popRegFromString with
6392         pic16_ and all references to it corrected
6393         * pcode.c: all pic16_pc_* hardware registers prefixed
6394         with underscore (_),
6395         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6396         * ralloc.c: newReg(): when register is REG_SFR then
6397         set address to rIdx,
6398         pic16_allocProcessorRegister(): marks register wasUsed=0
6399         pic16_writeUsedRegs(): added a call to assign processor
6400         registers via pic16_assignFixedRegisters
6401
6402 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6403
6404         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6405         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6406         variables in unused register banks.  Also the SSEG is placed
6407         wherever there is enough space for it, and IDATA can be anywhere
6408         in internal RAM.  For now compile using -Wl-Y[stack_size].
6409         The mem file is different for this option as well, since it
6410         makes no sense of talking about DSEG lenght.
6411
6412 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6413
6414         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6415         in certain cases, e.g. when ROM assignment, patch provided
6416         from Albert den Haan.
6417
6418 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6419
6420         Many signedness and type propagation fixes:
6421         * src/SDCCicode.c: made geniCodeCast() static
6422         replaced SPEC_ by IS_ (cosmetic)
6423         (operandOperation): fixed div and mod operation
6424         (usualBinaryConversions): added support for promotion of char
6425         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6426         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6427         (geniCodeAdd): an array index will stay unsigned, even if promoted
6428         from char to int
6429         (geniCodeArray): ditto
6430         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6431         * src/SDCCsymt.c (computeType): added more support for char;
6432         promotion of char is selectable by promoteCharToInt, fixed signedness
6433         for all cases
6434         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6435         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6436         * src/SDCCval (val*): replaced signedness calculation by
6437         computeType()
6438         rearranged if-branches (cosmetic)
6439         (valShift): added warning W_SHIFT_CHANGED
6440         (valCompare): fixed problem with different types
6441         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6442         * support/regression/tests/literalop.c: added many cases
6443         * support/regression/tests/ast_constant_folding.c: changed finally to
6444         'unsigned int'
6445         * .version: new year, new version: 2.3.7
6446         * src/SDCCmain.c (main): applied patch #866468
6447         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6448         provided by Scott Bronson
6449         * doc/sdccman.lyx: updated documentation for sdcdb
6450         updated and added chapter tips
6451
6452 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCsymt.h: missing from yesterday's commits
6455
6456 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6457
6458         * src/SDCC.y (struct_or_union_specifier),
6459         * support/Util/SDCCerr.c,
6460         * support/Util/SDCCerr.h: verify that struct & union tags are used
6461         as declared.
6462
6463 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         * src/SDCCglobl.h: missing from yesterday's commits
6466
6467 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6468
6469         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6470         sft_attributes, struct_declaration, parameter_declaration,
6471         type_name, start_block, declaration_list),
6472         * src/SDCC.lex (check_type): support redefinition of typedef names
6473
6474 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6475
6476         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6477         aligned xdata arrays. Erik helped me with the if clause.
6478
6479 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6482         warning
6483
6484 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6485
6486         * src/SDCCast.h,
6487         * src/SDCCast.c (newAst_),
6488         * src/SDCCicode.h,
6489         * src/SDCCicode.c (ast2iCode, newiCode),
6490         * src/SDCCglobl.h,
6491         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6492         expr, statement, expression_statement, selection_statement,
6493         iteration_statement, expr_opt, jump_statement): foundation for tracking
6494         sequence points
6495         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6496         point code too)
6497
6498 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         * support/Util/SDCCerr.c,
6501         * src/SDCCast.h,
6502         * src/SDCCast.c (createCase, createDefault, decorateType),
6503         * src/SDCClabel.c (labelUnreach),
6504         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6505         to error messages.
6506         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6507         (with thanks to Stas Sergeev)
6508         * device/include/time.h,
6509         * device/lib/time.c (CheckTime): suppress unreachable code warning
6510
6511 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6512
6513         * src/SDCCast.c (createIvalCharPtr),
6514         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6515         bug #753752)
6516         * support/regression/tests/nullstring.c: tests for these two bugs
6517
6518 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6519
6520         * support/Util/SDCCerr.h,
6521         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6522         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6523         about storage class and 'at' used inside struct or union
6524         * src/SDCCBBlock.c (iCodeFromeBBlock),
6525         * src/SDCCcse.c (ifxOptimize),
6526         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6527         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6528         printIval, emitStaticSeg, emitOverlay),
6529         * src/SDCClabel.c (deleteIfx),
6530         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6531         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6532         gatherAutoInit, processParms),
6533         * support/Util/SDCCerr.h,
6534         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6535         reporting for post-parse errors.
6536
6537 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6538
6539         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6540         implicit casts via union; they don't work on big endian systems
6541         (possible fix for bug #861138)
6542
6543 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6544
6545         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6546         * src/mcs51/main.c: fixed the fix for bug #737001
6547
6548 2003-12-15  Borut Razem <borut.razem AT siol.net>
6549
6550         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6551
6552 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6553
6554         * support/makebin/makebin.c: put output in binary mode
6555
6556 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6557
6558         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6559         xdata and data memory on startup. Set the environment variable
6560         SDCC_NOGENRAMCLEAR to disable this.
6561         * src/mcs51/peephole.def,
6562         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6563         (allows non-interrupt and interrupt code to safely compete for a resource
6564         without the non-interrupt code having to disable interrupts)
6565
6566 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6567
6568         * src/SDCCicode.c (geniCodeAdd),
6569         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6570         with valFromType if type might be a pointer and host is big endian).
6571         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6572         types, not just integer types.
6573         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6574         multiply defined with mismatching "at" address.
6575
6576 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6577
6578         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6579         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6580         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6581         with embedded nulls (fixed bug #753752)
6582
6583 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6584
6585         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6586         Apparently this did not see much testing (endless loop)
6587
6588 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6589
6590         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6591
6592 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6593
6594         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6595         gracefully handle NULL memmap pointers
6596
6597 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6598
6599         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6600         instead of deleting the iCode when an operand is volatile
6601         * src/z80/gen.c (genDummyRead),
6602         * src/mcs51/gen.c (genDummyRead),
6603         * src/ds390/gen.c (genDummyRead),
6604         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6605         not just IC_RIGHT
6606         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6607         * src/SDCC.y: fixed bug #850420
6608
6609 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6610
6611         Applied z80 i/o port patch from Peter Townson and fixed some operators
6612         to better handle operands in A register.
6613         * device/include/z180.h
6614         * src/SDCC.y
6615         * src/SDCCglue.c
6616         * src/z80/gen.c
6617         * src/z80/gen.h
6618         * src/z80/main.c
6619         * src/z80/peeph-z80.def
6620         * src/z80/peeph.def
6621         * src/z80/z80.h
6622
6623 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6626
6627 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * device/lib/hc08/_mullong.c: Removed extra #endif
6630
6631 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6632
6633         * sim/ucsim/hc08.src/inst.cc,
6634         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6635         carries from x to h
6636         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6637         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6638         * device/include/stdarg.h: fixed varargs for hc08
6639         * device/lib/Makefile.in,
6640         * device/lib/hc08/Makefile,
6641         * device/lib/hc08/_mulint.c,
6642         * device/lib/hc08/_mullong.c: fixed some endian problems
6643
6644 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6645
6646         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6647         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6648         * device/lib/_gptrget.c,
6649         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6650
6651 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6652
6653         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6654         * src/SDCCast.c (astErrors): fixed bug #846007
6655         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6656
6657 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6658
6659         * src/SDCCast.c (decorateType): disabled a transformation I added in
6660         revision 1.188 (access to fields of a structure at an absolute address);
6661         it breaks with bitfields, extern declarations, and gcse analysis.
6662         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6663         could be assigned through a pointer, so don't complain.
6664         * src/SDCCast.c (astErrors),
6665         * src/SDCCast.h,
6666         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6667
6668 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6669
6670         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6671         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6672         output of __config directives, since gpasm now supports them
6673         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6674         pre-processor macro, i.e. -DMCU=p18f452
6675         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6676         and modified to handle 'cast' icode similarly to '=' icode
6677         * src/pic16/device.h (typedef struct PIC_device): added field
6678         'extMIface' to indicate that chip has external memory interface
6679         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6680         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6681         18F8720
6682
6683 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6684
6685         * src/SDCC.y (pointer): fixed bug #846006
6686         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6687         * src/SDCCast.c (decorateType): fixed bug #846009
6688         * src/ds390/peeph.def,
6689         * src/ds390/gen.c (genAnd, genOr),
6690         * src/mcs51/peeph.def,
6691         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6692
6693 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6694
6695         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6696         * src/SDCCdflow.c
6697         * src/SDCCcse.c
6698         * src/SDCCcse.h
6699         * src/SDCCBBlock.h
6700         * src/SDCCBBlock.c
6701
6702 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6703
6704         fixed bug #845089
6705         * src/SDCCbitv.h,
6706         * src/SDCCbitv.c: added function to free a bitvector
6707         * src/SDCClrange.h,
6708         * src/SDCClrange.c: added function to recompute the liveranges
6709         * src/avr/ralloc.c,
6710         * src/ds390/ralloc.c,
6711         * src/hc08/ralloc.c,
6712         * src/mcs51/ralloc.c,
6713         * src/pic/ralloc.c,
6714         * src/pic16/ralloc.c,
6715         * src/xa51/ralloc.c,
6716         * src/z80/ralloc.c: recompute the liveranges after register packing
6717
6718 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6719
6720         * src/SDCCloop.c (newInduction): fixed bug #845630
6721
6722 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6723
6724         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6725         inadvertantly left behind from my 2003-11-12 change
6726
6727 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6728
6729         Updated headers I neglected to commit yesterday.
6730         * src/SDCClrange.h,
6731         * src/SDCCicode.h
6732
6733 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6734
6735         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6736         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6737         * src/SDCCopt.c (eBBlockFromiCode),
6738         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6739         the creation of the key hash table from the sequencing so it can be used
6740         earlier (for some GCSE bug fixes still pending)
6741
6742 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6743
6744         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6745         * support/regression/tests/addsub.c: testing genPlus shortcut
6746
6747 2003-11-15  Borut Razem <borut.razem AT siol.net>
6748
6749         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6750
6751 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6752
6753         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6754         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6755         ordering is immaterial.
6756         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6757
6758 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6759
6760         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6761         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6762         (SIGSEV) of bug #840381
6763         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6764         unlink new file before rename if new and old filenames are the same)
6765
6766 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6767
6768         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6769         uninitialized variables) for the mcs51. Set environment variable
6770         SDCC_GENRAMCLEAR to test.
6771         xdata initialization slightly shorter
6772
6773 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/SDCCsymt.h,
6776         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6777         #838241 & 780691 (basicly the same bug)
6778         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6779         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6780
6781 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6782
6783         * src/SDCCmain.c (linkEdit): "fix" #834252
6784
6785 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6786
6787         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6788         * src/SDCCast.h,
6789         * src/SDCC.y: fixed bug #819403
6790
6791 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6792
6793         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6794         the reentrant attribute.
6795         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6796         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6797         simulation
6798         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6799         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6800         erroneously reduced to a literal.
6801         * src/hc08/ralloc.c (packRegisters, rematStr),
6802         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6803         some cases
6804
6805 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6806
6807         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6808         * doc/sdccman.lyx: changed from 'article' to 'book'
6809         * doc/Makefile: readded test_suite_spec and cdbfileformat
6810
6811 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6812
6813         * device/include/stdlib.h: include malloc.h to comply with ANSI
6814         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6815
6816 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6817
6818         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6819         * doc/clean.mk: also remove *.out files
6820         * doc/sdccman.lyx: some additions, larger top/bottom margins
6821
6822 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6823
6824         * src/SDCC.y: fixed bug #837365
6825         * support/regression/tests/bitopcse.c
6826         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6827         a symbol (might be valop instead)
6828         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6829         * device/lib/clean.mk: added hc08 to the cleaning list
6830
6831 2003-11-04  Borut Razem <borut.razem AT siol.net>
6832
6833         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6834           made 2003-11-04
6835         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6836           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6837           malloc is declared in standard stdlib.h
6838
6839 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6840
6841         * device/lib/hc08/Makefile: need to clean .rel not .o files
6842         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6843
6844 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6845
6846         * src/port.h,
6847         * src/hc08/main.c,
6848         * src/mcs51/main.c,
6849         * src/ds390/main.c,
6850         * src/z80/main.c,
6851         * src/avr/main.c,
6852         * src/pic/main.c,
6853         * src/pic16/main.c,
6854         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6855         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6856         tests (which uses the port's oclsExpense function)
6857         * src/SDCC.y,
6858         * src/SDCCast.c,
6859         * src/SDCCicode.c,
6860         * src/hc08/gen.c,
6861         * src/ds390/gen.c,
6862         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6863
6864 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6865
6866         * src/SDCCcse.c (ifxOptimize),
6867         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6868         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6869         deleting the IFX iCode.
6870         * src/hc08/ralloc.c: reduced unneeded slocs
6871         * src/hc08/gen.c: fixed bug in asmopToBoolean
6872
6873 2003-11-04  Borut Razem <borut.razem AT siol.net>
6874
6875         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6876           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6877           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6878           transferred to configure
6879
6880 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6881
6882         Use headers defined in the C[++] standards:
6883         * sim/ucsim/gui.src/serio.src/fileio.cc
6884         * sim/ucsim/gui.src/serio.src/frontend.cc
6885         * sim/ucsim/gui.src/serio.src/main.cc
6886         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6887         * support/Util/NewAlloc.c
6888         * as/hc08/lklibr.c
6889         * as/mcs51/lklibr.c
6890         * as/z80/aslist.c
6891         * as/z80/assym.c
6892
6893 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6894
6895         * Added MSVC projects for hc08 assembler and linker:
6896         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6897         /as/hc08/link_hc08.dsp
6898
6899 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6900
6901         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6902
6903 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6904
6905         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6906
6907 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6908
6909         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6910
6911 2003-10-31  Borut Razem <borut.razem AT siol.net>
6912
6913         * support/cpp2/cpplib.h,
6914           support/cpp2/cpplib.c,
6915           support/cpp2/cpplex.c,
6916           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6917           to switch _asm block preprocessing on / off. Default is
6918           #pragma preproc_asm +
6919
6920 2003-10-31  Borut Razem <borut.razem AT siol.net>
6921
6922         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6923           when outputting comment blocks (when executed with -C option) and
6924           _asm (SDCPP specific) blocks
6925
6926 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6927
6928         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6929
6930 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6931
6932         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6933
6934 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6935
6936         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6937         * src/SDCCast.c (decorateType): fixed bug #832664
6938
6939 2003-10-31  Borut Razem <borut.razem AT siol.net>
6940
6941         * support\cpp2\cpplex.c: fixed for SDCPP:
6942           comments(when executed with -C option) and _asm blocks
6943           were included even if they where in skipped #if block.
6944           Applied solution from GCC cpp 3.3.2
6945
6946 2003-10-31  Borut Razem <borut.razem AT siol.net>
6947
6948         * src/SDCC.lex: sdcc now understands both formats:
6949           '# <line_number> <file_name>' and
6950           '#line <line_number> <file_name>'
6951         * support/cpp2/cppmain.c: sdcpp now generates the standard
6952           '# <line_number> <file_name>' instead of former
6953           '#line <line_number> <file_name>'
6954
6955 2003-10-30  Borut Razem <borut.razem AT siol.net>
6956
6957         * support/cpp2/cpphash.h,
6958         * support/cpp2/cpplib.h
6959         * support/cpp2/cpplex.c,
6960         * support/cpp2/cppmain.c,
6961         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6962
6963 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6964
6965         Fixed a number of problems revealed by bug #827883.
6966         * src/SDCCloop.c (loopInvariants): Spill location of the
6967         result operand should be recomputed if extracted from
6968         a loop. Also, don't extract assignments of an iTemp
6969         from a literal.
6970         * src/SDCCast.c (isConformingBody): loop reversal should
6971         not occur if the control variable is involved with a
6972         relational operator.
6973
6974 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         * .version: bumped to 2.3.6 to reflect the big improvements
6977         made by Erik and Klaus. Thanks!
6978
6979 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6980
6981         Replaced the livrange code.
6982         * src/SDCClrange.c: added new LR code
6983         * src/SDCCloop.c,
6984         * src/SDCCBBlock.h: removed remainig parts from old LR code
6985         * src/ds390/ralloc.c,
6986         * src/ds390/gen.c: minor fixes to make it work with new code
6987
6988 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6989
6990         * as/hc08/asm.h,
6991         * as/hc08/lkrloc.c,
6992         * src/hc08/gen.c,
6993         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6994         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6995         (tweaked fix for bug #818696)
6996
6997 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6998
6999         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7000
7001 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         * src/SDCCmain.c,
7004         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7005         * src/mcs51/gen.c (gencjneshort),
7006         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7007         more efficient (per Scott Bronson's suggestion)
7008
7009 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         Extended the semantics of the critical keyword to include
7012         individual statements. See RFE #827755 and #799831
7013         * src/SDCC.y
7014         * src/SDCCicode.c
7015         * src/SDCCopt.c
7016         * src/SDCCast.c
7017         * support/Util/SDCCerr.c
7018         * support/Util/SDCCerr.h
7019         * src/mcs51/gen.c
7020         * src/ds390/gen.c
7021         * src/hc08/gen.c
7022
7023 2003-10-19  Borut Razem <borut.razem AT siol.net>
7024
7025         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7026
7027 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7030         Fixed bug #818696
7031         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7032         and predecrement operand is displayed
7033
7034 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/SDCCval.c (valMinus): fixed bug #826041
7037
7038 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7039
7040         Some hc08 related updates that I missed earlier
7041         * sim/ucsim/stypes.h
7042         * support/regression/ports/hc08/spec.mk
7043
7044 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7045
7046         New target "hc08" for the Motorola 68hc08 family of micros
7047
7048         * configure
7049         * configure.in
7050         * Makefile
7051         * src/hc08/*
7052         * src/SDCCmain.c
7053         * src/port.h
7054         * sim/ucsim/hc08.src/*
7055         * sim/ucsim/configure.in
7056         * src/ucsim/configure
7057         * sim/ucsim/packages_in.mk
7058         * as/hc08/*
7059         * as/Makefile
7060         * device/include/mc68hc908qy.h
7061         * device/lib/hc08/*
7062         * device/lib/Makefile.in
7063         * support/regression/ports/hc08/*
7064         * support/regression/Makefile
7065
7066 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7067
7068         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7069         regression test
7070         * src/ds390/gen.c (genCast): fixed bug #821957
7071
7072 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7073
7074         * device/lib/logf.c: "fixed" overlay bug
7075         * support/regression/ports/host/spec.mk: added m library
7076         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7077         * support/regression/tests/float_trans: added (for Eric)
7078
7079 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7080
7081         * src/mcs51/gen.c (genCpl): fixed bug
7082         http://sf.net/mailarchive/message.php?msg_id=6263915
7083
7084 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7085
7086         * src/SDCCast.c (decorateType): added extended constant folding
7087         * src/SDCCsymt.c (computeType): cleanup
7088         * src/SDCCval.c (valShift): minor optimization
7089         * support/regression/tests/ast_constant_folding.c: added
7090
7091 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7092
7093         * src/SDCCmain.c: removed some unintended changes
7094
7095 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7096
7097         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7098         * src/z80/gen.c: fixed part of bug #817589
7099         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7100
7101 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7102
7103         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7104         * src/SDCCcflow.c
7105         * src/SDCCcse.c
7106         * src/SDCCdflow.c
7107         * src/SDCClabel.c
7108         * src/SDCClrange.c
7109         * src/SDCCmem.c
7110         * src/SDCCopt.c
7111         * src/SDCCpeeph.c
7112         * src/SDCCset.c
7113         * src/avr/ralloc.c
7114         * src/ds390/ralloc.c
7115         * src/izt/ralloc.c
7116         * src/mcs51/ralloc.c
7117         * src/pic/ralloc.c
7118         * src/pic16/ralloc.c
7119         * src/xa51/ralloc.c
7120         * src/z80/ralloc.c
7121         * src/z80/gen.c: removed unused label "release:"
7122
7123 2003-10-06  Borut Razem <borut.razem AT siol.net>
7124
7125         * src/SDCC.lex: removed definition of unused variables
7126           save_optimize and save_options
7127
7128 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7129
7130         * clean.mk: removed '=' in "-maxdepth=1"
7131         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7132         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7133
7134 2003-10-06  Borut Razem <borut.razem AT siol.net>
7135
7136         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7137           my_unput() replaced by unput()
7138
7139 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7140
7141         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7142         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7143         type-punned pointer will break strict-aliasing rules"
7144         Old LR behaviour is again default; Klaus' LR can be choosen by
7145         defining the environment variable LRKLAUS
7146         * src/SDCCBBlock.h
7147         * src/SDCCloop.c
7148         * src/SDCClrange.c
7149         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7150         * clean.mk: fixed removal of files in bin/CVS/
7151         * device/lib/clean.mk: fixed removal of directories small and large
7152         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7153         * src/SDCCicode.c,
7154         * src/SDCCval.c: removed superflous test for pedantic
7155
7156 2003-10-05  Borut Razem <borut.razem AT siol.net>
7157
7158         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7159           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7160           message "unmatched #pragma SAVE and #pragma RESTORE"
7161
7162 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7163
7164         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7165           assembly, critical functions, atomic, nojtbound)
7166
7167 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7168
7169         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7170         * src/SDCCBBlock.h
7171         * src/SDCCloop.c
7172         * src/SDCCloop.h
7173         * src/SDCClrange.c
7174
7175 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7176
7177         * src/z80/gen.h,
7178         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7179         * src/mcs51/gen.h
7180         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7181         * src/ds390/gen.h
7182         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7183         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7184         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7185
7186 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7187
7188         * src/z80/gen.c (genRet): fixed bug #524753
7189         * src/z80/gen.c (genCast): fixed internal error on cast from
7190         pointer to long
7191         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7192         fix for bug #477835 to the z80
7193         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7194         for tracking iCodes in the peephole optimizer for z80
7195
7196 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7197
7198         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7199         the other part of bug #814548
7200         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7201
7202 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7203
7204         * src/SDCCcse.c: fixed part of bug #814548
7205
7206 2003-09-28  Borut Razem <borut.razem AT siol.net>
7207
7208         * src/asm.c: rewrite of printILine() to use temporary file instead
7209           a pipe
7210         * src/xa51/main.c: commented out declaration of int rewinds
7211
7212 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7213
7214         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7215
7216 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7217
7218         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7219         * src/asm.c (printILine): Fixed bug #811015
7220
7221 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7222
7223         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7224         freeing.
7225
7226 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7227
7228         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7229         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7230         to correctly handle general case of AOP_PAIRPTR
7231         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7232
7233 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7234
7235         * src/mcs51/ralloc.c (fillGaps),
7236         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7237         register positioning bug)
7238
7239 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7242
7243 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7244
7245         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7246         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7247         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7248         (ralloc doesn't intentionally do this now, but perhaps later)
7249         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7250         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7251         register positioning bugs (Fixed bug #762602 and #795325)
7252         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7253         (Fixed bug #808779)
7254         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7255         lines that --i-code-in-asm generates
7256
7257 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7258
7259         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7260         trying to fclose a FILE* that was already closed.
7261
7262 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7263
7264         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7265         of const struct should be treated as if const themselves)
7266
7267 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7268
7269         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7270
7271 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7272
7273         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7274         Unix (/n) and DOS (/r/n) line terminations.
7275
7276 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7279         bug #613775
7280
7281 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7282
7283         * src/mcs51/gen.c (genFunction, genEndFunction),
7284         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7285         and restore of EA so that stack offsets to parameters are
7286         correct when using both critical and reentrant/stack-auto.
7287         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7288         size (can be triggered in error if sloc is shared between
7289         different sized objects)
7290         * device/include/float.h: fixed macros to explicitly use
7291         unsigned long where needed
7292
7293 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7294
7295         Feature req. 799831: added code to allow nesting of critical functions
7296         * src/mcs51/gen.c (genFunction, genEndFunction)
7297         * src/ds390/gen.c (genFunction, genEndFunction)
7298
7299 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7300
7301         * src/SDCCsymt.c (sclsFromPtr),
7302         * src/SDCCsymt.h,
7303         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7304         support for standard C idiom of memory mapped variables; for
7305         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7306         to xdata int at 0x1234 tempvar = 1.
7307         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7308         provided by Akiya ISHIDA
7309
7310 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7311
7312         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7313         * src/SDCCval.c (constVal): added reduction from int to char
7314         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7315         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7316         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7317         to ignore the sign
7318         * support/regression/tests/shifts.c: fixed
7319
7320 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7321
7322         * src/z80/gen.c (genXor): Fixed bug #805445
7323
7324 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7325
7326         Fixed bug #621531 (const & volatile confusion in the type chain).
7327         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7328         refer to the const or volatile state of the pointer itself.
7329
7330         * src/SDCCast.c
7331         * src/SDCCglue.c
7332         * src/SDCCicode.c
7333         * src/SDCCsymt.c
7334         * src/SDCCval.c
7335         * src/SDCC.y
7336         * src/SDCCsymt.h
7337         * src/pic/gen.c
7338         * src/pic/ralloc.c
7339         * src/pic16/gen.c
7340         * src/pic16/ralloc.c
7341         * support/regression/tests/const.c
7342
7343 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7344
7345         When checking for duplicated modules, use absolute paths
7346         instead of relative paths.  Files changed:
7347
7348         * as/mcs51/lklib.c
7349         * link/z80/lklib.c
7350
7351 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7354
7355 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7356
7357         * device/include/string.h: added size_t typedef, changed
7358         prototypes to use size_t, eliminated separate reentrant and
7359         non-reentrant declarations, added _memmove declaration
7360         * device/lib/_memcpy.c: changed to use size_t instead of int,
7361         changed /4 to >>2 to avoid division library call
7362         * device/lib/_memcmp.c,
7363         * device/lib/_memset.c,
7364         * device/lib/_strncat.c,
7365         * device/lib/_strncpy.c,
7366         * device/lib/_strncmp.c: changed to use size_t instead of int
7367         * device/lib/_memmove.c: new file (fixed bug #772294)
7368         * device/lib/Makefile.in: added _memmove.c
7369         * device/lib/z80/asm_strings.s: fixed bug #772290
7370         * support/regression/tests/bitfields.c: attempt to fix host assertion
7371         failure on amd64-unknown-linux2.2
7372
7373 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7374
7375         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7376         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7377         * as/z80/asmain.c (main): fixed bug #801766
7378
7379 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7382         compilers
7383
7384 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7385
7386         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7387         reported in bug #800609
7388
7389 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7390
7391         * Top header beautifications in src/pic16 directory:
7392           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7393           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7394           pcoderegs.h, ralloc.c, ralloc.h
7395         * main.c: added top header and GPL license notice
7396         * pcode.c: fixed the if-conditional warning
7397
7398 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7399
7400         * device/lib/_mullong.c: replaced int by short for gcc
7401
7402 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7403
7404         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7405         and JUMPTABLE iCodes properly now (worked by accident before)
7406         * src/mcs51/gen.c (leftRightUseAcc),
7407         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7408         iCode properly now. Use getSize instead of nRegs since a & b
7409         aren't part of the nRegs tally.
7410
7411 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7412
7413         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7414         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7415           before instructions that use the _STATUS register
7416
7417 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7418
7419         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7420         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7421         fetching of the pointer
7422         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7423         copied from genNearPointerSet()
7424         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7425         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7426         If they pop r0/r1 they must be called in the opposite order than aopOp().
7427         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7428         (resp. --stack-auto), prepared for --xstack
7429
7430 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7431
7432         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7433
7434 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7437         these ports have their own __sdcc_external_start()
7438
7439 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7440
7441         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7442         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7443         type for bits was changed. It resulted in bit variables becoming
7444         global, which is not permitted in PIC 14 assembly output.
7445
7446 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7447
7448         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7449
7450 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7451
7452         Z80 and MCS51 linkers complaint if a public symbol is defined
7453         in more than one library module:
7454
7455         * as/mcs51/lklib.c
7456         * link/z80/lklib.c
7457         * as/mcs51/Makefile.in
7458
7459 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7460
7461         A few small changes that speed up the peephole optimizer.
7462
7463         * src/SDCCpeeph.c
7464
7465 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7466
7467         Try to make the peephole optimizer smarter by maintaining
7468         an association between the assembly source code and the
7469         iCodes that originated them. Put this information to use
7470         with a new peephole rule condition "notVolatile" so that
7471         the rules can be aggressive yet still safe.
7472
7473         * src/SDCCpeeph.c
7474         * src/SDCCpeeph.h
7475         * src/mcs51/gen.c
7476         * src/mcs51/peeph.def
7477
7478 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7479
7480         Fixed bug #741761
7481
7482         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7483         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7484         if the left or right operand symbols have the accuse flag set.
7485
7486 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7487
7488         Changed the type of the result of the ! (NOT) operator to char;
7489         previously it returned the same type as the source. This allows
7490         us to eliminate all the genFloatNot functions (all of its target
7491         implementations were very buggy) since !float can use the same
7492         code as !long now.
7493
7494         * src/SDCCicode.c (ast2iCode): ! returns char
7495         * src/mcs51/gen.c (genNot, genNotFloat),
7496         * src/ds390/gen.c (genNot, genNotFloat),
7497         * src/z80/gen.c (genNot, genNotFloat),
7498         * src/pic/gen.c (genNot, genNotFloat),
7499         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7500
7501 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7502
7503         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7504         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7505            during interrupts. Ensure WSAVE is located at a shared bank address.
7506         2. Fixed page selection in some places
7507         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7508            the registers name strings.
7509         4. Fixed "signed / unsigned compare" compiler warnings.
7510         5. The PIC port manages its own allocation of the general purpose
7511            registers, but makes no attempt to reuse them. As a result when
7512            compiling it soon runs out of general purpose registers. Some
7513            additional code was added to the files pcode.c and device.c to walk
7514            through the function call tree and rename the registers so that they
7515            get reused.
7516
7517         * src/pic/device.c
7518         * src/pic/gen.c
7519         * src/pic/glue.c
7520         * src/pic/pcode.c
7521         * src/pic/pcode.h
7522         * src/pic/ralloc.c
7523         * src/pic/ralloc.h
7524         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7525         genPlus() & genMinus() when the result is the same as left or right
7526
7527 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7528
7529         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7530
7531 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         Made bitfield a distinct type from bit so that bitfields
7534         convert as per ANSI C and bits retain their traditional
7535         boolean style behaviour. Implemented bitfield support in
7536         the z80 port.
7537
7538         * src/SDCCsymt.h,
7539         * src/SDCCsymt.c,
7540         * src/SDCCast.c,
7541         * src/cdbFile.c,
7542         * src/mcs51/gen.c,
7543         * src/ds390/gen.c: bit v bitfield split
7544         * src/z80/gen.c: New support for bitfields
7545         * support/regression/tests/bitfields.c: reenabled z80,
7546         added more tests
7547
7548 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7549
7550         Rules 246.x, 247.x relate to bitfields, the others speed up
7551         access to xdata mapped I/O devices.
7552
7553         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7554
7555 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7556
7557         Cleaned up genPackBits and genUnpackBits and added two helper
7558         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7559         for literal assignments in genPackBits (thanks to Frieder for
7560         reminding me).
7561
7562         * src/mcs51/gen.c
7563         * src/ds390/gen.c
7564
7565 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7566
7567         Fixed bug #748310 (pointer to function type mishandled when the
7568         function name is omitted). Also fixed a SIGSEGV when a function
7569         attribute (reentrant, etc) is used on a non-function or on a
7570         function but misplaced before the parameter list.
7571
7572         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7573         bug #748310
7574         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7575         * support/Util/SDCCerr.h,
7576         * support/Util/SDCCerr.c: Added func attr misuse error msg
7577
7578 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         Fixed bug #787649 by anonymous
7581         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7582         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7583
7584 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7585
7586         Fixed numerous bitfield problems.
7587
7588         * src/SDCC.y: More bitfield related error checking
7589         * src/SDCCsymt.h,
7590         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7591         * support/Util/SDCCerr.h,
7592         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7593         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7594         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7595         * support/regression/tests/bitfields.c: tests added
7596
7597 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7598
7599         Made the constant following the "interrupt" keyword optional. If
7600         omitted, the function will not automatically be given an entry
7601         in the interrupt vector table (similar to #pragma NOIV, but
7602         less syntacticly kludgy). The interrupt number is also now
7603         range checked. Also fixed a bug in the high order bit example
7604         in the manual.
7605
7606         * src/SDCC.y
7607         * src/SDCCmem.c
7608         * src/SDCCglue.c
7609         * src/SDCCsymt.h
7610         * support/Util/SDCCerr.c
7611         * support/Util/SDCCerr.h
7612         * doc/sdccman.lyx
7613
7614 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7615
7616         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7617         * src/SDCCicode.c (operandOperation): rewritten some ops
7618         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7619         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7620         other type
7621         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7622         be re-activated by defining REDUCE_LITERALS)
7623         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7624         unsigned, but are signed by default
7625         * src/SDCCval.c (constVal): rearranged
7626         * src/SDCCval.c (valMod): preliminary fix
7627         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7628         * support/regression/literalop.c: added, work in progress
7629
7630 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7631
7632         Generate warnings for useless declarations like "char data;"
7633         that don't do what new users expect.
7634
7635         * src/SDCC.y
7636         * support/Util/SDCCerr.h
7637         * support/Util/SDCCerr.c
7638
7639 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7640
7641         * src/SDCCval.c (valMult): fix overflow detection of negative int
7642
7643 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7646
7647         Changes to support big endian targets:
7648
7649         * src/ports.h
7650         * src/SDCCglue.c
7651         * src/avr/main.c
7652         * src/ds390/main.c
7653         * src/izt/i186.c
7654         * src/mcs51/main.c
7655         * src/pic/main.c
7656         * src/pic16/main.c
7657         * src/xa51/main.c
7658         * src/z80/main.c
7659
7660 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7661
7662         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7663         * device/lib/time.c: fixed warning "integer overflow in expression"
7664
7665 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7666
7667         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7668         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7669         constants are unsigned; added recognition of "u" flag for unsigned
7670         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7671         * src/SDCCval.c (valDiv, valMod): fixed signdness
7672         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7673         signedness of modulo, left and right shift
7674         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7675         * support/Util/SDCCerr.h: added warning W_INT_OVL
7676         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7677         * src/SDCCast.c (ast_print): improved output of constants
7678
7679 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7680
7681         Fixed some warnings when building with MSVC:
7682
7683         * as\mcs51\asdata.c
7684         * as\z80\asdata.c
7685         * as\mcs51\asm.h
7686         * as\z80\asm.h
7687         * link\z80\aslink.h
7688         * link\z80\lkdata.c
7689         * link\z80\lkeval.c
7690         * link\z80\lkgb.c
7691         * link\z80\lkihx.c
7692         * link\z80\lks19.c
7693         * link\z80\lksym.c
7694         * support\cpp2\cpplib.c
7695         * src\ds390\gen.c
7696         * src\mcs51\gen.c
7697
7698 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7701
7702 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7703
7704         * support\librarian\clean.mk: Do not remove Makefile.
7705         * support\librarian\Makefile: added.
7706
7707 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7708
7709         Added librarian to MSVC build:
7710         * all.dsp
7711         * sdcc.dsw
7712         * support\librarian\librarian.dsp
7713
7714         'configure' not needed for librarian, removed:
7715         * support\librarian\configure
7716         * support\librarian\configure.in
7717         * support\librarian\config_in.h
7718         * support\librarian\Makefile.in
7719
7720         Hopefully these ones built the librarian and the rest of sdcc properly:
7721         * Makefile
7722         * Makefile.common.in
7723
7724         Messed up 'configure', so revert to previous version:
7725         * configure
7726         * configure.in
7727
7728 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7729
7730         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7731         there, while the mantissa of a double is "only" 53 bits wide.
7732
7733 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7734
7735         Adding sdcclib to the build.  MSVC project coming soon.
7736         Files added/changed:
7737
7738         * support\librarian\clean.mk
7739         * support\librarian\configure
7740         * support\librarian\configure.in
7741         * support\librarian\config_in.h
7742         * support\librarian\Makefile.bcc
7743         * support\librarian\Makefile.in
7744         * support\librarian\sdcclib.c
7745         * Makefile.bcc
7746         * Makefile
7747         * Makefile.common.in
7748         * configure
7749         * configure.in
7750
7751 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7752
7753         Linker now complaints if linked modules have conflicting options, for
7754         example, one compiled using --model-large and another one compiled with
7755         --model-small.  The following files were modified:
7756
7757         * as\mcs51\asdata.c
7758         * as\mcs51\aslink.h
7759         * as\mcs51\asm.h
7760         * as\mcs51\asmain.c
7761         * as\mcs51\asout.c
7762         * as\mcs51\i51pst.c
7763         * as\mcs51\lkdata.c
7764         * as\mcs51\lklibr.c
7765         * as\mcs51\lkmain.c
7766         * as\z80\asdata.c
7767         * as\z80\asm.h
7768         * as\z80\asmain.c
7769         * as\z80\asout.c
7770         * as\z80\z80pst.c
7771         * link\z80\aslink.h
7772         * link\z80\lkdata.c
7773         * link\z80\lklibr.c
7774         * link\z80\lkmain.c
7775         * src\SDCCglue.c
7776
7777 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7778
7779         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7780         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7781
7782 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * src/z80/mappings.i: fix _mul[us][int,long] entries
7785
7786 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7787
7788         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7789
7790 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7793         * support/regression/tests/bitopcse.c: added
7794         fixed warning:
7795         * src/avr/gen.c:
7796         * src/pic/gen.c:
7797         * src/pic16/gen.c:
7798         * src/z80/gen.c:
7799         * src/xa51/gen.c:
7800
7801 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7802
7803         added support for new library format to z80, gbz80 linkers:
7804         *link/z80/aslink.h
7805         *link/z80/lklex.c
7806         *link/z80/lklib.c
7807         *link/z80/lklist.c
7808
7809 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7810
7811         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7812         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7813
7814 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7815
7816         added DUMMY_READ_VOLATILE:
7817         * src/SDCC.y:
7818         * src/avr/gen.c:
7819         * src/xa51/gen.c:
7820         * src/z80/gen.c:
7821         * src/pic/gen.c:
7822         * src/pic16/gen.c:
7823         * src/mcs51/gen.c:
7824         * src/ds390/gen.c:
7825         * src/SDCCcse.c (algebraicOpts): many improvements
7826         * src/SDCCcse.h: removed algebraicOpts()
7827         * src/SDCCicode.c (picDummyRead): added
7828
7829 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7830
7831         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7832         "Insufficient space in data memory".
7833
7834 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7835
7836         * src/mcs51/gen.c: fixed bug #771358
7837         * src/z80/gen.c: fixed bug #759087
7838
7839 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7840
7841         * src/pic16/glue.c: minor cleanup by Vangelis
7842
7843 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7844
7845         * device/include/regc515c.h: fixed #758477
7846         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7847         * device/lib/_gptrput.c: saved a few bytes
7848         * my tab spacing is 8, yours too?)
7849         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7850         * device/lib/serial.c: process RX bytes earlier than TX bytes
7851         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7852
7853 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7854
7855         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7856
7857 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7858
7859     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7860
7861 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7862
7863         * device/lib/Makefile.in: bad fix, reverted to 1.43
7864
7865 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7866
7867         * device/lib/Makefile.in: added missing z80 object files
7868
7869 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7870
7871         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7872         pic16 progress by Vangelis:
7873         * src/SDCCglobl.h:
7874         * src/SDCCmain.c:
7875         * src/pic/Makefile:
7876         * src/pic:
7877         * pic/Makefile:
7878         * pic16/device.c:
7879         * pic16/device.h:
7880         * pic16/gen.c:
7881         * pic16/gen.h:
7882         * pic16/genarith.c:
7883         * pic16/glue.c:
7884         * pic16/main.c:
7885         * pic16/pcode.c:
7886         * pic16/pcode.h:
7887         * pic16/pcodepeep.c:
7888         * pic16/peeph.def:
7889
7890 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7891
7892     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7893
7894 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7895
7896     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7897     added gbz80 build to MSVC project.
7898     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7899     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7900     from 8051 stuff and setup so it links using a .lnk file.
7901
7902 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7903
7904     * support/librarian/sdcclib.c: sdcc librarian.
7905     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7906     with sdcclib.
7907
7908 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7909
7910     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7911
7912 2003-07-02  Borut Razem <borut.razem AT siol.net>
7913
7914         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7915         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7916         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7917         src/xa51/main.c, src/z80/main.c:
7918         virtualization of glue() function: each port has it's own glue function,
7919         which is accessed by do_glue function pointer in PORT.general structure
7920
7921 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7922
7923         * DS800C400 fun, improved ROM interface and tinibios.
7924
7925 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7926
7927         * More support for DS80C400. Now includes beginning of interface to ROM.
7928
7929 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7930
7931         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7932
7933 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7934
7935         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7936
7937 2003-06-19  Borut Razem <borut.razem AT siol.net>
7938
7939         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7940
7941 2003-06-19  Borut Razem <borut.razem AT siol.net>
7942
7943         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7944         fixed Z80 port - crt0.o: cannot open.
7945
7946 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * support/Util/MySystem.c (merge_command): revert bad fix
7949
7950 2003-06-18  Borut Razem <borut.razem AT siol.net>
7951
7952         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7953
7954 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7955
7956         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7957         option --use-stdout sends errors to stdout instead of stderr.
7958
7959 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7962
7963 2003-06-15  Borut Razem <borut.razem AT siol.net>
7964
7965         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7966         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7967         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7968         fixed width array of pointers replaced with sets;
7969         multiple include and lib paths ared transferred to preprocessor and linker
7970         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7971         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7972         fixed width array of pointers
7973         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7974         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7975         fixupPath(), getPathDifference()
7976         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7977         fixed width array of pointers
7978
7979 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7980
7981         * src/pic16/ralloc.c: fix warnings
7982         * src/pic16/pcode.c: fix warning
7983
7984 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7985
7986          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7987         know all the details, but essentially this set of changes enable
7988         the pic16 port to generate movff instructions and generate assembler
7989         directives,
7990         * src/SDCCmain.c:
7991         * src/pic16/gen.c:
7992         * src/pic16/glue.c:
7993         * src/pic16/pcode.c:
7994         * src/pic16/device.c:
7995         * src/pic16/main.c:
7996         * src/pic16/pcode.h:
7997         * src/pic16/pcoderegs.c:
7998         * src/pic16/ralloc.c:
7999         * src/pic16/ralloc.h:
8000
8001 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8002
8003         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8004         added option --vc, so sdcc errors and warnings are compatible with
8005         Microsoft Visual Studio.
8006
8007 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8008
8009         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8010           device/lib/libfloat.lib: added atof function.
8011
8012 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8013
8014         * doc/sdccman.lyx: updated to Lyx 1.3
8015         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8016         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8017         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8018
8019 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8020
8021         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8022
8023 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8024
8025         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8026           additions to the "related tools/documentation" section
8027
8028 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8029
8030         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8031
8032 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8033
8034         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8035         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8036
8037 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8038
8039         * doc/sdccman.lyx: fix double dash and other minor things
8040         * doc/Makefile: fix double dash
8041
8042 2003-05-28  Karl Bongers(patches from Martin Helmling)
8043         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8044           condition and ignore commands.
8045
8046 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8047
8048         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8049           is in parts still quite out of date, I did changes as far as I felt makes sense
8050           for a non-native english speaker.
8051           Please feel free to add to the manual or to correct my changes.
8052         * doc/Makefile: undid touching the date of intermediate tex files.
8053
8054 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8055
8056         * doc/sdccman.lyx: Manual has an index now
8057
8058 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8059
8060         Finalize muluint/mulsint and mululong/mulslong merging:
8061         * device/lib/_mulint.c
8062         * device/lib/_mullong.c
8063         * device/lib/gbz80/mul.s
8064         * device/lib/gbz80/stubs.s
8065         * device/lib/z80/mul.s
8066         * device/lib/z80/stubs.s
8067         * src/SDCCsymt.c (initCSupport)
8068
8069 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8070
8071         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8072         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8073           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8074           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8075           instead of /Zm500.
8076
8077 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8078
8079         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8080           the regression tests I'm not brave enough to enable 245.b, 245.c
8081         * doc/sdccman.lyx: added latex preamble for hyperref package.
8082           Using pdflatex this will give you a hyperlinked pdf file with
8083           bookmarks. (prepend '%' before /usepackage if this breaks something)
8084
8085 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8086
8087          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8088
8089 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8092
8093 2003-05-21    <johan AT balder>
8094
8095         * src/SDCCglue.c (printIval): fixed bug #739934
8096
8097 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8098
8099         Applied patch from bug 737905 (renamed yylineo to mylineno):
8100         * src/altlex.c
8101         * src/SDCCast.c
8102         * src/SDCglobl.h
8103         * src/SDCC.lex
8104         * src/SDCCsymt.c
8105         * src/SDCCval.c
8106         * src/pic16/pcode.c: Cleaned warnings
8107         * src/pic16/pcodeflow.c: Cleaned warnings
8108         * src/pic16/pcoderegs.c: Cleaned warnings
8109
8110 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8111
8112         * src/pic16/pcode.c: Cleaned warnings
8113         * src/pic16/pcodepeep.c: Cleaned warnings
8114         * src/pic16/ralloc.c: Cleaned warnings
8115
8116 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8117
8118         * doc/sdccman.lyx: fixed bug 739745
8119         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8120
8121 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8122
8123         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8124         it can be defined with CFLAGS when running configure
8125         * src/SDCCmain.c: fixed compiling + linking with object files
8126
8127 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8128
8129         * configure.in: configure for pic16 port,
8130             added --disable-pic16-port
8131         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8132         * src/SDCCmain.c: linkOptions is changed to set *,
8133             added if/endif conditional macros to remove options help
8134             messages from optionsTable when a port is not configured, added
8135             support for the PIc16 port in the ports table, when executing
8136             the compiler with no port specified on command line, a default
8137             port is selected with the new macro DEFAULT_PORT which is
8138             defined in port.h, in setDefaultOptions() linkOptions is removed
8139             from initialization assignment, since now it is a set,
8140             parseCmdLine uses setParseWithComma for linkOptions, in
8141             linkEdit() linkOptions are accessed with new function indexSet()
8142             which returns the i'th item of a set variable. See SDCCset.c, in
8143             linkEdit() when calling buildCmdLine(), added linkOptions as
8144             last argument. Now users can pass arguments to gplink via the
8145             -Wl option, main() uses pic16glue() to glue up pic16 programs
8146         * src/SDCCpeeph.c: various changes to support pic16
8147         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8148             return the i'th item of the set
8149         * src/SDCCset.h: added function prototype for indexSet()
8150         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8151         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8152         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8153             added macro DEFAULT_PORT
8154         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8155         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8156             generated
8157         * src/pic16/glue.c: commented out some error producing lines
8158         * src/pic16/main.c: __config directives are commented out to stop
8159             gpasm complaining and test the linkage with gplink, _linkCmd and
8160             _asmCmd changed to be more gplink and gpasm friendly
8161         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8162             produced an error when parsed, peep rule 12 is added to utilize
8163             movff, but it is commented out since the pCode does not support
8164             yet a command with 2 address arguments
8165
8166 2003-05-18    <johan AT balder>
8167
8168         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8169         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8170 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8171
8172         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8173   Added feature to script commands from file.
8174
8175 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8176
8177         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8178         * src/SDCCutil.c: include ctype.h for win32
8179
8180 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8181
8182         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8183
8184 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8185
8186         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8187   Fixed so you can set breakpoints prior to run, run does not stop
8188   on entry now.  Add tbreak.  Other enhancements and fixes for use
8189   with ddd.
8190
8191 2003-05-12  Borut Razem <borut.razem AT siol.net>
8192
8193         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8194
8195 2003-05-11  Borut Razem <borut.razem AT siol.net>
8196
8197         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8198         the path of bin directory, so that PATH is the only env. variable, which has to be set
8199         in case of standard installation.
8200         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8201         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8202         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8203
8204 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8207         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8208         temp files are in the port dir; clean the gen/test directory when
8209         generating new test.c
8210         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8211         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8212         * support/regression/tests/zeropad.c: added
8213
8214 2003-05-09    <johan AT balder>
8215
8216         * src/SDCCglue.c: fixed bug #597940
8217
8218 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8219
8220         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8221   cache sfr, optimize next,step, fix off by one sourceline,
8222   support ddd list function.
8223         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8224
8225 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8226
8227         * support/regression/HTMLgen.py: added compare_s2f()
8228         * support/regression/Makefile: redo 1.27
8229         * support/regression/generate-cases.py: redo 1.5
8230
8231 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8232
8233         * support/regression/tests/float.c: workaround 33 bit hex constant
8234         * support/regression/tests/simplefloat.c: fix division for host
8235
8236 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8237
8238         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8239         that tame's the PIC's over-aggressive optimizer.
8240
8241 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8242
8243          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8244          support for MSVC.
8245
8246 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8247
8248         Initial support for DS80C400. "Hello world" runs on TINIm400
8249         (with polled I/O).
8250
8251 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8252
8253          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8254          * Some notes on ddd usage added in debugger/README
8255          Martin Helmling adding more features and fixes for ddd GUI debugger.
8256          Code added for nexti, stepi, up, down, and other adjustments.
8257
8258 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8259
8260         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8261         * src/pic/peeph.def Added two rules to optimize carry manipulation
8262         * src/pic/* removed debug printfs
8263
8264 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8265
8266         * debugger/mcs51/cmd.c: added header newalloc.h
8267
8268 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8269
8270         * as/Makefile: new EXEEXT
8271         * as/z80/Makefile: remove trailing slash of BUILDIR
8272         * as/z80/clean.mk: new EXEEXT
8273         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8274         * support/cpp2/Makefile.in: new EXEEXT
8275         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8276
8277 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8278
8279         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8280         EXEEXT was introduced to fix all related problems with targets
8281         "clean", "install" and "uninstall"; a couple of further flaws
8282         especially with "clean" have been fixed too
8283         * as/mcs51/Makefile.in
8284         * as/mcs51/clean.mk
8285         * as/z80/Makefile
8286         * Makefile
8287         * clean.mk
8288         * debugger/mcs51/Makefile.in
8289         * debugger/mcs51/clean.mk
8290         * link/z80/Makefile
8291         * link/z80/Makefile.in
8292         * link/z80/clean.mk
8293         * link/Makefile
8294         * packihx/Makefile.in
8295         * packihx/clean.mk
8296         * sim/ucsim/Makefile
8297         * sim/ucsim/clean.mk
8298         * sim/ucsim/avr.src/Makefile.in
8299         * sim/ucsim/avr.src/clean.mk
8300         * sim/ucsim/s51.src/Makefile.in
8301         * sim/ucsim/s51.src/clean.mk
8302         * sim/ucsim/xa.src/Makefile.in
8303         * sim/ucsim/xa.src/clean.mk
8304         * sim/ucsim/z80.src/Makefile.in
8305         * sim/ucsim/z80.src/clean.mk
8306         * sim/ucsim/main_in.mk
8307         * sim/ucsim/packages_in.mk
8308         * sim/ucsim/gui.src/Makefile.in
8309         * sim/ucsim/gui.src/serio.src/Makefile.in
8310         * sim/ucsim/gui.src/serio.src/clean.mk
8311         * src/Makefile.in
8312         * src/clean.mk
8313         * support/cpp2/Makefile.in
8314         * support/cpp2/clean.mk
8315         * support/makebin/Makefile
8316         * support/makebin/clean.mk
8317         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8318         * doc/sdccman.lyx: --program-suffix no longer needed
8319
8320 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8321
8322          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8323          Martin Helmling added support for ddd GUI debugger.
8324          Code added to display assembly, set variables, and other commands
8325          to interface to ddd.
8326
8327 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8328
8329         * as/Makefile: fix target clean
8330         * as/clean.mk: fix target clean
8331         * as/z80/clean.mk: fix target clean
8332
8333 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         * Makefile.common.in: added  AT EXEEXT AT
8336         * configure.in: removed all mingw32 stuff
8337         * configure: rebuilt from configure.in
8338         * doc/sdccman.lyx: updated section "installation"
8339         * support/scripts/sdcc_mingw32: adapted to configure
8340         * support/scripts/sdcc_cygwin_mingw32: added
8341
8342 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8343
8344         * src/pic Added object file support for the PIC port
8345         * src/pic Applied patch from Craig Franklin (this started the object file support)
8346         * src/regression Updated the PIC regression tests for object files
8347
8348 2003-04-20  Borut Razem <borut.razem AT siol.net>
8349
8350         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8351           lklex.c: In function `getfid':
8352           lklex.c:203: warning: array subscript has type `char'
8353         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8354           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8355         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8356           stack handling macros
8357
8358 2003-04-19  Borut Razem <borut.razem AT siol.net>
8359
8360         * "handling space characters in file path" task:
8361         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8362         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8363         * support/Util/MySystem.h: make it self-sufficient
8364         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8365           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8366           handling space characters in file path
8367         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8368           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8369         * support/Util/MySystem.c: handling space characters in executable's path
8370
8371 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8372
8373         * as/z80/Makefile: fix permanent rebuild of z80
8374         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8375         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8376
8377 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8378
8379         * src/SDCCopt.c: add special case optimization to replace modulo by
8380           a power of two with a bitwise AND.
8381
8382 2003-04-18    <johan AT balder>
8383
8384         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8385
8386 2003-04-17    <johan AT balder>
8387
8388         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8389         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8390
8391 2003-04-13  Borut Razem <borut.razem AT siol.net>
8392
8393         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8394         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8395           fixed mingw problem in adl_NORMALIZE_PATH
8396
8397 2003-04-12  Borut Razem <borut.razem AT siol.net>
8398
8399         * fixed "#pragma SAVE/RESTORE can not be nested":
8400         * src/SDCC.lex: reworked pragma handling functions
8401         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8402         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8403
8404 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * src/SDCCutil.c (pathEquivalent): defined but not used
8407         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8408         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8409         * configure: rebuilt from configure.in
8410         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8411         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8412         * device/include/Makefile.in: replace sdcc_datadir
8413         * device/lib/Makefile.in: replace sdcc_datadir
8414         * Makefile.common.in: add LDFLAGS from configure
8415         * packihx/Makefile.in: use LDFLAGS
8416         * src/Makefile.in: use LDFLAGS
8417         * support/cpp2/Makefile.in: add LDFLAGS from configure
8418         * support/makebin/Makefile: use LDFLAGS
8419         * .version: bumped version number to 2.3.5
8420
8421 2003-04-12  Borut Razem <borut.razem AT siol.net>
8422
8423         * completed "different paths" task:
8424         * src/SDCCmacro.c: fixed bug in handling quotes
8425         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8426         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8427
8428 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8429
8430         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8431
8432 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8433
8434         * ds390/gen.c ds390/peeph.def: fix bug 706781
8435
8436 2003-04-11  Borut Razem <borut.razem AT siol.net>
8437
8438         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8439
8440 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8441
8442         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8443         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8444          set - this bit used to not be set...).
8445         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8446           bad code in PIC Port
8447         * src/regression/and2.c added to test bug 609268
8448         * src/regression/Makefile added and2.c to regression test
8449
8450
8451 2003-04-08    <johan AT CP255758-A>
8452
8453         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8454         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8455         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8456
8457 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8458
8459         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8460         fix bug #487815
8461         * support/cpp2/Makefile.in: fix bug #487815
8462         * configure: rebuilt from configure.in
8463         * Makefile.common.in: docdir changed, new path suffixes
8464         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8465         * sdcc_vc_in.h: reflect changes from sdccconf.h
8466         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8467         * src/SDCCutil.h: remove BINDIR hack
8468         * doc/sdccman.lyx: update new path hierarchy
8469
8470 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8471
8472         * src/SDCCpeeph.c: added okToRemoveSLOC test
8473
8474 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8475
8476         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8477
8478 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8479
8480         * src/SDCCpeeph.c: added labelIsReturnOnly test
8481         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8482
8483 2003-04-05    <johan AT balder>
8484
8485         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8486         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8487         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8488         * src/SDCCast.c: fixed a warning
8489         * src/SDCCast.h: fixed a warning
8490         * src/SDCCicode.c (operandFromAst): fixed a warning
8491
8492 2003-04-04    <johan AT balder>
8493
8494         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8495         * src/SDCCast.c (decorateType): fixed bug #715076
8496         * src/SDCC.y: fixed bug #702907
8497
8498 2003-04-03    <johan AT balder>
8499
8500         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8501         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8502         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8503         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8504         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8505
8506 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * _decdptr.c: fix return values
8509         * _gptrget.c: fix return values
8510         * _gptrgetc.c: fix return values
8511         * _gptrput.c: fix return values
8512         * _mulint.c: fix return values
8513         * as/z80/Makefile: fix 'make -j' problem
8514
8515 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8518         * configure.in: big cleanup, updated to autoconf 2.5x
8519         * configure: rebuilt from configure.in
8520         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8521         * sdcc_vc_in.h: reflect changes from sdccconf.h
8522         * doc/Makefile: fixed a flaw in "make install"
8523
8524 2003-04-02    <johan AT balder>
8525
8526         * src/ds390/gen.c (genCmp): no comments
8527         * src/mcs51/gen.c (genCmp): no comments
8528         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8529         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8530
8531 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8532
8533         * support/regression/generate-cases.py: place generated file in given sub directory
8534         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8535         * support/regression/Makefile: improvements for 'make -j';
8536         side effect: it's simpler and faster now
8537
8538 2003-03-31  Borut Razem <borut.razem AT siol.net>
8539
8540         * src/z80/main.c: link-{port} and as-{port} defined without path
8541         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8542
8543 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8544
8545         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8546
8547 2003-03-30  Borut Razem <borut.razem AT siol.net>
8548
8549         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8550           changed type of list parameter to set
8551         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8552         * src/port.h: changed type of do_assemble() parameter to set
8553         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8554           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8555           definition of "cppoutfilename" macro with NULL value in preProcess()
8556         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8557         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8558         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8559           replaced with set *binPathSet
8560         * shash_add() deallocates the item, if allready exsists, before adding the new one
8561         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8562
8563 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8564
8565         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8566           a nested for loop bug in the PIC port
8567         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8568           for loops
8569
8570 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8571
8572         * support/Util/dbuf.h: remove C++ stuff to make it portable
8573
8574 2003-03-28  Borut Razem <borut.razem AT siol.net>
8575
8576         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8577           literal strings in stringLiteral()
8578         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8579         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8580           to the project
8581
8582 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8583
8584         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8585
8586 2003-03-26    <johan AT balder>
8587
8588         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8589         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8590         * src/SDCCast.c (decorateType): fixed " -v < 3"
8591
8592 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8595         Added Lenny Story's debug infrastructure changes:
8596         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8597         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8598         * src/cdbFile.c: added
8599         * src/SDCCdebug.c: added
8600         * src/SDCCdebug.h: added
8601         * src/SDCCast.c (createFunction)
8602         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8603         * src/SDCCmain.c (parseCmdLine, main)
8604         * src/SDCCmem.c (redoStackOffsets)
8605         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8606         * src/SDCCsymt.h
8607         * src/common.h
8608         * src/avr/gen.c (genAVRCode)
8609         * src/ds390/gen.c (gen390Code)
8610         * src/mcs51/gen.c (gen51Code)
8611         * src/pic/gen.c (genpic14Code)
8612         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8613         * src/xa51/gen.c (genXA51Code)
8614         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8615
8616 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8617
8618         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8619         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8620
8621 2003-03-22    <johan AT balder>
8622
8623         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8624
8625 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8626
8627         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8628         * doc/cdbfileformat.lyx: added, written by Lenny Story
8629         * doc/Makefile: added cdbfileformat.lyx
8630         * doc/clean.mk: added cdbfileformat.lyx
8631
8632 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8633
8634         * src/mcs51/peeph.def: fix bug #705773
8635
8636 2003-03-20    <johan AT balder>
8637
8638         An sfr/sbit can have an "at #" AND an initializer
8639         * src/SDCCsymt.c (checkSClass):
8640         * src/SDCCmem.c (allocGlobal):
8641         * src/SDCCmem.c (allocLocal):
8642         * src/SDCCast.c (createBlock):
8643
8644 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8645
8646         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8647
8648 2003-03-16    <johan AT balder>
8649
8650         Undid the hackup of const and volatile, the problem is much bigger
8651         * src/SDCC.y:1.65
8652         * src/SDCCast.c:1.171
8653         * src/SDCCglue.c:1.138
8654         * src/SDCCicode.c:1.146
8655         * src/SDCCsymt.c:1.150
8656         * src/SDCCval.c:1.65
8657
8658 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8659
8660         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8661         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8662
8663 2003-03-13    <johan AT balder>
8664
8665         Hackup const and volatile modifiers in type chains a bit:
8666         * src/SDCC.y:1.63
8667         * src/SDCCast.c:1.169
8668         * src/SDCCglue.c:1.136
8669         * src/SDCCicode.c:1.143
8670         * src/SDCCsymt.c1.146
8671         * src/SDCCsymt.h1.59
8672         * src/SDCCval.c:1.63
8673
8674 2003-03-12    <johan AT balder>
8675
8676         * src/SDCCBBlock.h: more LRH debugging junk
8677         * src/SDCCcflow.h: more LRH debugging junk
8678         * src/SDCCloop.c: more LRH debugging junk
8679         * src/SDCC.y (struct_declaration): fixed bug #697590
8680         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8681         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8682         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8683
8684 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8685         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8686         test function names must now match exactly).
8687         * src/SDCCcse.c: added special case in findCheaperOp to allow
8688         extending a short integer. Makes less awful code for bug 700121 test case.
8689
8690 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8691
8692         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8693         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8694
8695 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8696
8697         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8698         actually called (operandsNotEqual() was called for all
8699         operandsNotEqualX tests).
8700
8701 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8702
8703         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8704         with shorter literals. Fixes bug 700121.
8705
8706 2003-03-11    <johan AT balder>
8707
8708         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8709
8710 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8711
8712         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8713         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8714
8715 2003-03-10  Borut Razem <borut.razem AT siol.net>
8716
8717         * src/SDCCmain.c: pipe preprocessor's output
8718         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8719         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8720         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8721         which closes all pipes in pipeSet set
8722         * src/SDCCset.c: free deleted item in function deleteSetItem()
8723         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8724         moved from z80 to src subproject
8725         * .version: increased version number to 2.3.4
8726
8727 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8728
8729         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8730         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8731         * support/regression/ports/xa51/spec.mk: fix typo
8732
8733 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8734
8735         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8736
8737 2003-03-09  Borut Razem <borut.razem AT siol.net>
8738
8739         * src/SDCCmain.c: pipe preprocessor's output
8740         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8741         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8742         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8743         which closes all pipes in pipeSet set
8744         * src/SDCCset.c: free deleted item in function deleteSetItem()
8745         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8746         moved from z80 to src subproject
8747
8748 2003-03-09  Borut Razem <borut.razem AT siol.net>
8749
8750         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8751         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8752         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8753         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8754         * src/SDCCglobl.h: unification of WIN32 native definitions
8755
8756 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8757
8758         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8759
8760 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8761
8762         * src/configure.in:   check for endianess (even while cross-compiling)
8763         * src/configure:      check for endianess (even while cross-compiling)
8764         * src/configure_in.h: check for endianess (even while cross-compiling)
8765         * src/avr/gen.c:        remove old endianess stuff
8766         * src/mcs51/gen.c:      remove old endianess stuff
8767         * src/ds390/gen.c:      remove old endianess stuff
8768         * src/pic/gen.c:        remove old endianess stuff
8769         * src/pic/genarith.c:   remove old endianess stuff
8770         * src/pic/glue.c:       fix endianess check
8771         * src/pic16/gen.c:      remove old endianess stuff
8772         * src/pic16/genarith.c: remove old endianess stuff
8773         * src/pic16/glue.c:     fix endianess check
8774         * src/xa51/gen.c:       remove old endianess stuff
8775         * src/z80/gen.c:        fix endianess check
8776         * src/SDCCglue.c:       fix endianess check
8777         * src/ds390/peeph.def: fix bug 700036
8778
8779 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8780
8781         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8782         * src/configure: find appropriate data-types on host for SDCC's int and long
8783         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8784         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8785         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8786
8787 2003-03-07    <johan AT balder>
8788
8789         Just a big NOOP:
8790                 some minor cleanups before the big shot
8791                 OP_DEFS and OP_USES now use Kevin's protection
8792                 new option --nolabelopt
8793
8794         * src/SDCCBBlock.c:
8795         * src/SDCCast.c,:
8796         * src/SDCCcflow.c:
8797         * src/SDCCcse.c:
8798         * src/SDCCicode.c:
8799         * src/SDCCicode.h:
8800         * src/SDCClabel.c:
8801         * src/SDCCloop.c:
8802         * src/SDCCmain.c:
8803         * src/ds390/ralloc.c:
8804         * src/mcs51/ralloc.c:
8805         * src/pic/ralloc.c:
8806         * src/xa51/ralloc.c:
8807         * src/z80/ralloc.c:
8808
8809 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8810
8811         * src/pic/pcode.c (get_op): fix 64 bit warnings
8812         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8813         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8814         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8815         * support/regression/tests/malloc.c: fix 64 bit warnings
8816
8817 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8818
8819         * src/mcs51/gen.c (genMinus): fixed bug 696436
8820
8821 2003-03-02  Borut Razem <borut.razem AT siol.net>
8822
8823         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8824
8825 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8826
8827         * configure.in: test for mkstemp
8828         * sdccconf_in.h: add HAVE_MKSTEMP
8829
8830 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8831
8832         * device/include/ctype.h: removed warning while using --stack-auto
8833         * device/include/malloc.h: removed warning while using --stack-auto
8834         * device/include/string.h: removed warning while using --stack-auto
8835
8836 2003-02-23  Borut Razem <borut.razem AT siol.net>
8837
8838         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8839         because NDEBUG is defined (see man assert)
8840         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8841
8842 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8843
8844         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8845         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8846
8847 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8848
8849         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8850         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8851
8852 2003-02-18    <johan AT balder>
8853
8854         * as/mcs51/asmain.c (asmbl): module can start with a digit
8855         * as/z80/asmain.c (asmbl): module can start with a digit
8856
8857 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8858
8859         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8860         * src/asm.c: fix pipe() for Mingw32
8861
8862 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8863
8864         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8865         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8866         make -V work again; --c1mode reads now from stdin
8867         * doc/sdccman.lyx: added --c1mode
8868         * support/Util/SDCCerr.c: new messages for c1 mode
8869         * support/Util/SDCCerr.h: new messages for c1 mode
8870         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8871
8872 2003-02-15    <johan AT balder>
8873
8874         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8875
8876 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8877
8878         * doc/sdccman.lyx: Environment variables, -o and other minor things
8879
8880 2003-02-14    <johan AT balder>
8881
8882         * src/xa51/main.c: before anyone really tries to use it :)
8883
8884         * Install doc's in share/sdcc/doc
8885         * removed some obsolete files
8886         * Do a proper make distclean and uninstall
8887         M Makefile.common.in
8888         R sdccbuild.sh
8889         M as/Makefile
8890         M device/include/Makefile.in
8891         M device/lib/Makefile.in
8892         M doc/sdccman.lyx
8893         M link/Makefile
8894         M sim/ucsim/doc/Makefile.in
8895         M src/clean.mk
8896         R src/avr/peeph.rul
8897         R src/xa51/peeph.rul
8898         M support/cpp2/Makefile.in
8899         M support/makebin/Makefile
8900
8901
8902 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8903
8904         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8905
8906 2003-02-10  Borut Razem <borut.razem AT siol.net>
8907
8908         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8909         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8910         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8911         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8912         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8913         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8914         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8915         src/z80/Makefile.bcc: Borland Makefile cleanup
8916         * as/z80/Makefile.bcc: Added Borland Makefile
8917         * support/cpp2/borland.h: Removed
8918
8919 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8922         * src/SDCC.lex: new pragma NOIV
8923         * src/SDCCglobl.h: new pragma NOIV
8924         * src/SDCCmem.c: new pragma NOIV
8925
8926 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8927
8928         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8929
8930 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8931
8932         * src/SDCCmain.c: signal handling is switched off by --debug
8933         * doc/Makefile: small fix for install; use clean.mk again
8934         * doc/clean.mk: clean *.pdf and *.html too
8935
8936 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8937
8938         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8939         * device/lib/printfl.c: fix a ds390 bug by making it portable
8940         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8941         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8942         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8943         * debugger/mcs51/cmd.c: converted multi-line string literals
8944         * sim/ucsim/globals.cc: converted multi-line string literals
8945         * src/SDCCmain.c: introduced signal handler to remove temp files
8946         * doc/Makefile: small tweaks, implement clean
8947         * doc: removed generated files
8948
8949 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8950
8951         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8952         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8953         Address Record is not correctly generated for DS390."
8954
8955 2003-02-02  Borut Razem <borut.razem AT siol.net>
8956
8957         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8958         * as/mcs51/asm.h: fixed compilation with Borland C
8959         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8960         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8961         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8962         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8963         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8964         src/z80/Makefile.bcc: delete $(LIB) only if exist
8965         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8966
8967 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8968
8969         * device/include/malloc.h: introduced NULL
8970         * device/include/string.h: introduced NULL
8971         * device/include/stdlib.h: introduced NULL
8972         * device/lib/_memcpy.c: removed NULL
8973         * device/lib/_strcat.c: removed NULL
8974         * device/lib/_strchr.c: removed NULL
8975         * device/lib/_strcmp.c: removed NULL
8976         * device/lib/_strcpy.c: removed NULL
8977         * device/lib/_strcspn.c: removed NULL
8978         * device/lib/_strlen.c: removed NULL
8979         * device/lib/_strncat.c: removed NULL
8980         * device/lib/_strncmp.c: removed NULL
8981         * device/lib/_strncpy.c: removed NULL
8982         * device/lib/_strpbrk.c: removed NULL
8983         * device/lib/_strrchr.c: removed NULL
8984         * device/lib/_strspn.c: removed NULL
8985         * device/lib/_strstr.c: removed NULL
8986         * device/lib/_strtok.c: removed NULL
8987         * device/lib/malloc.c: removed NULL, include own header
8988
8989 2003-02-02    <johan AT balder>
8990
8991         * 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
8992         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8993         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8994         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8995         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8996         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8997
8998 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8999
9000         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9001         area 'DATA'"
9002
9003 2003-02-01    <johan AT balder>
9004
9005         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9006
9007 2003-01-31    <johan AT CP255758-A>
9008
9009         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9010
9011 2003-01-30    <johan AT balder>
9012
9013         * src/SDCCBBlock.c: automatic bug detection
9014         * src/SDCCicode.c: automatic bug detection
9015
9016 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9017
9018         * src/SDCCglobl.h:   now --xram-size 0 works
9019         * src/SDCCmain.c:    now --xram-size 0 works
9020
9021 2003-01-29    <johan AT balder>
9022
9023         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9024
9025 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9026
9027         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9028         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9029         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9030         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9031         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9032         * src/SDCCmain.c:    Added options --xram-size and --code-size
9033
9034 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9035
9036         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9037         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9038
9039 2003-01-27    <johan AT balder>
9040
9041         * src/SDCC.y: fixed bug #613764
9042
9043 2003-01-26    <johan AT balder>
9044
9045         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9046         * src/SDCCsymt.h: fixed bug #673374
9047         * src/SDCCglue.c: fixed bug #661910
9048         * src/SDCCast.c: fixed bug #458099 and 673374
9049
9050 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9051
9052         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9053         * as/mcs51/strcmpi.h: added
9054         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9055         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9056         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9057         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9058         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9059         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9060         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9061         * as/mcs51/Makefile.aslink: new module strcmpi
9062         * as/mcs51/Makefile.asx8051: new module strcmpi
9063         * as/mcs51/Makefil.bcc: new module strcmpi
9064         * as/mcs51/Makefile.in: new module strcmpi
9065         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9066
9067 2003-01-26    <johan AT balder>
9068
9069         * src/SDCCglue.c: reverted back to 1.124
9070         * src/SDCCast.c: reverted back to 1.156
9071         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9072
9073 2003-01-25    <johan AT balder>
9074
9075         * src/SDCCglue.c: A better fix for bug #661910
9076         * src/SDCCast.c: A better fix for bug #661910
9077         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9078
9079 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9080
9081         * src/Makefile.in: remove spawn.o
9082         * src/SDCCmain.c: remove spawn.h
9083         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9084         * src/spawn.c: removed
9085         * src/spawn.h: removed
9086         * support/regression/ports/ds390/spec.mk: link with -r
9087
9088 2003-01-24    <johan AT CP255758-A>
9089
9090         * src/ds390/gen.c (aopOp): fixed bug #667458
9091         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9092         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9093         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9094
9095 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9096
9097         * src/mcs51/peeph.def: better assembler identation by Frieder
9098         * src/mcs51/gen.c: better assembler identation by Frieder
9099
9100 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9101
9102         * as/z80/string.h: removed for gcc 3.2
9103         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9104         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9105
9106 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9107
9108         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9109         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9110         * support/regression/Makefile: separate temp files for ports
9111         * support/regression/generate-cases.py: separate temp files for ports
9112         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9113         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9114
9115 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * moved tinitalk to device/examples/ds390
9118
9119 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9120
9121         * as/mcs51/lkmem.c: rflag is for DS390
9122         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9123         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9124                          (linkEdit): move mem- and map-files the same way as ihx-files
9125         * src/z80/main.c (_setDefaultOptions): removed --generic
9126         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9127         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9128         * src/pic/glue.c (picglue): --c1mode works again
9129         * src/pic16/glue.c (pic16glue): --c1mode works again
9130         * src/asm.c (printCLine): fix #660034
9131
9132 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9133
9134         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9135         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9136         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9137         * as/mcs51/lkmem (summary): better fix for sp problem
9138         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9139         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9140         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9141                                               remove --stack-after-data
9142
9143 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9144
9145         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9146         * src/SDCCutil.c (join): ugly bug: missing '\0'
9147         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9148
9149 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9150
9151         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9152         * src/port.h: typo
9153         * src/pic/main.c (_asmCmd): gpasm supports -o
9154         * src/z80/main.c: more general macros
9155         * device/lib/Makefile.in: remove intermediate files
9156
9157 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9158
9159         * .version: Bumped version number to 2.3.3
9160         * src/SDCCBBlock.c: new option -o
9161         * src/SDCCglobl.h: new option -o
9162         * src/SDCCglue.c: new option -o
9163         * src/SDCCmain.c: new option -o
9164         * src/asm.c: new option -o
9165         * src/ds390/main.c: new option -o
9166         * src/pic/glue.c: new option -o
9167         * src/pic/pcode.c: new option -o
9168         * src/pic/ralloc.c: new option -o
9169         * src/pic16/glue.c: new option -o
9170         * src/pic16/pcode.c: new option -o
9171         * src/pic16/ralloc.c: new option -o
9172         * src/z80/main.c: new option -o
9173         * device/lib/Makefile.in: use -o
9174         * support/regression/ports/ds390/spec.mk: use -o
9175         * support/regression/ports/gbz80/spec.mk: use -o
9176         * support/regression/ports/mcs51/spec.mk: use -o
9177         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9178         * support/regression/ports/z80/spec.mk: use -o
9179         * support/regression/ports/ucz80/spec.mk: use -o
9180         * support/regression/ports/xa51/spec.mk: use -o
9181         * support/regression/fwk/lib/timeout.c: fix usage string
9182
9183 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9184         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9185
9186 2003-01-07    <johan AT balder>
9187
9188         * src/SDCCast.c (decorateType): fixed bug #600035
9189
9190 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9191         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9192         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9193         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9194         * src/pic/pcode.c: outcommented unused variable to remove warnings
9195         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9196
9197 2003-01-06    <karl AT turbobit.com>
9198         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9199    regression tests.
9200
9201 2003-01-06    <johan AT balder>
9202
9203         * src/SDCCicode.c: fixed array add
9204
9205 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9206         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9207         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9208
9209 2003-01-04    <johan AT balder>
9210
9211         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9212
9213 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9214         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9215
9216 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9217         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9218         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9219
9220 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9221         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9222
9223 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9224         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9225
9226 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9227         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9228
9229 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9230
9231     * in \sdcc\as\mcs51\ changed these files in order to create an
9232     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9233     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9234     following files to include the previous two files: aslink.dsp,
9235     Makefile.aslink, Makefile.bcc, and Makefile.in.
9236
9237     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9238     .adb instead of .cdb
9239
9240 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9241
9242         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9243         value from option --iram-size.
9244
9245 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9246
9247         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9248         dram[] array.
9249
9250 2002-09-18    <wiml AT hhhh.org>
9251
9252         * SDCClrange.h: exposed setFromRange() and setToRange()
9253         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9254           packRegsForAccUse() (bug 542397)
9255         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9256           multiple times and emitting the fetch operations more than once
9257           added aopGetUsesAcc() function to allow binary operators to
9258           fetch their operands in the correct order; made genMinus() emit
9259           compact code for X = LITERAL - Y
9260
9261 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9262         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9263         sprintf() in line 1267.
9264
9265 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9266         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9267         like ports.
9268
9269 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9270         Changes to aslink (All the changes are marked with 'JCF'):
9271
9272         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9273         summary().
9274
9275         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9276         area BSEG.  Also moves, if possible, the DATA area down into the internal
9277         ram so more space is available.
9278
9279         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9280         sflag.
9281
9282         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9283         not bytes.  Function summary() which creates a memory usage summary
9284         file with extension .mem.  Reports of overlaping stack and small stack
9285         size.  If the space for the stack is less than 16 bytes aslink trows a
9286         warning.
9287
9288         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9289         the 8051.  Option 'y' for memory summary output file.
9290
9291         Changes to sdcc (All the changes are marked with 'JCF'):
9292
9293         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9294
9295         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9296         overlaying area for it (uses RegBankUsed[4]).
9297
9298         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9299         bank zero as used by default.  By default aslink locates the stack
9300         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9301         the creation of the .mem file.  Delegates the allocation of data area
9302         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9303         the begining of the stack area to aslink.
9304
9305         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9306         glue() in SDCCglue.c creates an area for it.
9307
9308 2002-09-03  Borut Razem <borut.razem AT siol.net>
9309         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9310         sdcc/src/pic/glue.c:
9311         introduced atexit() handler for teporay files removal in case of
9312         errors, assertions, ...
9313
9314 2002-08-29  Borut Razem <borut.razem AT siol.net>
9315         * sdcc/support/cpp2/auto-host_vc_in.h:
9316         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9317         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9318         Maybe there is a similar problem with BORLANDC? It should be checked!
9319
9320         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9321         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9322         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9323         was not executed, and the compiler (cl) launched a warning:
9324         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9325
9326 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9327         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9328
9329 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9330         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9331
9332         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9333           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9334           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9335           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9336           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9337           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9338           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9339         - added Release configuration in VS projects
9340         - review of compiler an linker options
9341         - VC .exe files are generated in bin_vc directory, not to interfere
9342           with binaries generated from other projects (cygwin, mingw, bcc ...)
9343
9344         * sdcc/src/yacc.dsp: added
9345
9346         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9347         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9348         and insert the version number definitions from .version
9349
9350         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9351
9352         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9353         added - genarate auto-host.h using auto-host_vc_in.h as template
9354
9355         * sdcc/sdcc_vc.h,
9356         removed from CVS, generated automatically
9357
9358 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9359         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9360
9361 2002-08-11  Borut Razem <borut.razem AT siol.net>
9362         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9363
9364 2002-08-10  Borut Razem <borut.razem AT siol.net>
9365         * src/SDCCmain.c (main):
9366         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9367         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9368         The consequence was that some temporary files were not removed.
9369
9370         * src/SDCCglue.c:
9371         unification of code in functions tempfilename() and tempfile():
9372         function tempnam() is defined in Visual Studio 6.0 and .NET
9373
9374         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9375
9376         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9377           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9378         - removed compiler command line option /WX: Treats all warnings as errors
9379         - update a list of source files, included into the project
9380
9381         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9382           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9383         changed project type to Generic Project so that can be correcly converted to VS.NET project
9384
9385         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9386
9387         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9388
9389         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9390
9391         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9392         added return 0 statements after assert() to make compiler happy
9393
9394         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9395         added newline in the def file to keep MSC compiler satisfied
9396
9397         * sdcc/src/z80/gen.c:
9398         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9399           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9400         - solved MSC error in function aopDump()
9401
9402         * sdcc_vc.h: define PREFIX as "\\sdcc"
9403
9404 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9405         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9406
9407 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9408         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9409         - Rewrote the register banking algorithm.
9410         - Added pCode live-range analysis to registers (for now, only non-used and
9411         singly-used registers optimized away)
9412
9413         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9414
9415         * 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.
9416
9417 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9418         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9419
9420 2002-04-22  Michael Hope  <michaelh AT vroom>
9421
9422         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9423
9424         * configure.in (DD_COPT): Added include support required for gbdk.
9425
9426         * .version: Bumped version number just to increase it.
9427
9428         * src/SDCCmain.c: Added -nostdinc to the default options.
9429
9430 2002-04-15  Michael Hope  <michaelh AT vroom>
9431
9432         * device/lib/z80/printf.c (sprintf): Added.
9433
9434         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9435
9436         * src/z80/peeph.def: Added transpose redundent load rule.
9437
9438         * src/z80/main.c: Added force callee saves for jaune.
9439
9440         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9441
9442         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9443
9444 2002-03-28  Johan Knol  <johan AT balder>
9445
9446         * src/SDCCval.c: fixed bug #532436
9447
9448 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9449         * /src/port.h:
9450         Added "char *Processor" field to the port structure.
9451
9452         * /src/SDCCmain.c:
9453         Added -p option. Allows port dependent processor to be specified.
9454
9455         * all ports:
9456         Initialized the new field char *Processor field to NULL in all ports
9457
9458         * /src/pic/*:
9459         Compiler generated registers for interrupt context saving
9460         were not getting allocated.
9461
9462 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9463
9464         * /src/SDCCast.c:
9465         Fixed left shift. Will promote the left side of a left shift
9466         if a) left shifting more than size of operand or b) when assigned
9467         to something size > size of left side
9468
9469 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9470         * src/pic/*
9471         tons of changes. Register allocation has been
9472         rewritten. Added customization for the various PICs. Flow
9473         analysis is restructured. ...
9474
9475         * src/pic/device.h:
9476         Added
9477
9478         * src/pic/device.c:
9479         Added. device.c is a PIC port hack to accomodate variations
9480         in PIC devices.
9481
9482 2002-03-13  Michael Hope  <michaelh AT vroom>
9483
9484         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9485
9486 2002-03-04  johanknol  <johanknol AT manik>
9487
9488         * /src/SDCCval.c: fixed
9489
9490         const unsigned char arr[][2] = { { 0, 1 } };
9491         t18.c:1: error: Initializer element is not constant
9492
9493 2002-03-04  bela  <bela AT manik>
9494
9495         * /device/include/mcs51reg.h:
9496         ds89c420 register definition update
9497
9498 2002-03-03    <johan AT FRIJA>
9499
9500         * support/Util/SDCCerr.c: did something, but don't no why anymore
9501
9502         * support/regression/tests/bug-524691.c: made it a little less shy
9503
9504         * src/SDCCast.c (decorateType): fixed bug #524697
9505
9506         * src/SDCCast.c: made some lineno improvements
9507
9508         * src/SDCCval.c (getNelements): changed warning to error
9509
9510         * src/SDCCglue.c (printIvalArray): changed warning to error
9511
9512         * src/SDCCicode.c: fixed a warning for mingw
9513
9514         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9515
9516         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9517
9518 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9519
9520         * src/ds390/peeph.def:
9521         Added some more peephole rules
9522
9523         * src/ds390/gen.c: Various fixes & enhancements
9524
9525         * src/SDCClrange.c, src/SDCClrange.h:
9526         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9527
9528         * src/ds390/ralloc.c:
9529         various fixes & enhancements (ds390) specific
9530
9531         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9532         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9533         from rallocs.
9534
9535         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9536
9537 2002-03-02    <johan AT FRIJA>
9538
9539         * src/SDCCast.c (decorateType): fixed bug #524708
9540
9541         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9542
9543         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9544
9545 2002-03-01  Michael Hope  <michaelh AT vroom>
9546
9547         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9548
9549         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9550
9551 2002-03-01    <johan AT FRIJA>
9552
9553         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9554
9555         * src/SDCCast.c (decorateType): fixed bug #524209
9556
9557         * src/SDCCval.c (valNot): fixed bug #524195
9558
9559 2002-02-26    <johan AT balder>
9560
9561         * src/xa51/gen.c: fixed a warning
9562
9563         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9564
9565         * src/SDCCast.c (decorateType): fixed bug #522534
9566
9567 2002-02-23    <johan AT balder>
9568
9569         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9570
9571 2002-02-22    <johan AT balder>
9572
9573         * src/SDCCast.c: fixed bug #514865
9574
9575         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9576
9577 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9578
9579         * sdcc/src/SDCCloop.c:
9580         Previous fix was not good. basic blocks that have "break" or "return" are
9581         not really partof a loop , but live ranges used in these blocks should
9582         be live thru the entire loop, so set partOfLoop but don't add them to
9583         loop region
9584
9585 2002-02-21    <johan AT FRIJA>
9586
9587         * src/SDCCcse.c: fixed bug #514308
9588
9589 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9590
9591         * src/SDCCloop.c:
9592         Fixed BUG #519583. If a conditional block ended in a return/break
9593         statement inside a loop, it was not being considered part of the loop.
9594
9595         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9596
9597 2002-02-10  Karl Bongers <karl AT turbobit.com>
9598
9599         * debugger/*:
9600         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9601         with lots of comments and notes.
9602
9603         * device/examples/test2.c:
9604         Fix bug, "red" variable not being initialized(compiler complained).
9605
9606         * device/examples/Makefile, examples/test3.c:
9607         Add Makefile in device/examples folder, compiles test3.c
9608         for use as a multiple module SDCDB test case.
9609
9610         * sim/ucsim/cmd.src/cmdset.cc:
9611         Took out debug printfs in ucsim "next" command.
9612
9613         * sim/ucsim/xa.src:
9614         Karl and Johan start ucsim XA support.  Most dissassembly working,
9615         about 75% emulation done(plenty of work remaining).
9616
9617         * sim/ucsim/z80.src:
9618         Add Z80 support to ucsim, add test-ucz80 regression test,
9619         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9620         Notice z80 compiler fails on examples/test3.c/crc code.
9621
9622 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9623
9624         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9625         Added support for --parms-in-bank1
9626
9627         * src/ds390/peeph.def:
9628         added a few more peephole optimzations
9629
9630         * src/ds390/main.c:
9631         1) added __builtin_inp & __builtin_outp used to read in data of given length
9632            from a memory mapped port
9633         2) added __builtin_memcmp
9634         3) added __builtin_swapw swap bytes of a short
9635
9636         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9637         1) handle multiple send & receives from register bank1
9638         2) ralloc can now allocate DPTR1 to some liveRanges
9639
9640         * src/SDCCsymt.c, src/SDCCsymt.h:
9641         changes to handle multiple sends & receives
9642
9643         * src/SDCCptropt.h:
9644         added some pointer arithmetic optimization
9645
9646         * src/SDCCptropt.c:
9647         added some pointer arithmetic optimizations but not stable yet so not
9648         called from anywhere (will get this working shortly)
9649
9650         * src/SDCCopt.c: fixed for multiple sends & receives
9651
9652         * src/SDCCmain.c:
9653         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9654         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9655            set preprocessor defines (depending on options)
9656
9657         * src/SDCCicode.c, src/SDCCicode.h:
9658         changes made to handle multiple sends & receives
9659
9660         * src/SDCCglobl.h:
9661         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9662
9663         * src/SDCCcse.c, src/SDCCcse.h:
9664         added function findbackward def (to be used in upcoming optimization)
9665
9666         * src/SDCCcflow.c, src/SDCCcflow.h:
9667         added function returnAtEnd - to determine if a basic block terminates with
9668         a RETURN iCode
9669
9670         * src/SDCCast.c, src/SDCCast.h:
9671         added option parms-in-bank1
9672
9673         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9674         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9675         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9676         adjusted for --parms-in-bank1 option
9677
9678         * device/include/string.h:
9679         donot redefine "reentrant" keyword
9680
9681         * device/include/ds80c390.h: Added some more SFRs
9682
9683 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9684
9685         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9686
9687 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9688
9689         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9690
9691 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9692
9693         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9694
9695 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9696
9697         * Added --xram-movc option
9698
9699 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9700
9701         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9702
9703 2002-01-11  Johan Knol
9704
9705         * Added math lib of Jesus Calvino-Fraga
9706
9707 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9708
9709         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9710         * support/regression/Makefile: new target test-mcs51-stack-auto
9711         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9712
9713 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9714
9715         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9716
9717 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9718
9719         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9720
9721 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9722
9723         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9724
9725         * src/SDCCglue.h: add definition for printIvalChar()
9726
9727 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9728
9729         * src/SDCCast.c: fix #498138 by Johan
9730
9731         * src/SDCCglue.c: fix #498138 by Johan
9732
9733 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9734
9735         * support/regression/Makefile: fix clean
9736
9737         * support/regression/ports/ds390/support.c: fix transmission of last character
9738
9739 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9740
9741         * /sdcc/src/ds390/gen.c:
9742         a) improved computing address of stack variable
9743         b) took out some #if 0 code
9744         c) improved parmBytes adjustment
9745         d) improved genPlusIncr & genMinusIncr
9746         e) genCmp could generate bad code (when left assigned to DPTR)
9747         f) Fixed bug in hasInc
9748
9749         * /sdcc/src/ds390/ralloc.c:
9750         a) packRegsForSupport could mess up live information (Fixed)
9751         b) packRegsDPTRuse could be incorrect for left & right shift
9752
9753         * /sdcc/src/mcs51/ralloc.c:
9754         packRegsForSupport could mess up the live information (Fixed)
9755
9756         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9757
9758         * /sdcc/src/SDCCast.c:
9759         can reverse a loop even if function call is present as long
9760         as the loop control variable is local & is not passed as parameter
9761
9762 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9763
9764         * /sdcc/ChangeLog: *** empty log message ***
9765
9766         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9767         More builtin function additions for TININative
9768
9769         * /sdcc/src/ds390/ralloc.c:
9770         Had broken the regression testsuite
9771
9772         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9773
9774         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9775         Added funcattr hasStackParms will be set for reentrant functions when there
9776         are paramteres on the stack, this helps in minimizing frame pointer generation
9777         typeFromStr can handle function pointers now
9778
9779         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9780         *** empty log message ***
9781
9782 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9783
9784         * /src/ds390/gen.c, /src/ds390/main.c:
9785         More builtin function additions for TININative
9786
9787         * /src/ds390/ralloc.c:
9788         Had broken the regression testsuite
9789
9790         * /src/SDCCast.c: Fixed a bug in dumptree
9791
9792         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9793         Added funcattr hasStackParms will be set for reentrant functions when there
9794         are paramteres on the stack, this helps in minimizing frame pointer generation
9795         typeFromStr can handle function pointers now
9796
9797         * /doc/builtins.txt, /doc/TININative.txt:
9798         *** empty log message ***
9799
9800
9801 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9802
9803         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9804         ALPHA version for -mTININative
9805
9806         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9807         updated to reflect changes in the port structure
9808
9809         * /src/port.h:
9810         added function do_assemble (similar to do_link) if non-null this function
9811         will be called to do assembly (-mTININative) requires a multi command
9812         assembly
9813         added function genAssemblerEnd will be called to generate assembler Epilogue
9814
9815         * /src/SDCCsymt.c:
9816         added _JavaNative to debug info printing
9817
9818         * /src/SDCCmain.c: added option --tini-libid
9819         added port->do_assemble function (-mTININative) has a multi command assemble
9820
9821         * /src/SDCCglue.c: Disabled "constExpr" check
9822         added port->genAssemblerEnd function
9823
9824         * /src/SDCCglobl.h: Added option --tini-libid value
9825
9826         * /src/SDCCast.h:
9827         tookout optimizeCompare from the header (has no external references)
9828
9829         * /src/SDCCast.c: made one more function "static"
9830
9831 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9832
9833         * src/z80/mappings.i: Added z80asm support.
9834
9835         * src/z80/main.c: Added z80asm support on --asm=z80asm
9836
9837         * src/z80/gen.c: Fixed asm portability issues.
9838
9839         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9840
9841         * src/SDCCglue.c (printExterns): Added global/extern split.
9842
9843 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9844
9845         * support/regression/Makefile: added test for mcs51 model large
9846
9847         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9848
9849         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9850
9851 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9852
9853         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9854
9855 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9856
9857         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9858
9859         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9860
9861 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9862
9863         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9864
9865         * support/regression/tests/simplefloat.c: Port to mcs51.
9866
9867 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9868         * support/regression/tests/bug-485362.c: Added.
9869
9870         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9871
9872         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9873
9874         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9875
9876         * src/z80/gen.c (aopDump): Added a dump function.
9877
9878 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9879         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9880
9881         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9882
9883         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9884
9885         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9886
9887         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9888
9889         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9890
9891         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9892
9893         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9894
9895         * support/regression/ports/ds390/support.c: Use tinibios.
9896
9897         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9898
9899 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9900
9901         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9902         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9903
9904         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9905
9906         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9907
9908 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9909
9910         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9911
9912         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9913         (packRegsForIYUse): Created and optimised.
9914
9915 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9916
9917         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9918 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9919
9920         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9921
9922         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9923
9924         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9925
9926 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9927
9928         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9929
9930         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9931
9932 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9933
9934         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9935
9936         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9937
9938         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9939
9940 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9941
9942         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9943         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9944         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9945
9946         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9947
9948         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9949         (genNotFloat): Added.
9950         (genUminusFloat): Added.
9951
9952         * device/lib/z80/Makefile: Added floating pt stubs.
9953
9954         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9955
9956         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9957
9958         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9959
9960 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9961
9962         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9963
9964         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9965
9966         * sdcc/support/regression/Makefile: Add port ds390.
9967
9968         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9969
9970         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9971
9972         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9973
9974         * sdcc/support/regression/ports/ds390/support.c: Added.
9975
9976         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9977
9978         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9979
9980         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9981
9982 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9983
9984         * device/include/malloc.h: Added z80 and gbz80 support.
9985
9986         * device/lib/gbz80/heap.s: Added.
9987
9988         * device/lib/z80/heap.s: Added.
9989
9990         * device/lib/malloc.c: Added z80 and gbz80 support.
9991
9992         * support/regression/tests/malloc.c (testMalloc): Added.
9993
9994         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9995
9996         * support/regression/tests/bug-478094.c: Added.
9997
9998         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9999
10000 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10001
10002         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10003
10004         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10005
10006         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10007
10008         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10009
10010         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10011
10012 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10013
10014         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10015
10016 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10017
10018         * support/regression/tests/bug-477927.c: Added.
10019
10020         * src/z80/peeph.def: Added minor rules.
10021
10022         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10023
10024         * src/z80/peeph.def: Added jump optimisation modification.
10025
10026 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10027
10028         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10029
10030 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10031
10032         * support/regression/tests/funptrs.c: Added.
10033
10034 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10035
10036         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10037
10038 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10039
10040         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10041
10042         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10043
10044         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10045         (movLeft2ResultLong): Created.
10046
10047         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10048         (joinPushes): Added.  Joins two char pushes into a word push.
10049
10050 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10051
10052         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10053
10054         * support/makebin/Makefile (install): Added creation of dest dir.
10055
10056 2001-10-24 Karl Bongers <karl AT turbobit.com>
10057
10058         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10059
10060 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10061
10062         * src/z80/ralloc.c: Turned off faulty pack for one use.
10063
10064         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10065
10066         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10067
10068 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10069
10070         * support/regression/Makefile: Improved clean
10071
10072         * support/regression/ports/gbz80/spec.mk: Added clean
10073
10074         * support/regression/ports/host/spec.mk: Added clean
10075
10076         * support/regression/ports/z80/spec.mk: Added clean
10077
10078         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10079
10080         * support/regression/ports/mcs51/timeout.c: little improvements
10081
10082 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10083
10084         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10085
10086         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10087
10088         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10089
10090 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10091
10092         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10093
10094         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10095
10096 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10097         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10098
10099         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10100
10101         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10102
10103         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10104
10105         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10106
10107         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10108
10109         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10110
10111         * support/regression/tests/longor.c: Added.
10112
10113 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10114
10115         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10116
10117         * as/mcs51/aslink.h: define PATH_MAX
10118
10119         * as/mcs51/asm.h: define PATH_MAX
10120
10121         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10122
10123         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10124
10125         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10126
10127         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10128
10129         * src/SDCCglobl.h: define PATH_MAX
10130
10131         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10132
10133         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10134
10135 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10136
10137         * src/z80/gen.c (gencjneshort): Fixed
10138
10139         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10140
10141 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10142
10143         * support/regression/tests/bug-469671.c: Added.
10144
10145         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10146
10147 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10148
10149         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10150
10151         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10152
10153 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10154
10155         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10156
10157         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10158
10159         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10160
10161         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10162
10163         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10164
10165         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10166
10167         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10168
10169 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10170
10171         * 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.
10172
10173         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10174
10175         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10176
10177 2001-10-07    <johan AT FRIJA>
10178
10179         * device/lib/gets.c (gets): fixed the return value.
10180
10181 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10182         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10183
10184         * 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.
10185
10186         * 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.
10187
10188         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10189
10190         * src/pic/gen.c: Removed Safe_strdup.
10191
10192         * configure.in: Added option to enable libgc support.
10193
10194         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10195         (bitVectUnion): Optimised.
10196         (bitVectIntersect): Optimised.
10197         (bitVectBitsInCommon): Optimised.
10198         (bitVectCplAnd): Optimised.
10199
10200         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10201
10202 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10203
10204         * src/SDCCmain.c: distinguish between assembler debug and plain options
10205
10206         * src/avr/main.c:   remove standard assembler options
10207
10208         * src/ds390/main.c: remove standard assembler options
10209
10210         * src/mcs51/main.c: remove standard assembler options
10211
10212         * src/port.h: removed "PENDING" comment
10213
10214 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10215
10216         * src/device/lib/_mulint.c  : new, with assember functions
10217
10218         * src/device/lib/_mullong.c : new, with assember functions
10219
10220         * src/device/lib/_divuint.c : with assember functions
10221
10222         * src/device/lib/_divsint.c : with assember functions
10223
10224         * src/device/lib/_divulong.c: with assember functions
10225
10226         * src/device/lib/_divslong.c: with assember functions
10227
10228         * src/device/lib/_moduint.c : with assember functions
10229
10230         * src/device/lib/_modsint.c : with assember functions
10231
10232         * src/device/lib/_modulong.c: with assember functions
10233
10234         * src/device/lib/_modslong.c: with assember functions
10235
10236         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10237
10238         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10239
10240         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10241                                       replaced _mululong.c and _mulslong.c by _mullong.c
10242
10243 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10244
10245         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10246
10247 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10248
10249         * src/SDCCglue.c: test, if win32api is available for MINGW
10250
10251 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10252
10253         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10254         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10255         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10256         * support/regression/ports/host/spec.mk: removed GENERIC
10257         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10258         * support/regression/ports/z80/spec.mk: removed GENERIC
10259
10260 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10261
10262         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10263
10264         * support/regression/tests/bug-467035.c: Created.
10265
10266 2001-10-01    <johan AT FRIJA>
10267
10268         * src/SDCC.y: fixed bug #466586 part 1
10269
10270 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10271
10272         * SDCCicode.c: z80 has no generic pointers
10273         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10274
10275 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10276
10277         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10278
10279 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10280
10281         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10282
10283         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10284
10285 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10286
10287         * configure.in: Fixed up so that ucsim is only configured once.
10288
10289         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10290
10291         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10292         (getPathDifference): As above.
10293
10294         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10295
10296         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10297
10298 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10299         * .version: Updated to 2.3.1
10300
10301         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10302         Added copyright header.
10303
10304         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10305         (assemble): Added support for macro based assembler commands.
10306         (linkEdit): Added support for macro based linker commands.
10307         (preProcess): Changed the pre-processor to use macros.
10308         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10309         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10310
10311         * device/lib/z80/crt0.s: Added module name for debugging.
10312
10313 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10314
10315         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10316
10317         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10318
10319         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10320
10321         * src/Makefile.in: Added SDCCmacro and SDCCutil
10322
10323 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10324
10325         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10326
10327 2001-09-16    <johan AT FRIJA>
10328
10329         * 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.
10330
10331 2001-09-15    <johan AT FRIJA>
10332
10333         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10334         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10335
10336 2001-09-11    <johan AT FRIJA>
10337
10338         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10339
10340 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10341
10342         * support/regression/tests/bug-460444.c: Added test case.
10343
10344         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10345         (genCast): Added justification for all of the asserts.
10346
10347 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10348
10349         * support/regression/support.c: _xdata replaced by xdata
10350
10351         * support/regression/spec.mk: removed _generic
10352
10353 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10354
10355         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10356
10357         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10358         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10359
10360         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10361
10362         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10363
10364         * support/regression/tests/bug-460010.c: Added test case.
10365
10366         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10367
10368 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10369
10370         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10371
10372         * support/regression/testfwk.c: removed workaround for bug #436344
10373
10374         * support/regression/tests/bp.c: use less memory with mcs51
10375
10376         * support/regression/tests/bug-441448.c: use less memory
10377
10378         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10379
10380         * support/regression/collate-results.py: typo
10381
10382 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10383
10384         * support/regression/tests/fetchoverlap.c: Added new test case.
10385
10386         * support/regression/tests/bp.c: Added new test case.
10387
10388         * support/regression/tests/bug-448984.c: Added new test case.
10389
10390         * support/regression/tests/pow2shifts.c: Added new test case.
10391
10392         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10393         (genlshTwo): Fixed right shift for count > 8.
10394
10395         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10396
10397 2001-09-08    <johan AT FRIJA>
10398
10399         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10400
10401 2001-09-07    <johan AT FRIJA>
10402
10403         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10404
10405         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10406
10407 2001-09-06    <johan AT FRIJA>
10408
10409         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10410         * bernhard noted me at this: "() equals to (void)" (1.38)
10411
10412 2001-09-05    <johan AT FRIJA>
10413
10414         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10415
10416 2001-09-04    <johan AT FRIJA>
10417
10418         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10419
10420
10421 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10422
10423         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10424
10425 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10426
10427         * link/z80/aslink.h: Fixed path for PATH_MAX
10428
10429 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10430
10431         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10432
10433         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10434
10435         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10436
10437         * 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.
10438
10439 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10440
10441         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10442         (genCmp): Fixed up genCmp for the GB with longs.
10443
10444         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10445
10446         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10447
10448         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10449
10450         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10451
10452 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10453
10454         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10455
10456 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10457
10458         * 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.
10459
10460         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10461
10462 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10463
10464         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10465
10466         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10467
10468 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10469
10470   * sim/ucsim/configure:    little improvement of Cygwin-detection
10471   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10472   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10473   * support/regression/tests/bug-221100.c: small changes for mcs51
10474   * support/regression/tests/bug-221168.c: small changes for mcs51
10475   * support/regression/tests/bug-227710.c: small changes for mcs51
10476   * support/regression/tests/staticinit.c: small changes for mcs51
10477   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10478   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10479   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10480
10481 $Revision$