* src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
[fw/sdcc] / ChangeLog
1 2006-03-01 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
4           genConstPointerGet): use safe way of generating MOVFF to cover
5             literals as well as registers, fixes bug #1440527
6         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
7             dereference
8           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
9             more correctly, fixes bug #1232186
10           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
11         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
12             gplink guess the correct processor in more cases, applied patch
13             from Till Riedel attached to and fixing bug #1436552
14
15 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
16
17         * support/regression/tests/array.c: added, contains check for #1434401
18         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
19
20 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
21
22         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
23         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
24         * device/include/mcs51/c8051f326.h,
25         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
26         * device/include/mcs51/c8051f000.h,
27         * device/include/mcs51/c8051f018.h,
28         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
29           PCON_IDLE,PCON_STOP and added sfr16 definitions
30
31 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
32
33         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
34           genGetWord): fixed bug 1409955
35
36 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
37
38         * device/include/hc08/mc68hc908gp32.h,
39         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
40
41 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
42
43         * src/SDCCast.c (constExprValue): return NULL if not a value
44         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
45         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
46         * support/regression/tests/bitfields.c: enabled signed bitfield for all
47
48 2006-02-13 Borut Razem <borut.razem AT siol.net>
49
50         * src/regression/ptrarg.c: added, fails due to bug #1430967
51         * src/regression/Makefile: ptrarg.c added, ...
52
53 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
56         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
57
58 2006-02-11 Borut Razem <borut.razem AT siol.net>
59
60         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
61           print "Processor: xxx" message to stdout only if --verbose
62
63 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
64
65         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
66         * support/regression/tests/bug1426356.c: added
67         * support/regression/tests/bitfields.c: removed 2 tests
68
69 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
70
71         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
72         * device/include/mcs51/c8051f330.h,
73         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
74           PCON_IDLE,PCON_STOP and added sfr16 definitions
75         * device/lib/_divsint.c,
76         * device/lib/_divuint.c,
77         * device/lib/_divulong.c,
78         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
79           register bank bug for small stackauto
80
81 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
82
83         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
84
85 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
86
87         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
88         * all.dsp: corrected several bin paths
89         * device/include/mcs51/c8051f120.h,
90         * device/include/mcs51/c8051f300.h,
91         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
92           to PCON_IDLE,PCON_STOP
93         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
94         * device/lib/printf_large.c (output_float): fixed bug 1388703
95         * support/regression/tests/bug1057979.c: added test for bug 1388703
96
97 2006-02-08 Raphael Neider <rneider AT web.de>
98
99         * src/pic/pcode.c (pciTRIS): fixed typo,
100           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
101           (LinkFlow): fixed handling of flows that end in a call,
102           (ReuseReg): perform safety check earlier
103         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
104             to work with flows at the beginning of a pBlock,
105             fixes #1426557 (Symbol not previously defined),
106           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
107             usage information
108           (RemoveUnusedRegisters): update register usage info
109         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
110             created, reuse existing ones instead
111         * src/pic/gen.c (genPcall): fixed #1424719
112
113 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
114
115         * link/z80/lkmain.c,
116         * link/z80/lklex.c,
117         * link/z80/lkdata.c,
118         * link/z80/aslink.h: fixed build on current cygwin:
119         replaced getline() by lk_getline()
120
121 2006-02-01 Borut Razem <borut.razem AT siol.net>
122
123         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
124           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
125           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
126           src/regression/bool1.c, src/regression/bool2.c,
127           src/regression/bool3.c, src/regression/call1.c,
128           src/regression/compare.c, src/regression/compare10.c,
129           src/regression/compare2.c, src/regression/compare3.c,
130           src/regression/compare4.c, src/regression/compare5.c,
131           src/regression/compare6.c, src/regression/compare7.c,
132           src/regression/compare8.c, src/regression/compare9.c,
133           src/regression/configword.c, src/regression/for.c,
134           src/regression/inline.c, src/regression/mult1.c,
135           src/regression/nestfor.c, src/regression/or1.c,
136           src/regression/pointer1.c, src/regression/ptrfunc.c,
137           src/regression/rotate1.c, src/regression/rotate2.c,
138           src/regression/rotate3.c, src/regression/rotate4.c,
139           src/regression/rotate5.c, src/regression/rotate6.c,
140           src/regression/rotate7.c, src/regression/string1.c,
141           src/regression/struct1.c, src/regression/sub.c,
142           src/regression/sub2.c, src/regression/switch1.c,
143           src/regression/while.c, src/regression/xor.c,
144           src/regression/create_stc, src/regression/simulate,
145           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
146           regression tests
147         * src/regression/gpsim_assert.h: added
148
149 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
150
151         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
152         ((void (code *) (void)) 0) ();
153         * as/hc08/aslex.c,
154         * as/hc08/aslink.h,
155         * as/hc08/asm.h,
156         * as/hc08/asmain.c,
157         * as/hc08/lkdata.c,
158         * as/hc08/lklex.c,
159         * as/hc08/lkmain.c,
160         * as/mcs51/aslex.c,
161         * as/mcs51/aslink.h,
162         * as/mcs51/asm.h,
163         * as/mcs51/asmain.c,
164         * as/mcs51/lkdata.c,
165         * as/mcs51/lklex.c,
166         * as/mcs51/lkmain.c,
167         * as/z80/aslex.c,
168         * as/z80/asm.h,
169         * as/z80/asmain.c: fixed build on current cygwin:
170         replaced getline() by as_getline()
171
172 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
173
174         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
175         declarator in the symbol chain
176         * src/SDCCsymt.h,
177         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
178         parameter list for function pointers
179         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
180         * support/regression/tests/bug-716242.c: added
181
182 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
183
184         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
185         offset if possible
186         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
187
188 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
189
190         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
191         inifinitely recurseable, added static
192         * support/regression/tests/bug-1408066.c: added
193
194 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
195
196         * src/SDCCicode.h,
197         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
198         renamed, added possibility to create "postLoopLbl"-labels
199         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
200         newiTempLoopHeaderLabel
201         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
202         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
203         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
204         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
205         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
206         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
207         (basicInduction): fixed bug #136564, made static,
208         (loopInduction): changed parameter of basicInduction, made static,
209         (addPostLoopBlock): added
210         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
211         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
212         findLoopEndSeq
213         * support/regression/tests/bug-136564.c: added
214         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
215         --std-sdcc99 to LIBSDCCFLAGS
216
217 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
218
219         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
220         while loop
221         * support/regression/tests/bug-1406131.c: added
222
223 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
224
225         * src/SDCCast.c (decorateType): fix promotion of unary minus
226         * src/SDCCsymt.c (computeType): beautified
227         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
228         (valUnaryPM, valComplement): fix sign and promotion,
229         (valNot): ANSI: result type is int (SDCC: unsigned char)
230         * support/regression/tests/uminus.c: speedup by removing superflous
231         test case 'int'
232         * support/regression/tests/onebyte.c: added promotion and signedness
233         tests for unary minus
234         * support/regressions/tests/bug-477927.c: disable warning about
235         uninitialized variables
236         * support/regression/tests/not.c: added
237
238 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
239
240         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
241         * src/mcs51/gen.c (gen51Code): show final register usage after
242         fillGaps in asm with --i-code-in-asm
243         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
244         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
245         incUsed, rliveClear, adjustIChain): made static,
246         (setFromRange): excluded because it's unused,
247         (findPrevUseSym, markWholeLoop): added,
248         (findPrevUse): rewritten; fixes bug 895992; now a complete search
249         through all branches of predecessors enables sdcc to emit the warning
250         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
251         (rlivePoint): made static, added parameter emitWarnings which is only
252         true during the first run out of two,
253         (findRecursiveSucc, findRecursivePred): removed,
254         (computeLiveRanges): made static, added parameter emitWarnings,
255         (dumpIcRlive): added for debugging only
256         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
257         removed prototype of setFromRange()
258         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
259         in call of computeLiveRanges()
260         * support/regression/tests/bug-895992.c: added
261         * support/regression/tests/bug-971834.c: added
262         * support/valdiag/tests/bug-895992.c: added
263         * support/valdiag/tests/bug-971834.c: added
264
265 2005-12-18 Raphael Neider <rneider AT web.de>
266
267         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
268           (genUnpackBits): improved code for direct operands,
269           (genPackBits): improved code for literal assignment to bitfields
270             and for direct destination operands (no FSR indirection),
271             prevented redundant AND, fixes #1362800,
272           (AccLsh): added parameter to disable masking of the result
273         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
274           skip instructions with side-effects (like incfsz),
275           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
276         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
277         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
278           fixes #1375263
279
280 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
281
282         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
283         volatile variables as spill location
284
285 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
286
287         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
288         replacing literals
289         * support/regression/tests/bug-1376320.c: added
290
291 2005-12-08 Raphael Neider <rneider AT web.de>
292
293         * src/pic/device.c: renamed is_shared to pic14_is_shared
294         * src/pic/gen.c (genIfx): re-enabled handling of sbits
295         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
296           (is_valid_identifier): added for above workaround
297
298 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
299
300         * device/lib/Makefile.in: fixed to enable port-specific-objects
301         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
302           char, thanks Hubert Sack
303         * doc/sdccman.lyx: documented --xstack-loc,
304           elaborated a bit more on interrupts and pitfalls,
305           removed "setjmp/longjmp unsupported",
306           documented some unsupported C99 features
307         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
308         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
309           if, thanks Hubert Sack
310         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
311         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
312           make make_library
313         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
314           regression tests can report resource usage (rfe 700441)
315         * support/regression/collate-results.py: report resource usage
316         * support/regression/ports/ds390/spec.mk,
317         * support/regression/ports/hc08/spec.mk,
318         * support/regression/ports/mcs51/spec.mk,
319         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
320         * support/regression/ports/ds390/uCsim.cmd,
321         * support/regression/ports/hc08/uCsim.cmd,
322         * support/regression/ports/mcs51/uCsim.cmd,
323         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
324         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
325           library, use the default one
326         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
327           building the library
328
329 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * config.dsp: added dependency on .version and configure_vc.awk
332         * device/include/setjmp.h: updated for --stack-auto and --xstack
333         * device/include/mcs51/at89c51snd1c.h: corrected line endings
334         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
335         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
336         * device/lib/libsdcc.lib: added _setjmp
337         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
338           (decorateType): fixed bug 1372851,
339           (optimizeGetHbit): fixed warning
340         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
341           array initialisation
342         * support/regression/tests/bug1057979.c: added test for bug 1358192
343         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
344
345 2005-12-03 Borut Razem <borut.razem AT siol.net>
346
347         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
348           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
349
350 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
351
352         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
353         createIval): implement symbol independant "flexible array member",
354         (createIvalCharPtr): implemented flexible array initialisation with a
355         string
356         * src/SDCCsymt.c (copyStruct): removed,
357         (getSize): fixed misleading comment,
358         (getAllocSize): removed, the additional allocation size is now in
359         sym->flexArrayLength,
360         (checkStructFlexArray): new, syntax checks for flexible array members,
361         (compStructSize): added syntax checks for "flexible array members"
362         (copyStruct): removed,
363         (copyLinkChain): removed inefficient fix for bug 770487
364         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
365         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
366         symbol->flexArrayLength
367         * src/SDCCerr.c,
368         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
369         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
370         * support/regression/tests/structflexarray.c: added
371         * support/valdiag/tests/structflexiblearray.c: added
372
373 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
374
375         * src/SDCCast.c (decorateType): fixed bug 1368489
376         * support/Util/SDCCerr.c,
377         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
378
379 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
380
381         * device/include/mcs51/at89c51snd1c.h: added file submitted by
382           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
383
384 2005-11-27 Borut Razem <borut.razem AT siol.net>
385
386         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
387           support/cpp2/mkdeps.h: added command line option
388           -obj-ext=<extension> to SDCPP to define object file externion, used
389           for generation of make dependencies (-M)
390         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
391
392 2005-11-26 Borut Razem <borut.razem AT siol.net>
393
394         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
395           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
396           added pic and pic16 libraries
397
398 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
399
400         * device/include/float.h: Corrected typo in prototype of __fsgt
401
402 2005-11-25 Borut Razem <borut.razem AT siol.net>
403
404         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
405           added creation of model-mcs51-stack-auto libraries
406
407 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
408
409         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
410         and fields-list too
411         * src/SDCCast.c (createIvalArray): removed obsolete comment
412
413 2005-11-24 Borut Razem <borut.razem AT siol.net>
414
415         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
416           added missing device/lib/mcs51/crt*.asm sources
417
418 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
419
420         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
421
422 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
423
424         * device/lib/_fs2schar.c,
425         * device/lib/_fs2sint.c,
426         * device/lib/_fs2slong.c: optimized inline asm
427
428 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
429
430         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
431           Better handling of floats between -1.0 and 0.0.
432
433 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
434
435         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
436           (the missing "if"s prohibited removal of redundant labels)
437
438 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
439
440         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
441           Properly convert floats between -1.0 and 0.0 to long, int, and char
442           types (max integer value of negative floats tends to zero).
443         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
444           Removed changes made so to work properly with floats between
445           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
446           and _fs2char.c
447
448 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
449
450         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
451         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
452         (genCast) cosmetic change
453         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
454         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
455         from mcs51
456         * support/regression/tests/bitfields (testSignedBitfields): added
457
458 2005-11-18 Borut Razem <borut.razem AT siol.net>
459
460         * sdcc/device/lib/Makefile.in: remove all unnecessary files
461         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
462           introduced SILENT option to make building of pic16 libraries less
463
464 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
465
466         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
467           Now they work properly with floats between -1.0 and 0.0
468         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
469
470 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
471
472         * src/SDCCicode.c (printOperand): added missing else
473
474 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
475
476         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
477         reformatted for better readability
478         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
479         signed bitfields
480
481 2005-11-17 Borut Razem <borut.razem AT siol.net>
482
483         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
484           introduced SILENT option to make building of pic16 libraries less
485           verbose - used for nightly snapshot build
486         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
487           available on Win32 platforms.
488         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
489           medium, large, pic and pic16
490
491 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
492
493         * device/lib/printf_large.c: Temporary patch for bug 1358192:
494           printf("%f"...) sets fraction to zero.
495
496 2005-11-16 Raphael Neider <rneider AT web.de>
497
498         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
499           fixes #1357221
500         * src/pic/gen.c (genIfx): implemented for CARRY bit
501         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
502           to generic pointers, fixes #1357332,
503           (pic16_movLit2f): NEW,
504           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
505
506 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
507
508         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
509
510 2005-11-11 Raphael Neider <rneider AT web.de>
511
512         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
513         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
514           compute pointer's type from operand,
515           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
516           improved single bit reads, fixes bug #1353379
517
518 2005-11-09 Borut Razem <borut.razem AT siol.net>
519
520         * support/scripts/sdcc.nsi: added lib/pic to the package
521
522 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
523
524         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
525
526 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
527
528         * support/regression/tests/bug1348008.c: added
529         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
530         * support/regression/tests/bug1337835.c: updated comment
531
532 2005-11-06 Borut Razem <borut.razem AT siol.net>
533
534         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
535           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
536           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
537           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
538           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
539           dynamic construction of cl_error_class and derivates - 2.nd try
540
541 2005-11-05 Borut Razem <borut.razem AT siol.net>
542
543         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
544           bug, which caused Bus Errors on sparc solaris
545
546 2005-11-04 Borut Razem <borut.razem AT siol.net>
547
548         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
549           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
550           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
551           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
552           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
553           and derivates to resolve the initialization problem on OSX
554
555 2005-11-02 Borut Razem <borut.razem AT siol.net>
556
557         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
558           corrected typo - #include <winsock2.h>
559
560 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
561
562         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
563           (_asxxxx_mapping): added org directive for future enhancements
564
565 2005-11-01 Borut Razem <borut.razem AT siol.net>
566
567         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
568           enabled sockets on WIN32
569         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
570
571 2005-10-31 Borut Razem <borut.razem AT siol.net>
572
573         * support/regression/generate-cases.py: escape backslashes in {testcase}:
574           WIN32 backslash path delimiters should be escaped when used in C strings
575         * support/regression/tests/bitfields.c: exclude failing assertions for
576           __CYGWIN32__ and __MINGW32__ hosts
577
578 2005-10-30 Borut Razem <borut.razem AT siol.net>
579
580         * src/SDCCutil.c: corrected double comparison typo
581
582 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
583
584         * device/lib/medium/Makefile: added for new memory model medium
585         * device/include/asm/mcs51/features.h: updated for medium/pdata
586         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
587           added Multiply & Accumulate sbit's and MAC0_PAGE define
588         * device/include/mcs51/c8051f300.h: added sfr16 definitions
589         * device/include/mcs51/c8051f310.h: added sfr16 definitions
590         * device/lib/_mullong.c: update for medium model
591         * device/lib/incl.mk: added medium model
592         * doc/sdccman.lyx: documented medium model
593         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
594         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
595         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
596         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
597           (allocParms): set SCLS and OCLS to pdata for medium model
598         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
599           for pdata,
600           (powof2): return <0 if not power of 2
601         * src/avr/gen.c (genBitWise): use updated powof2
602         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
603           (shiftR2Left2Result): small optimization in setup, save acc when storing,
604           (shiftLLeftOrResult): use B if necessary
605         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
606         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
607         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
608         * support/regression/Makefile.in: added test-mcs51-medium
609         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
610
611 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
612
613         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
614         specifier unsigned
615         * device/lib/time.c (mktime): fixed bug 1334315
616
617 2005-10-28 Raphael Neider <rneider AT web.de>
618
619         * device/include/pic/p16f_common.inc: added common declarations
620         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
621
622 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
623
624         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
625           (aopPutUsesAcc): added to predict accumulator use,
626           (assignResultValue): save acc if necessary,
627           (genMinusDec): store result if indirectly addressed,
628           (genDivOneByte):  save acc if necessary,
629           (movLeft2Result): bugfix if left already in acc,
630           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
631             attention to accumulator use (esp. pdata),
632           (genReceive): receive pdata correctly
633         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
634         * src/SDCCicode.h: added isOperandInPagedSpace prototype
635
636 2005-10-27 Raphael Neider <rneider AT web.de>
637
638         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
639
640 2005-10-27 Raphael Neider <rneider AT web.de>
641
642         * .version: changed version to 2.5.4
643         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
644         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
645           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
646             arithmetics support routines
647         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
648         * device/lib/Makefile.in: also create installdir for pic
649
650         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
651           pic14 port as well
652         * src/pic/device.c (dump_sfr): rewritten to delegate register
653           placement to the linker (use `extern sym' rather than sym EQU addr),
654           (validAddress): fixed to check last specified address
655         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
656           (popGetLit): truncate literal value to 8 bit,
657           (popGet): moved assert to more appropriate place
658           (popGetExternal): create pCode operand from and mark the according
659             symbol as being `extern'
660           (popGetAddr): added sanity check on immediate's offset, provide
661             GPOINTER tag on demand
662           (aopPut): fixed for immediates,
663           (mov2w_op): move operand's address or contents to WREG (depending on
664             operand type), safer variant of mov2w,
665           (movwf,call_libraryfunc): NEW, handy abbreviations,
666           (get_argument_pcop,get_return_val_pcop,pass_argument,
667           get_returnvalue): interface for accessing function parameters and
668             return values,
669           (assignResultValuei,genRet): use new parameter/return value interface
670           (pic14_getDataSize): back to old version handling generic pointers,
671           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
672             provided implementation and/or fixed old one,
673           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
674             calls, removed legacy 8051 reference code
675           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
676           (loadSignToC): NEW, move the operands sign bit to CARRY,
677           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
678             genRightShiftSigned, accepts negative shift counts,
679           (setup_fsr): load FSR and adjust IRP (indirect memory access),
680           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
681             generic pointers, __data pointers and __code pointers,
682           (genUnpackBits,genPackBits): rewritten to work with generic pointers
683             and signed bitfields, limit bitfields to 8 bit,
684           (genDataPointerGet): fixed number of bytes read,
685           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
686           (genPointerGet,genPointerSet): fixed handling of __code pointers,
687             pointers to constant data are no longer assumed to point to __code
688             space, removed invalid pointer types,
689           (bitpatternFromVal): retrieve the PICs representation of an integer
690             or float literal,
691           (genDataPointerSet): fixed assigning to po_immediate operands,
692           (genGenPointerSet): implemented as library call,
693           (genIfx): fixed incorrect condition,
694           (genAddrOf): limit generic pointers' addresses to 2 bytes,
695             provide GPOINTER tag according to destination's storage class,
696           (genCast): added code to handle casting to generic pointers, added
697             sign-/zero extension of the result
698           (aop_isLitLike,op_isLitLike): fixed handling of immediates
699         * src/pic/gen.h: added macros to access IRP bit in STATUS register
700         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
701           extend the result
702         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
703           address/register resides in the shared banks
704           (emitSymbolToFile): improved to handle global and `pinned' symbols,
705             put all variables into separate sections (have the linker arrange
706             them)
707           (picglue): put init code and interrupt handlers in separate sections
708         * src/pic/main.c: added port specific options table, modified to PORT
709           structure to make GPOINTERs 3 byte, added pic14_options
710           (_pic14_do_link): private linking routine (update paths to libraries,
711             add libsdcc.lib by default)
712         * src/pic/main.h: declare pic14_options
713         * src/pic/pcode.c: fixed instructions i/o relations,
714           (RegCond): reverted to correct version,
715           (newpCodeOpLit): truncate literals to 8 bit,
716           (genericPrint): added debug output,
717           (getRegFromInstruction): fixed for various operand types, simplified
718           (BuildFlow): fixed broken handling of isntructions with labels
719           (LinkFlow): start at last instruction in flow (skip trailing comments),
720             pass the flow on to the next instruction after CALL
721           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
722           (insertPCodeInstruction): fixed inserting after a skip instruction,
723           (DoBankSelect): fixed for labeled instructions
724           (OptimizepBlock): honor --nopeep switch
725           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
726         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
727         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
728           (pCodeOptime2pCodes): allow disabling this optimization via
729             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
730             but is still buggy), started implementation of a dataflow based
731             pCode optimization (CSE + dead code elimination)
732           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
733         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
734           names are independant of the stack location and therefore portable across
735           devices
736
737 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
738
739         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
740           (selectSpil): fixed bug 1337835 by not spilling bit variables
741         * support/regression/tests/bug1337835.c: added test for this bug
742         * src/mcs51/peeph.def: restart after rule 3.c,
743           addded rules 263.x to optimize loading constants
744
745 2005-10-26 Raphael Neider <rneider AT web.de>
746
747         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
748         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
749           (genAssign): emit warning when casting literals to generic pointer
750             type, also applies when taking the address of a fixed variable,
751           (genCast): improved casting to generic pointers
752         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
753           extern variables, added verbose error message
754         * device/include/pic16/{string.h,errno.h}: added #pragma library c
755
756 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
757
758         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
759         carry must be complemented too
760         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
761         could be emitted by genMinus
762         * src/SDCCval.c (constVal): fixed bug 1305065
763
764 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
765
766         * src/SDCCast.c (addCast): added promotion for bit variables
767         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
768         promotion casts + optimisation
769         (optimizeGetWord): fix warning 'i' might be used uninitialized
770         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
771         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
772
773 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
774
775         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
776         all chars are promoted to int; promotion should be handled in SDCCast.c
777
778 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
779
780         * device/lib/_strcmp.c: Fixed bug 1326457
781
782 2005-10-11 Raphael Neider <rneider AT web.de>
783
784         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
785         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
786
787 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
788
789         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
790         * support/regression/tests/sfr16.c: added test for the sfr32 bug
791
792 2005-10-04 Raphael Neider <rneider AT web.de>
793
794         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
795           device/lib/pic16/pics.all: added pic18f1320
796         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
797
798 2005-09-30 Raphael Neider <rneider AT web.de>
799
800         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
801         * src/pic16/devices.inc: NEW, provides device descriptions
802         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
803
804 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
805
806         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
807           GETHBIT
808
809 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
810
811         * doc/sdccman.lyx: updated Highest Order Bit documentation,
812           documented Any Order Bit, Higher Order Byte and Higher Order Word
813         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
814         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
815           (optimizeGetAbit): new, to get any bit, not only the high bit,
816           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
817           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
818           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
819           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
820             RIGHT_OP: also try GETBYTE, GETWORD optimization,
821             GETABIT, GETBYTE, GETWORD: decorate them,
822           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
823           (ast_print): added GETABIT, GETBYTE, GETWORD
824         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
825         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
826           (geniCodeBinary): new generic binary icode,
827           (ast2iCode): added GETABIT, GETBYTE, GETWORD
828         * src/port.h: updated comment for PORT.hasExtBitOp
829         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
830           (genGetByte): new, to get a single byte,
831           (genGetWord): new, to get a word from a long,
832           (gen51Code): added GETABIT, GETBYTE, GETWORD
833         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
834
835 2005-09-23 Raphael Neider <rneider AT web.de>
836
837         * configure.in, configure: have device/lib/pic configured
838         * device/lib/Makefile.in: added model-pic14
839         * device/lib/clean.mk: added pic/ to clean rule
840         * device/lib/pic: added rudimentary pic14 library providing support
841           functions for multiplication/division/generic pointer access
842         * src/SDCCopt.c (convilong): mark support functions as extern
843           for pic14 port as well
844         * src/pic/gen.c (genMult): added assertions,
845           (genpic14Code): emit warning on unhandled iCodes
846         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
847         * src/pic/pcode.c (pCodeOpCopy),
848         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
849           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
850           SFR_REGISTER}), made safe for future extensions
851         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
852           instructions even if preceeded by SKIP instructions (also remove
853           them); removed unused code
854         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
855           prevents leaving parts of the structure uninitialized after copying
856
857 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
858
859         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
860           ago by me
861         * support/regression/tests/addsub.c: added test for the bug
862
863 2005-09-21 Raphael Neider <rneider AT web.de>
864
865         * device/include/pic16/pic18f1220.h,
866           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
867         * device/lib/pic16/Makefile.rules: added missing opening paren
868         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
869           are provided in genutils.c,
870           (genUminusFloat,genUminus,genCmpEq): added asserts on different
871           operand/result sizes,
872           (genCmp): assert on NULL pointers first, then check deref'ed values
873         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
874           result size
875
876 2005-09-18 Raphael Neider <rneider AT web.de>
877
878         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
879           as these are now unused,
880           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
881         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
882           local, avoids uninitialized pointer dereference on r->name
883         * src/pic16/ralloc.c (newReg): fixed indentation
884
885 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * src/SDCCval.c (constVal): fixed bug 730366
888         * support/Util/SDCCerr.c,
889         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
890
891 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
892
893         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
894
895 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
896
897         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
898
899 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
900
901         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
902           (hex2dec): made hex_digit unsigned char, removed ascii dependance
903         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
904           (hex2dec): made hex_digit unsigned char, removed ascii dependance
905         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
906         * packihx/packihx.c (hexDigit): made c unsigned char
907         * as/mcs51/lklibr.c (fndsym),
908         * link/z80/lkgb.c (gb),
909         * link/z80/lklibr.c (fndsym),
910         * link/z80/lkrloc.c (relr),
911         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
912         * src/SDCC.lex (checkCurrFile, process_pragma),
913         * src/SDCCglue.c (spacesToUnderscores),
914         * src/SDCCmain.c (setParseWithComma, processFile),
915         * src/asm.c (tvsprintf, printCLine),
916         * src/avr/gen.c (emitcode, aopPut),
917         * src/ds390/gen.c (emitcode),
918         * src/hc08/gen.c (emitcode, emitinline),
919         * src/mcs51/gen.c (emitcode, genInline),
920         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
921           tokenizeLineNode),
922         * src/pic/ralloc.c (debugLog),
923         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
924           tokenizeLineNode),
925         * src/pic16/ralloc.c (debugLog),
926         * src/z80/main.c (_process_pragma):
927            made all ctype.h function calls safe
928         * src/SDCCopt.c: include math.h for fabs
929         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
930           and used them throughout the code to make ctype.h function calls safe
931         * src/ds390/main.c (asmLineNodeFromLineNode),
932         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
933         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
934            unsigned char*
935         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
936           (newpCodeAsmDir): made ctype.h function calls safe
937         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
938           pic16_emitcode):  made lbp unsigned char*
939         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
940           (pic16_newpCodeAsmDir): made ctype.h function calls safe
941         * src/xa51/gen.c (emitcode),
942         * src/z80/gen.c (_emit2): made lbp unsigned char*
943         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
944            char*
945
946 2005-09-05 Raphael Neider <rneider AT web.de>
947
948         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
949           access bank splitpoint
950
951 2005-09-05 Raphael Neider <rneider AT web.de>
952
953         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
954
955 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
956
957         * .version: changed to version 2.5.3
958         * doc/sdccman.lyx: changed version to 2.5.3,
959           documented --codeseg and --constseg and pragma codeseg and constseg,
960           documented bit parameters (reentrant) and bit returning
961         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
962            currFunc->recvSize, but is this ok for all ports?
963           (ast2iCode): result of ~ on unsigned char must be cast to int for
964            bool to work
965         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
966           function pointers in bit space
967         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
968           (processFuncArgs): call port.reg_parm() with reentrancy info
969         * src/port.h,
970         * src/avr/main.c,
971         * src/ds390/main.c,
972         * src/hc08/main.c,
973         * src/pic/main.c,
974         * src/pic16/main.c,
975         * src/xa51/main.c,
976         * src/z80/main.c: port.reg_parm prototype extended with
977           "bool reentrant" parameter
978         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
979           options.stackAuto for allocating bit register parameters
980         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
981           (genSend): set BitBankUsed if it is,
982           (selectRegBank): factored out of genCall for use in genPcall,
983           (genCall): removed redundant dtype assignmen, use selectRegBank,
984           (genPcall): handle returning in Carry properly, save in F0 if needed,
985           (genReceive): handle bit register parameters
986         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
987           (mcs51_assignRegisters): enable bit registers for all reentrant
988            functions and don't set BitBankUsed unconditionally
989         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
990         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
991         * support/regression/tests/funptrs.c: added tests for BOOL and for return
992
993 2005-08-27 Borut Razem <borut.razem AT siol.net>
994
995         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
996         ppc-osx (Darwin) does not support -u option. It seems that it is
997         supported only on Linux - GNU cp
998
999 2005-08-25 Borut Razem <borut.razem AT siol.net>
1000
1001         * sim/ucsim/gui.src/serio.src/Makefile.in,
1002           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1003           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1004           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1005           install and strip, since the strip at /usr/ccs/bin should be used
1006           on solaris
1007
1008 2005-08-24 Borut Razem <borut.razem AT siol.net>
1009
1010         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1011
1012 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1013
1014         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1015         ffffffffu
1016
1017 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1018
1019         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1020         * as/mcs51/lkmain.c (link_main): fixed warning
1021         * device/include/stdbool.h: ds390 has no advanced bit support yet
1022         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1023         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1024         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1025           and updated their macros
1026         * src/SDCCval.c (constVal): updated comment for renamed b_long
1027
1028 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1029
1030         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1031         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1032           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1033           (oprio): set priority for '['
1034         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1035            and adb_24_bit
1036         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1037         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1038         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1039         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1040           added overlayable BIT_BANK area
1041         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1042           (summary2): explain 'T' in legenda
1043         * as/mcs51/lkrloc.c: replaced old K&R style,
1044           (relr): added R_BIT processing,
1045           (errmsg): added "Bit-addressable relocation error",
1046           (adb_bit): added for converting from byte- to bit-addressable space,
1047           (adb_24_bit): added for converting from byte- to bit-addressable space
1048         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1049            used in reentrant functions now even as return value
1050         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1051         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1052           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1053         * src/SDCCglobl.h: added indicator BitBankUsed
1054         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1055            the bit registers b0-b7
1056         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1057           (geniCodeCast): fixed bug 1263853,
1058           (geniCodeLogicAndOr): put result in bool or char,
1059           (geniCodeReceive): added parameter func for accessing the return type,
1060           (geniCodeFunctionBody): pass func to geniCodeReceive
1061         * src/SDCCmain.c: added indicator BitBankUsed
1062         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1063         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1064           (checkSClass): don't put automatic bool/bit on stack,
1065           (checkFunction): removed check on function cannot return bit
1066         * src/SDCCsymt.h: added newBoolLink prototype
1067         * src/mcs51/gen.c (rb1regs): added bit registers,
1068           (movc): created for assigning to carry,
1069           (pushReg, popReg): created for pushing registers,
1070           (sameRegs): check both AOP_REG and AOP_CRY types,
1071           (aopOp): handle bit registers,
1072           (aopPut): optimization no self-assign,
1073           (saveRegisters): push reg->base (bits) only once for bit registers,
1074            and use pushReg,
1075           (unsaveRegisters): pop reg->base only once and use popReg,
1076           (assignResultValue): added parameter func and return in carry for bits,
1077           (genIpush): optimization no reload in A if not changed,
1078           (genSend): bit parameters in reentrant functions are passed in bit
1079            registers by first assigning to bits in B, then save registers and
1080            copy B to bits,
1081           (genCall): handle returning in Carry properly, save it in F0 if needed,
1082           (genPcall): updated assignResultValue call, this is not safe yet for bit
1083            returning function !!!
1084           (genFunction): don't generate equ's for bit registers and use pushReg,
1085           (genEndFunction): take care of bit returning functions and use popReg,
1086           (genRet): return bit in Carry,
1087           (genIfx): optimize bit registers and other directly addressable bits,
1088           (genReceive): updated assignResultValue call
1089         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1090           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1091            registers when using stack-auto
1092         * src/mcs51/ralloc.c (_G): added allBitregs,
1093           (regs8051): added the bit registers,
1094           (createStackSpil): use macro IS_BIT,
1095           (getRegBit): added to allocate a bit register, else spill,
1096           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1097           (updateRegUsage): factored out to ease stepping while debugging,
1098           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1099            also allocate bit registers,
1100           (fillGaps): handle bit registers,
1101           (findAllBitregs): added to create bit vector with all bit registers,
1102           (mcs51_allBitregs): returns this bit vector,
1103           (mcs51_assignRegisters): when using stack-auto use bit registers for
1104            passing parameters and creating local variables
1105         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1106
1107 2005-08-22 Borut Razem <borut.razem AT siol.net>
1108
1109         * device/lib/Makefile.in: replaced find option -or with -o
1110           to make it run on solaris
1111
1112 2005-08-22 Raphael Neider <rneider AT web.de>
1113
1114         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1115           fixes #1265442 (crash on Solaris)
1116
1117 2005-08-20 Borut Razem <borut.razem AT siol.net>
1118
1119         * configure, configure.in: added tests for libsocket and libnsl libraries,
1120           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1121           from support/regression/Makefile.in
1122         * support/regression/Makefile.in: added
1123         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1124         * sim/ucsim/libtool: regenerated on sparc-solaris
1125         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1126           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1127           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1128           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1129           sparc-solaris, which doesn't use GNU ld linker
1130         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1131         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1132
1133 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * src/mcs51/peeph.def: updated comments
1136
1137 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1138
1139         * device/lib/_gptrget.c,
1140         * device/lib/_gptrput.c: slightly shorter
1141         * doc/sdccman.lyx: incremented version
1142         * src/mcs51/peeph.def: moved peephole comments to the line of first
1143           change to better keep line correlation, reanimated 186.e
1144         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1145
1146 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1147
1148         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1149           David Saxton with quotes around file name.
1150
1151 2005-08-15 Borut Razem <borut.razem AT siol.net>
1152
1153         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1154           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1155           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1156           make tests run on x86_64 platform
1157
1158 2005-08-13 Raphael Neider <rneider AT web.de>
1159
1160         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1161           as it might be executed DURING a build (parallel make is wonderful)
1162
1163 2005-08-13 Raphael Neider <rneider AT web.de>
1164
1165         * device/lib/Makefile.in (port-specific-objects-pic16):
1166           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1167         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1168           dependency
1169         * device/lib/pic16/Makefile.rules: build subdirs before creating
1170           the library, removed builddir rule, create $(builddir) early in
1171           recurse rule, use empty recurse rule for leaf directories
1172         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1173           mkdir errors (race condition), removed duplicate suffix "hex"
1174           from clean rules
1175         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1176         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1177           prevents mkdir -p from aborting on Alpha
1178
1179 2005-08-12 Raphael Neider <rneider AT web.de>
1180
1181         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1182           db-statements in order to allow for arrays of pointers in code
1183           sections to be placed without interspersed 0-padding, fixes
1184           bug #1256215
1185         * (emitStatistics): fixed division by zero for pic18f1220
1186         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1187           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1188         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1189         * (pic16_pCodeConstString): keep track of already emitted string
1190           literals to prevent "duplicate definitions of symbol _str_NR"
1191         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1192           debug message
1193         * device/lib/Makefile.in: ignore failing PIC16 library builds
1194         * device/lib/pic16/Makefile: do not build if gputils are missing
1195         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1196
1197 2005-08-10 Raphael Neider <rneider AT web.de>
1198
1199         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1200           my last commit)
1201
1202 2005-08-10 Raphael Neider <rneider AT web.de>
1203
1204         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1205           Rokas' patch to add the new fixed point type "__fixed16x16"
1206         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1207           functions for __fixed16x16 arithmetics
1208         * device/lib/pic16: reimplemented the build system to support
1209           a separate build directory, better handling of libio (create
1210           the library in a separate subdir for each architecture) and
1211           easier configuration (centralized in Makefile.common)
1212
1213 2005-08-07 Raphael Neider <rneider AT web.de>
1214
1215         * src/pic16/gen.c (genrshTwo): fixed sign extension
1216         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1217         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1218           added T0CONbits
1219         * device/include/pic16/pic18f4220.h: NEW, header for
1220           pic18f4220 and pic18f4320
1221         * device/include/pic16/pic18fregs.h: added new devices,
1222           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1223         * device/include/pic16/signal.h: resolved name clashes
1224           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1225           to also allow testing for interrupt enable bits, added
1226           comments on how to use the macros
1227         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1228         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1229           register definitions for the devices
1230         * device/lib/pic16/pics.all: added new devices
1231         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1232           allocated memory
1233         * device/lib/pic16/libc/stdlib/memfree: do not count
1234           the block header as free memory
1235         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1236           simplified and added missing end-of-blocklist-marker
1237           (reported by Peter Onion, fixes #1252814)
1238         * (_mergeHeapBlock): fixed loop condition
1239         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1240           len==0, restructured code
1241         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1242           up a bit, reduced bitfield accesses, prevent endless loops
1243           in case of heap corruption
1244         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1245           "unreferenced arguments/must return a value" warnings
1246         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1247           replaced BAUDREG with SPBRG
1248         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1249           device/lib/pic16/debug/gstack/gstack.c: replaced
1250           _naked, _asm, _endasm with __naked, __asm, __endasm
1251
1252 2005-08-05 Raphael Neider <rneider AT web.de>
1253
1254         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1255           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1256
1257 2005-08-05 Borut Razem <borut.razem AT siol.net>
1258
1259         * device/lib/Makefile.in: added missing ';'
1260         * configure: removed ^M characters
1261
1262 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1263
1264         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1265           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1266           License
1267
1268 2005-08-04 Borut Razem <borut.razem AT siol.net>
1269
1270         * configure.in: pic16 libraries build 2nd try - enable running
1271           configure in device/lib/pic16
1272         * configure: regenerated from configure.in
1273         * device/lib/Makefile.in: create $(PORT)/bin directory
1274
1275 2005-08-03 Raphael Neider <rneider AT web.de>
1276
1277         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1278           to get/set values via pointers
1279         * (genUnpackBits,genPackBits): changed detection of
1280           ptr->bitfield vs. sym.bitfield, fixed access via generic
1281           pointers, removed dead (wrong) code for multibyte bitfields
1282         * (genNearPointerGet, genGenPointerGet): removed useless code,
1283           fixed bitfield detection, fixes #1250594
1284         * (genNearPointerSet): removed useless code
1285         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1286           and introduced macro pic16_emitpcode that conditionally emits
1287           the origin of the following pCode (useful for debugging SDCC)
1288         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1289         * (createDefmap): fixed handling of LFSR for --optimize-df
1290
1291 2005-08-02 Borut Razem <borut.razem AT siol.net>
1292
1293         * device/lib/Makefile.in: pic16 libraries build enabled since
1294           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1295
1296 2005-08-02 Raphael Neider <rneider AT web.de>
1297
1298         * src/pic16/gen.c (genPackBits): removed deprecated warning
1299         * (genGenPointerSet): fixed bitfield detection
1300
1301 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1302
1303         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1304
1305 2005-07-31 Raphael Neider <rneider AT web.de>
1306
1307         * device/lib/pic16/libdev/pic18f458.c,
1308           device/include/pic16/pic18f458.h: added missing T0CONbits
1309
1310 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1311
1312         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1313
1314 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1315
1316         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1317
1318 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1319
1320         * device/include/mcs51/at89c51ed2.h: added.
1321
1322 2005-07-23 Raphael Neider <rneider AT web.de>
1323
1324         * src/pic/gen.h: added emitpcode macro for debugging
1325         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1326           and replace by macro adding debug information on demand
1327         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1328         * (gencjne): tried to fix; replaced with correct (slower) code
1329         * (gen{Unp,P}ackBits): fixed single bit access
1330         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1331         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1332           previous instruction
1333         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1334           register has to be handled with care (forbidding movement
1335           of assignments/uses, removing assignments completely, ...)
1336         * (pCodeOptime2pCodes): make use of regIsSpecial
1337         * added lots of debugging output (commented out)
1338         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1339           from being reused as result UNLESS it is known to work
1340
1341 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1342
1343         * support/Util/dbuf.h: include <stddef.h> for size_t
1344         * .version: changed to version 2.5.2
1345
1346 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1347
1348         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1349
1350 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1351
1352         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1353           (genModOneByte): removed needless psha/pula
1354
1355 2005-07-22 Raphael Neider <rneider AT web.de>
1356
1357         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1358           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1359         * src/pic/gen.c (resolveIfx): do not "invent" labels
1360         * (genSkipc): changed to positive logic
1361         * (genSkipCond): removed as no longer needed
1362         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1363           backport from PIC16
1364         * (genLeftShift): check operands are in different registers
1365         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1366           INCF does not update CARRY...
1367         * src/pic/main.c: fixed _linkCmd
1368         * src/pic/pcode.c (unlinkpCode): added inactive code
1369         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1370           alive (do not assign result and operand overlapping registers)
1371
1372 2005-07-22 Raphael Neider <rneider AT web.de>
1373
1374         * src/pic/device.c (dump_sfr): replaced register declaration with
1375           call to emitSymbolToFile() to avoid duplicate symbols
1376         * (assignRelocatableRegisters): do not declare external symbols
1377         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1378           right (take size of type, not etype)
1379         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1380         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1381         * (packRegsForAccUse): disabled assignment of WREG as
1382           the result reg to prevent occurence of just fixed #1235003,
1383           fixes #1242954
1384         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1385           symbols (avoids duplicate symbols in .asm file)
1386         * (pic14emitRegularMap): use emitSymbolToFile()
1387         * src/pic/gen.c (aopOp): fixed spillLocation handling
1388         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1389         * (genDataPointerSet): removed unneccessary variables/output
1390
1391 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1392
1393         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1394         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1395
1396 2005-07-21 Raphael Neider <rneider AT web.de>
1397
1398         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1399           architecture cannot handle them efficiently, fixes bug #1235003
1400         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1401           check for empty sets before using them (fixes bug #1232190)
1402
1403 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1404
1405         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1406           (lnksect2): generate warnings for memory overlap
1407         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1408           constseg to set the name of these segments so you can instruct the linker
1409           to place them in banks
1410         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1411         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1412           added code_seg and const_seg to options
1413         * src/SDCCglue.c (emitMaps): use options.const_seg,
1414           (createInterruptVect): put interrupt vectors in segment HOME,
1415           (glue): put HOME before static segment and put the main glue in HOME,
1416           (glue): use options.code_seg
1417         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1418         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1419           these segments so you can instruct the linker to place them in banks
1420           (linkEdit): use code_loc for HOME segment which should be the first
1421           segment in code memory now
1422         * src/SDCCmem.c: fixed more stuff like bug 1238386
1423         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1424           (changePointer): don't change function pointers to code pointers for
1425           banked functions,
1426           (compareType): added exceptional check for banked function pointers
1427         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1428         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1429           after static in code memory
1430         * src/mcs51/gen.c: added aopLiteralLong prototype,
1431           (aopForSym): use getSize for functions,
1432           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1433           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1434           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1435           the segment,
1436           (genPcall): use call for literal function pointers and generate banked
1437           calls over the one trampoline so there's only one place for the user to
1438           modify according to his/hers hardware,
1439           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1440           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1441         * src/mcs51/main.c: added keyword banked,
1442           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1443         * support/Util/SDCCerr.c,
1444         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1445           needed for passing the bank and address to the trampoline
1446         * device/lib/mcs51/crtbank.asm: added for bankswitching
1447         * device/lib/mcs51/Makefile: added crtbank
1448
1449 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1450
1451         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1452           for fields at offset 0 of a struct or union as reported
1453           on 2005-07-07 in the developer mailing list.
1454
1455 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1456
1457         * src/SDCCmem.c: fixed bug 1238386
1458
1459 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1460
1461         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1462           (patch #1144962), added peephole 300, enabled 259.x
1463         * doc/sdccman.lyx: removed screenshot and provided link instead
1464
1465 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1466
1467         * doc/sdccman.lyx: added section about debugging with ddd
1468         * doc/figures/ddd_example.eps: screenshot of debugging session
1469
1470 2005-07-04 Raphael Neider <rneider AT web.de>
1471
1472         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1473           like CODE pointers, fixes #1115683
1474         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1475           call, fixes bugs #1232211, #1228110,
1476           fixed wrong casts to pCodeFlow from pCodeInstructions
1477
1478 2005-07-04 Raphael Neider <rneider AT web.de>
1479
1480         * src/pic/gen.c (popGet): changed assert to allow for
1481           bit operands
1482         * (popGetAddr): changed signature to provide
1483           an additional index, patched all call sites
1484         * (genCmpEq): handle literal-like operands correctly
1485         * (genAddrOf): added sanity checks on __code/__data pointers
1486         * (genAssign): added handling of symbols from __code section
1487         * (gencjne): do not generate code for comparisons whose result
1488           is neither stored nor used, fixes bug #1171114
1489         * (AccLsh, AccRsh): operate on operand instead of WREG
1490         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1491           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1492           by known count
1493         * rewrote complete shift-by-literal logic, commented unused
1494           functions out
1495         * (genConstPointerGet): get multiple bytes (if result size > 1),
1496           fixed handling of non-immediate addresses
1497         * (genPointerGet): handle CODE pointers like CONST pointers
1498         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1499         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1500           operand is to be treated as a literal or not
1501         * (mov2w,genPcall,genCmpEq),
1502           src/pic/genarith.c: use aop_isLitLike() to decide between
1503           literal/register contents
1504         * (addSign): added missing offset
1505         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1506           only emit comment in debug-mode,
1507           use {aop,op}_isLitLike throughout the file
1508         * src/pic/glue.c: fix initializers for pointers (work in progress)
1509         * src/pic/pcode.c (get_op): honor index on _const symbols
1510         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1511         * (dumppBlock): added pCode size estimation
1512         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1513           check for IS_SYMOP before OP_SYMBOL'ing
1514         * fixed indentation, compacted switch-statements
1515         * (allocReg): find free register and allocate it instead of
1516           allocating new registers all the time
1517         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1518           registers as its operands (necessary only for multibyte GETs)
1519
1520 2005-07-01 Raphael Neider <rneider AT web.de>
1521
1522         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1523           debugging .asm-output macros FENTRY + FEXIT
1524         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1525           way... I wonder...
1526         * (emitpComment): NEW, printf to pCode
1527         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1528           offset handling
1529         * (popGetAddr): NEW, variant of popGet to access an immediates
1530           high(er) bytes instead of the n'th byte of memory they reference,
1531           replaced popGet with popGetAddr where neccessary
1532         * (genDataPointerGet): reactivated and fixed implementation
1533         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1534           accesses
1535         * (genDataPointerSet): fixed multibyte assignments
1536         * (genpic14Code): fixed --i-code-in-asm handling
1537         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1538         * (genPlus): fixed index-out-of-bounds error
1539         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1540         * src/pic/ralloc.c: added debugging output macro FENTRY2
1541         * (spillThis): fixed indentation, enbraced for-body for clarity
1542         * (rematStr): commented out as now unused
1543         * (regTypeNum): commented out special spill case (overwrites
1544           arbitrary values)
1545         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1546
1547 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1548
1549         * doc/sdccman.lyx: documented sfr16/sfr32,
1550           added example for using storage class with function pointers
1551         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1552
1553 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1554
1555         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1556         * device/lib/_itoa.c,
1557         * device/lib/_ltoa.c: optimized codesize
1558         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1559           but don't know how to suppress the double warning.
1560         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1561         * support/Util/SDCCerr.c,
1562         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1563
1564 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1565
1566         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1567           fixed old K&R prototypes
1568         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1569         * device/lib/_gptrget.c,
1570         * device/lib/_gptrgetc.c,
1571         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1572           also new versions for small generic pointers and banked generic pointers
1573         * src/port.h: added const_name
1574         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1575         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1576         * src/SDCCcse.c (findPrevIc): check all associative operators
1577         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1578         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1579         * src/SDCCmem.c: updated comments,
1580           set far-space to 0 for pdata, results in optimized code
1581         * src/SDCCmem.h: added macro CONST_NAME
1582         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1583           moving the info into the highest bits, see also gptrget/gptrput
1584         * src/src.dsp: added sdcc.ico to project files
1585         * src/avr/gen.c (genCast): fixed bug 0x%d
1586         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1587         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1588           relation between ptr_type and DCL_TYPE,
1589           (genCast): fixed bug 0x%d
1590         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1591           (CODE)" for const_name
1592         * src/hc08/gen.c (genCast): fixed bug 0x%d
1593         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1594           (hc08_port): added "CONST (CODE)" for const_name
1595         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1596           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1597           between ptr_type and DCL_TYPE,
1598           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1599           operand* and took AOP() inside function so sfr-ness can be checked,
1600           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1601           new prototype,
1602           (genFunction, genEndFunction): optimized stack setup,
1603           (genMinus): optimized for literals with ending zeroes (in bytes),
1604           (genCast): fixed bug 0x%d
1605         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1606           (mcs51_port): added "CONST (CODE)" for const_name
1607         * src/mcs51/peeph.def: made rule 226 more generic
1608         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1609         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1610         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1611         * src/z80/main.c (z80_port): added NULL for const_name,
1612           (gbz80_port): added NULL for const_name
1613         * support/regression/tests/bug663539.c,
1614         * support/regression/tests/sfr16.c: new tests
1615
1616 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1617
1618         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1619
1620 2005-06-24 Raphael Neider <rneider AT web.de>
1621
1622         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1623           corrected typos...
1624         * device/include/pic16/signal.h: added USBIF
1625           and SIG_USB
1626
1627 2005-06-24 Raphael Neider <rneider AT web.de>
1628
1629         * device/lib/pic16/libdev/pic18f2455.c,
1630           device/include/pic16/pic18f2455.h: NEW
1631         * device/include/pic16/pic18fregs.h,
1632           device/lib/pic16/pics.all,
1633           src/pic16/device.c: added 18f2455
1634         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1635           device/include/pic16/{pic18f[68][567].h,usart.h}:
1636           replaced MULTIPLE_USARTS define with more relaible
1637           compatibility sfrs (for USART access)
1638
1639 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1640
1641         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1642           and the output asm file line is printed on two lines.
1643
1644 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1645
1646         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1647           BGT, BLE, BHI, and BLS instructions
1648         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1649           genCmpEq): removed
1650         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1651           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1652           fixes bug #1216342
1653         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1654
1655 2005-06-15 Raphael Neider <rneider AT web.de>
1656
1657         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1658         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1659         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1660           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1661           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1662
1663 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1664
1665         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1666           Marcel Telka in bug #1215704
1667
1668 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1669
1670         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1671           located in shared memory bank.
1672
1673 2005-05-31 Raphael Neider <rneider AT web.de>
1674
1675         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1676           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1677           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1678
1679 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * device/lib/_strncpy.c: fixed the fix
1682
1683 2005-05-26 Raphael Neider <rneider AT web.de>
1684
1685         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1686           initializers with \0, bug #1208187
1687         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1688           intializers with \0, bug #1208187
1689
1690 2005-05-26 Raphael Neider <rneider AT web.de>
1691
1692         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1693           initializers with \0, bug #1208187
1694         * src/pic16/main.c (_process_pragma): added sanity checks
1695           for stack position and size, emit warnings when appropriate
1696
1697 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1698
1699         * device/lib/_strncpy.c: fixed not filling with \0
1700
1701 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1702
1703         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1704           createFunction),
1705         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1706           compound_statement),
1707         * src/SDCCsymt.h,
1708         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1709
1710 2005-05-24 Raphael Neider <rneider AT web.de>
1711
1712         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1713
1714 2005-05-24 Raphael Neider <rneider AT web.de>
1715
1716         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1717           TRISE definitions, closes bug #1162453
1718
1719 2005-05-22 Raphael Neider <rneider AT web.de>
1720
1721         * src/pic16/main.c (_process_pragma): check for missing
1722           arguments to pragmas code and udata
1723         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1724           consistency fixes to match other headers (thanks to Jim Paris)
1725         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1726
1727 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1728
1729         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1730
1731 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1732
1733         * support/regression/tests/bug1198642.c: new test
1734         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1735         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1736         * support/scripts/resource.h,
1737         * support/scripts/resource.rc,
1738         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1739         * support/scripts/sdcc.ico: added 32x32 icon
1740
1741 2005-05-18 Raphael Neider <rneider AT web.de>
1742
1743         * device/lib/pic16/libdev/pic18f*.c,
1744         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1745           keywords to "__sfr" and "__at (X)"
1746         * device/include/pic16/pic18fregs.h: added pic18f4520
1747         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1748           #1203088 (MPLAB compatibility)
1749
1750 2005-05-17 Raphael Neider <rneider AT web.de>
1751
1752         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1753         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1754         * device/lib/pic16/pics.all: added new devices
1755         * src/pic16/device.c: added support for pic18f4520
1756
1757 2005-05-16 Raphael Neider <rneider AT web.de>
1758         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1759         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1760         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1761           convenience function for bit access
1762
1763 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1764
1765         * device/lib/printf_large.c: fixed bug 1193299
1766         * support/regression/tests/bug1057979.c: added test %3.3s
1767
1768 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1769
1770         * device/include/mcs51/8051.h,
1771         * device/include/mcs51/8052.h: made parseable with lint
1772         * device/include/mcs51/lint.h: added include file for (sp)lint
1773         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1774         * doc/cdbfileformat.lyx,
1775         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1776
1777 2005-05-14 Raphael Neider <rneider AT web.de>
1778
1779         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1780         * device/lib/pic16/libc/stdlib/itoa.c (new)
1781         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1782         * device/lib/pic16/libio/Makefile: exclude subdir according to
1783           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1784         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1785         * src/pic16/gen.c (genFunction): prevent annoying warning
1786         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1787           nameclashes on BeOS
1788         * support/cpp2/cppmain.c (cpp_output_string): new
1789         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1790           fixes bug 1116802
1791
1792 2005-05-13 Borut Razem <borut.razem AT siol.net>
1793
1794         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1795
1796 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1797
1798         * .version: changed to version 2.5.1; back to bleeding edge development
1799
1800 2005-05-11 Borut Razem <borut.razem AT siol.net>
1801
1802         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1803           generate PDF version 1.3 documents
1804
1805 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1806
1807         * .version: changed to version 2.5.0
1808
1809 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1810
1811         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1812
1813 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1814
1815         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1816         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1817         well as many smaller updates.
1818         * .version: changed to version 2.5.0-pre1
1819
1820 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1821
1822         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1823
1824 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1825
1826         * support/regression/tests/bug1185672.c: added
1827         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1828           bug 1185672
1829         * src/mcs51/gen.c (genCall): added comments, made it look safer
1830         * src/mcs51/gen.c (genEndFunction): simplified
1831
1832 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1833
1834         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1835
1836 2005-04-14 Borut Razem <borut.razem AT siol.net>
1837
1838         * fixed bug 1045046 - SIGSEGV with really simple code?:
1839           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1840           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1841
1842 2005-04-14 Borut Razem <borut.razem AT siol.net>
1843
1844         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1845           src/pic16/device.h: temporarily disabled experimental #inline pragma
1846           for 2.5.0 release
1847
1848 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1849
1850         * device/include/z80/stdio.h,
1851         * device/include/z80/string.h: removed these highly incomplete files so
1852           SDCC can use the default ones in device/include/
1853
1854 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1855
1856         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1857         gcc warning.
1858         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1859         fix sdcpp warnings.
1860
1861 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1862
1863         * device/include/malloc.h: removed redundant __reentrant prototypes
1864         * device/lib/_mullong.c: added working xstack variant in asm (C version
1865           doesn't pass regression tests)
1866         * device/lib/bpx.c: used __data and made bpx char for mcs51
1867         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1868           (createFunction): fixed bug with xstackPtr
1869         * src/SDCCcse.c: corrected comments
1870         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1871           (killDeadCode, eBBlockFromiCode): removed unused code
1872         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1873           corrected comments
1874         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1875           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1876           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1877           (genModOneByte): fixed warning in MSVC
1878         * src/mcs51/main.c (): added comments
1879         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1880
1881 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1882
1883         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1884
1885 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1888
1889 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1890
1891         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1892         characters arrays of larger size than the declared one.
1893
1894 2005-04-10 Borut Razem <borut.razem AT siol.net>
1895
1896         * src/pic/gen.c (genInline),
1897           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1898           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1899           (findNextInstruction), (findPrevInstruction),
1900           (findInstructionUsingLabel),
1901           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1902         * src/pic/pcode.c (findLabel): added missing '\n'
1903         * src/src.dsp: added SDCCdwarf2.c to the project
1904
1905 2005-04-09 Borut Razem <borut.razem AT siol.net>
1906
1907         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1908
1909 2005-04-08 Raphael Neider <rneider AT web.de>
1910
1911         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1912           into the chain after a given one) and mergeDefmapSymbols (combine
1913           defmap entries for each symbol per pcode)
1914         * (createDefmap): have defmap entries merged in the end
1915         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1916           a symbol before replacing one access type's symbol, merge symbols in
1917           the end (replacement symbol might already have an entry)
1918         * (assignValnums): keep reference to written WREG intact
1919
1920 2005-04-08 Raphael Neider <rneider AT web.de>
1921
1922         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1923           Alpha)
1924
1925 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1926
1927         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1928         bytes
1929
1930 2005-04-07 Raphael Neider <rneider AT web.de>
1931
1932         * device/include/pic16/usart.h: added compatibility defines for
1933           devices with more than one USART
1934         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1935
1936 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1937
1938         * device/lib/Makefile.in: updated for port specific include
1939
1940 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1941
1942         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1943
1944 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1945
1946         * device/include/8051.h,
1947         * device/include/8052.h,
1948         * device/include/at89S8252.h,
1949         * device/include/at89c55.h,
1950         * device/include/at89x051.h,
1951         * device/include/at89x51.h,
1952         * device/include/at89x52.h,
1953         * device/include/mcs51reg.h,
1954         * device/include/reg51.h,
1955         * device/include/reg764.h,
1956         * device/include/regc515c.h,
1957         * device/include/sab80515.h: (re)moved these 12 files
1958         * device/include/mcs51/8051.h,
1959         * device/include/mcs51/8052.h,
1960         * device/include/mcs51/at89S8252.h,
1961         * device/include/mcs51/at89c55.h,
1962         * device/include/mcs51/at89x051.h,
1963         * device/include/mcs51/at89x51.h,
1964         * device/include/mcs51/at89x52.h,
1965         * device/include/mcs51/mcs51reg.h,
1966         * device/include/mcs51/reg51.h,
1967         * device/include/mcs51/reg764.h,
1968         * device/include/mcs51/regc515c.h,
1969         * device/include/mcs51/sab80515.h: and added them here
1970
1971 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1972
1973         * device/include/stdarg.h: changed SDCC specific keywords to double
1974           underlined form.
1975         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1976           mcs51 and ds390.
1977         * device/include/hc08/mc68hc908gp32.h,
1978         * device/include/hc08/mc68hc908jb8.h,
1979         * device/include/hc08/mc68hc908jkjl.h,
1980         * device/include/hc08/mc68hc908qy.h: fixed comments
1981         * device/include/mcs51/README: updated
1982         * device/include/mcs51/c8051f120.h: added PINRSF
1983         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1984         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1985           amidst code. Also inline is not supported.
1986
1987 2005-04-06 Raphael Neider <rneider AT web.de>
1988
1989         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1990         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1991           callers stack/frame pointers
1992
1993 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1994
1995         * device/include/pic16/usart.h: added, missing in previous commit,
1996         * device/include/pic16/adc.h: fixed typo,
1997         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1998         commit,
1999         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2000         <p18fxxx.inc>
2001         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2002         uninitialized because a bug appears with gplink
2003         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2004         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2005         complains for unrecognised option
2006
2007 2005-04-05 Raphael Neider <rneider AT web.de>
2008
2009         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2010           structs as well (using memcpy)
2011         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2012           on ISRs (GOTO has no label)
2013         * src/pic16/device.h: added OF_OPTIMIZE_DF
2014         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2015           new data flow analysis/optimization
2016         * src/pic16/pcode.c: added (prototypes for and implementation of)
2017           dataflow analysis functions, fixed pCodeInstructions' inCond and
2018           outCond values, made RCALL a branch instruction
2019         * (pic16_unlinkpCode): keep C line if possible
2020         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2021           C line moved if possible
2022         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2023         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2024           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2025         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2026           new flow)
2027         * (pic16_getJumptabpCode): NEW, needed in...
2028         * (LinkFlow): fixed handling of jumptables, calls and conditional
2029           branches
2030         * (pic16_InsertCommentAfter): NEW
2031         * (pic16_pCodeReplace): made verbose and flow preserving
2032         * (AnalyzeFlow): added call to data flow analysis
2033         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2034         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2035         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2036
2037 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2038
2039         * src/SDCCast.c (decorateType): fixed bug #1105626
2040
2041 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2042
2043         * device/include/asm/pic16/features.h,
2044         * pic18f*.h headers,
2045         * device/include/pic16/adc.h,
2046         * device/include/pic16/delay.h,
2047         * device/include/pic16/i2c.h,
2048         * device/include/pic16/malloc.h,
2049         * device/include/pic16/stdio.h,
2050         * device/include/pic16/stdlib.h,
2051         * device/include/pic16/string.h,
2052         * device/lib/pic16/libc/stdio/printf_tiny.c,
2053         * device/lib/pic16/libc/stdio/printf_small.c,
2054         * device/lib/pic16/libc/stdio/strmgpsim.c,
2055         * device/lib/pic16/libc/stdio/strmmssp.c,
2056         * device/lib/pic16/libc/stdio/strmusart.c,
2057         * device/lib/pic16/libc/stdio/vfprintf.c,
2058         * device/lib/pic16/libc/stdlib/ltoa.c,
2059         * device/lib/pic16/libc/stdlib/putchar.c,
2060         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2061         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2062         * device/lib/pic16/libc/stdlib/memchrram.c,
2063         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2064         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2065         * device/lib/pic16/libio/adc/adcbusy.c,
2066         * device/lib/pic16/libio/adc/adcread.c,
2067         * device/lib/pic16/libio/adc/adcsetch.c,
2068         * device/lib/pic16/libio/usart/ubaud.c,
2069         * device/lib/pic16/libio/usart/ubusy.c,
2070         * device/lib/pic16/libio/usart/udrdy.c,
2071         * device/lib/pic16/libio/usart/uopen.c,
2072         * device/lib/pic16/libio/usart/uputc.c,
2073         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2074         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2075         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2076         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2077         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2078         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2079         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2080         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2081         specific keywords to double underlined form,
2082         * device/lib/pic16/libc/Makefile.rules,
2083         * device/lib/pic16/libsdcc/Makefile.rules,
2084         * device/lib/pic16/libm/Makefile,
2085         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2086         to compile with C standard set in Makefile.common
2087         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2088         rand.c and crc.c in compilation process,
2089         * device/lib/pic16/libsdcc/int/divuint.c,
2090         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2091         `c' from signed to unsigned,
2092         * device/lib/pic16/startup/crt0.c,
2093         * device/lib/pic16/startup/crt0i.c,
2094         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2095         keywords to double underlined form, bug fixes in _do_cinit function
2096         which prevented the correct initialization of the .idata segment,
2097         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2098         core to enter a infinite loop
2099         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2100
2101 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2102
2103         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2104
2105 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2106
2107         * device/include/Makefile.in: add support for hc08 subdirectory
2108         * device/include/hc08/: new subdirectory
2109         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2110         Lucas Loizaga, thanks!
2111         * device/include/hc08/mc68hc908qy.h,
2112         * device/include/hc08/mc68hc908gp32.h,
2113         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2114         their own directory. Changed internal macro names to use the compiler
2115         reserved namespace. Changed SDCC specific keywords to double
2116         underlined form.
2117         * device/include/math.h,
2118         * device/include/malloc.h,
2119         * device/include/stdarg.h,
2120         * device/include/stdbool.h
2121         * device/include/string.h,
2122         * device/include/tinibios.h,
2123         * device/include/ds400rom.h,
2124         * device/include/8051.h,
2125         * device/include/8052.h,
2126         * device/include/80c51xa.h,
2127         * device/include/at89c55.h,
2128         * device/include/at89S8252.h,
2129         * device/include/at89x51.h,
2130         * device/include/at89x52.h,
2131         * device/include/ds80c390.h,
2132         * device/include/reg764.h,
2133         * device/include/regc515c.h,
2134         * device/include/sab80515.h,
2135         * device/include/mcs51/c8051f000.h,
2136         * device/include/mcs51/c8051f018.h,
2137         * device/include/mcs51/c8051f020.h,
2138         * device/include/mcs51/c8051f040.h,
2139         * device/include/mcs51/c8051f060.h,
2140         * device/include/mcs51/c8051f120.h,
2141         * device/include/mcs51/c8051f300.h,
2142         * device/include/mcs51/c8051f310.h,
2143         * device/include/mcs51/c8051f320.h,
2144         * device/include/mcs51/c8051f330.h,
2145         * device/include/mcs51/c8051f350.h,
2146         * device/include/z180.h: Changed SDCC specific keywords to double
2147         underlined form.
2148
2149 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2150
2151         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2152         18F4455,
2153         * (pic16_assignConfigWordValue): disable testing of configuration
2154         register value with config mask,
2155         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2156         function with port->fun_prefix,
2157         * (genFunction): when generating a naked interrupt function never
2158         create an absolute segment placed in interrupt vector address, place
2159         the actual interrupt function at IVA instead, when an interrupt
2160         function is generated with unspecified interrupt then do not create
2161         the absolute section,
2162         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2163         code for generating a call to generic pointer get/put function with
2164         a call to function pic16_callGenericPointer(),
2165         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2166         the call to the generic pointer get/put functions with prefixing the
2167         function name with port->fun_prefix,
2168         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2169         * src/pic16/main.c (_process_pragma): prefix function with
2170         port->fun_prefix,
2171         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2172         calling assembler, old 18Fxxxx macro is deprecated,
2173         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2174         PC_ASMDIR in while condition,
2175         * (findInstruction): add PC_ASMDIR in while condition,
2176         * (buildCallTree): prefix main with port->fun_prefix,
2177         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2178         identifier for variable with banked access in instructions BTFSS,
2179         BTFSC, BCF, BSF, BTG
2180         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2181         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2182         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2183         perform optimization when enviroment variable NO_REG_OPT is set,
2184         * (insideLRBlock): NEW, return 1 if register is inside an
2185         INF_LOCALREGS block,
2186         * (RemoveRegFromLRBlock): remove a register that is completely
2187         eliminated by register optimization, but it is still left in local
2188         register store/restore in/from stack block,
2189         * (Remove2pcodes): after removing register, check to see if it
2190         should be removed from local register store/restore in/from stack
2191         block,
2192         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2193         DUMMY_READ_VOLATILE,
2194
2195         * device/include/pic16/adc.h: minor prototype modifications and
2196         update,
2197         * device/include/pic16/malloc.h: added GPL notice various
2198         modifications,
2199         * device/include/pic16/stdint.h: NEW, standard header for ints
2200         * device/include/pic16/delay.h: NEW, header for delay functions,
2201         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2202         delay1mtcy,
2203         * device/include/pic16/signal.h: NEW, header providing helper macros
2204         for implementing signal handlers,
2205         * device/include/pic16/stdio.h: added prototypes for functions,
2206         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2207         prototypes for stdin and stdout, added macro PUTCHAR to
2208         automatically implement putchar function prototype,
2209         * device/include/pic16/usart.h: modified and updated USART library,
2210         * device/lib/pic16/libio/adc/,
2211         * device/lib/pic16/libio/i2c: some modifications to improve library
2212         performance,
2213         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2214         family of functions,
2215         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2216         family of functions and other sources,
2217         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2218         of the PIC18Fxx[28] devices,
2219         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2220         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2221         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2222         _do_cinit function, because the previous failed when local variables
2223         where not placed in the same memory bank,
2224         * device/lib/pic16/libsdcc/char/: various modifications to improve
2225         library performance,
2226         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2227         information on the new functions of the c library and more...
2228
2229 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2230
2231         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2232
2233 2005-03-26 Raphael Neider <rneider AT web.de>
2234
2235         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2236           if condition == CARRY)
2237         * (genCmp): adapted to new genSkipc semantics
2238         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2239           on rIfx (genCmp was broken)
2240
2241 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2242
2243         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2244         * src/z80/main.c (_keywords[]),
2245         * src/SDCCglobal.h (struct options),
2246         * src/SDCC.y,
2247         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2248         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2249         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2250         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2251         always available in leading double underscore form. The C99 support is
2252         mostly missing, but it's a start.
2253         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2254         reserved identifier "__data".
2255
2256 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2257
2258         * src/mcs51/peeph.def: fixed bug 1170013
2259
2260 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2261
2262         * device/include/mcs51reg.h: fixed bug 842007
2263
2264 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2265
2266         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2267         last time.
2268
2269 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2270
2271         * src/port.h (struct PORT),
2272         * src/avr/ralloc.c (avr_assignRegisters),
2273         * src/avr/main.c,
2274         * src/ds390/ralloc.c (ds390_assignRegisters),
2275         * src/ds390/main.c,
2276         * src/hc08/ralloc.c (hc08_assignRegisters),
2277         * src/hc08/main.c,
2278         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2279         * src/mcs51/main.c,
2280         * src/pic/ralloc.c (pic14_assignRegisters),
2281         * src/pic/main.c,
2282         * src/pic16/ralloc.c (pic16_assignRegisters),
2283         * src/pic16/main.c,
2284         * src/xa51/ralloc.c (xa51_assignRegisters),
2285         * src/xa51/main.c,
2286         * src/z80/ralloc.c (z80_assignRegisters),
2287         * src/z80/ralloc.h,
2288         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2289         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2290         * src/SDCCcse.h,
2291         * src/SDCCdflow.c (computeDataFlow),
2292         * src/SDCCdflow.h,
2293         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2294         * src/SDCCloop.h,
2295         * src/SDCCcflow.c (*),
2296         * src/SDCCcflow.h,
2297         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2298         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2299         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2300         immedDom() returning wrong block; probably fixes bug #1160833)
2301
2302 2005-03-20 Borut Razem <borut.razem AT siol.net>
2303
2304         * support/scripts/inc2h.pl: WIN32 port
2305
2306 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2307
2308         * device/lib/makefile.in: added abs.c and labs.c
2309
2310 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2311
2312         * device/include/stdint.h: added
2313         * device/lib/abs.c: added
2314         * device/lib/labs.c: added
2315         * device/include/stdlib.h: added abs() and labs() prototypes
2316         * device/lib/libsdcc.lib: added abs and labs
2317         * device/include/float.h,
2318         * device/lib/_fsmul.c,
2319         * device/lib/printf_fast.c,
2320         * device/lib/printf_tiny.c: updated comments
2321
2322 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2323
2324         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2325         bug #1164313
2326
2327 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2328
2329         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2330         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2331
2332 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2333
2334         * device/lib/printf_large.c: removed inline assembly for portability and
2335           readability. Use printf_fast if speed or size are more important.
2336         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2337         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2338
2339 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2340
2341         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2342         prevent compiler warning
2343
2344 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2345
2346         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2347         moved to level 0 and declared as static. Also they are explicit
2348         placed in access bank. This was necessery because some times they
2349         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2350         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2351         optimizations. Currently only compare to unsigned char is implemented,
2352         * src/pic16/gen.c: added fReturnIdx array,
2353         * (struct resolvedIfx) is moved to gen.h and made public,
2354         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2355         * (aopForSym): added an optimization to directly store in stack of
2356         the operand of a SEND iCode,
2357         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2358         but as registers instead (AOP_REG) using the fReturnIdx array,
2359         * (pic16_freeAsmop): remove the freed register from the
2360         _G.sregsAlloc field,
2361         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2362         a compare of 'WREG',
2363         * (pic16_popGetTempRegCond): changed function prototype, now
2364         function takes also a bitVector argument v which holds the current
2365         set of registers that are allocated for stack access by aopForSym,
2366         registers allocated in aopForSym for accessing stack symbols are not
2367         any more part of the functions usedRegs field,
2368         * (genCall): some times aopOp is called for a stack variable to be
2369         send, aopForSym might perform the push, if this is true make sure
2370         that genCall doesn't push the variable twice by testing _G.resDirect,
2371         * (genFunction): changed testing for unspecified interrupt number
2372         from 256 to INTNO_UNSPEC,
2373         * modified selection scheme of frame pointer generation. Previously
2374         if function did use local registers a frame pointer was generated,
2375         now a frame pointer is generated only if function has arguments
2376         (that need PLUSW2 register access), or has stack arguments, or the
2377         compiler is not instructed to omit the frame pointer,
2378         * (genEndFunction): before restoring local registers that were saved
2379         in the function preamble, also restore the registers that *might*
2380         have been allocated for stack access,
2381         * (genRet): removed some old comments,
2382         * (genCmp, the active (RN's) version): added a call to the
2383         pic16_genCmp_special function to perform the compare with a more
2384         robust and optimized way,
2385         * (genInline): a feature has been added in inline code generation,
2386         which allows a wildcard variable substitution when writing inline
2387         assembly. Code is incomplete and experimental therefore undocumented,
2388         * (genCast): changed order of aopOp for result and right to allow
2389         aopForSym to directly load the result if possible,
2390         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2391         perform an optimized compare on some selected special occasions,
2392         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2393         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2394         generate an IVT any more,
2395         * src/pic16/main.c (pic16_optionsTable): added command line option
2396         --optimize-cmp,
2397         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2398         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2399         macros,
2400         * src/pic16/NOTES: Raphael Neider added in list of active developers
2401         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2402         jumptable_end to prevent bug #,
2403         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2404         inCond and outCond fields,
2405         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2406         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2407         turn off register spilling,
2408         * (packRegsForOneUse): synced with other ports' versions although it
2409         is not used currently,
2410         * (pic16_packRegisters): added an optimization while reading
2411         structure bitfields, some registers may be saved (malloc code is
2412         decreased by 80 bytes)
2413
2414 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2415
2416         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2417         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2418         this can be optimized more?
2419
2420 2005-03-10 Raphael Neider <rneider AT web.de>
2421
2422         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2423           genNearPointerGet): (hopefully) fixed access to bitfields via
2424           pointers (p->bitN = x; and x = p->bitN; failed)
2425
2426 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2427
2428         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2429
2430 2005-03-09 Raphael Neider <rneider AT web.de>
2431
2432         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2433
2434 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2435
2436         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2437         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2438           (regTypeNum): set REG_BIT type if necessary
2439         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2440         * support/regression/tests/critical.c: check bug 1144613
2441
2442 2005-03-02 Raphael Neider <rneider AT web.de>
2443
2444         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2445
2446 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2447
2448         * src/avr/ralloc.c (serialRegAssign),
2449         * src/ds390/ralloc.c (serialRegAssign),
2450         * src/hc08/ralloc.c (serialRegAssign),
2451         * src/mcs51/ralloc.c (serialRegAssign),
2452         * src/pic/ralloc.c (serialRegAssign),
2453         * src/pic16/ralloc.c (serialRegAssign),
2454         * src/xa51/ralloc.c (serialRegAssign),
2455         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2456
2457 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2458
2459         * src/SDCCast.c (decorateType): fixed bug 1124787
2460
2461 2005-02-20 Hubert Sack <sack AT digiplan.de>
2462         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2463
2464         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2465         patch #1121755
2466
2467 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2468
2469         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2470         to keep the correct label reference count when adding/removing references
2471         to labels. A peephole file using this is appended to patch #1144962.
2472
2473 2005-02-14 Raphael Neider <rneider AT web.de>
2474
2475         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2476         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2477         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2478           retrievals of result operand's value on assignment
2479
2480 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2481
2482         * device/include/pic16/string.h: modified prototype for memccpy()
2483         to memccpy(void *, void *, char, size_t)
2484         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2485         check whether to omit frame pointer or not,
2486         * (genInline): convert all occurences of "\n" to LF in inline
2487         assembler blocks, this helps formatting the inline text,
2488         * (pic16_loadFSR0): modified prototype,
2489         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2490         removed some 8051 legacy code,
2491         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2492         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2493         before allocating temporary registers in functions,
2494
2495 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2496
2497         * support/regression/tests/bitvars.c: corrected the "fix"
2498
2499 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2500
2501         * support/regression/tests/bitvars.c,
2502         * support/regression/tests/bitwise.c,
2503         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2504
2505 2005-02-10 Raphael Neider <rneider AT web.de>
2506
2507         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2508           different size for Alpha
2509         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2510
2511 2005-02-09 Raphael Neider <rneider AT web.de>
2512
2513         * src/SDCC.lex(doPragma) : save and restore warning options as well
2514           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2515         * have #pragma less_pedantic set the errorlevel to WARNING
2516           (fixes #1117001)
2517         * (cloneOptimize) : fixed wrong malloc's size
2518         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2519           facilitate correct handling of #pragma (save|restore)
2520
2521 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2522
2523         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2524
2525 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2526
2527         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2528
2529 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2530
2531         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2532
2533 2005-02-02 Raphael Neider <rneider AT web.de>
2534
2535         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2536         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2537         * (pic16_storeForReturn): fixed to allow returning function pointers
2538         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2539         * device/include/pic16/{stddef.h,stdbool.h}: added
2540
2541 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2542
2543         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2544
2545 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2546
2547         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2548         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2549          appeared to be required
2550
2551 2005-01-31 Borut Razem <borut.razem AT siol.net>
2552
2553         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2554           include/mcs51 and include/z80 directories to the package
2555
2556 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2557
2558         * src/hc08/gen.c (genFunction): fixed bug #1112752
2559
2560 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2561
2562         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2563
2564 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2565
2566         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2567
2568 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2569
2570         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2571
2572 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2573
2574         * device/include/c8051fxxx.h: removed these 6 files
2575         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2576
2577 2005-01-26 Raphael Neider <rneider AT web.de>
2578
2579         * src/pic16/gen.c (genAssign): fixed assignment from longs
2580           in codespace (were cut to three bytes)
2581         * (genDummyRead): implemented (except for CODESPACE...),
2582           fixed bug #1108575
2583         * src/pic16/glue.c (emitStatistics): beautified
2584         * device/lib/pic16/libm/Makefile: added include path
2585
2586 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2587
2588         * src/z80/gen.c (aopPut): fixed bug #1103902
2589
2590 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2591
2592         * device/lib/expf.c: fixed bug #1095792
2593
2594 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2595
2596         * device/lib/pic16/libm: added Math library sources
2597
2598 2005-01-24 Raphael Neider <rneider AT web.de>
2599
2600         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2601           to enable upcast to pCodeOpReg2 (there is no type tag to
2602           differenciate the two and pic16_popGet2p cast into PCOR2)
2603         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2604           (sizeof(sectNames) changed to sizeof(sectName))
2605           Both patches fix segfaults under MinGW.
2606
2607 2005-01-23 Raphael Neider <rneider AT web.de>
2608
2609         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2610           Safe_[mc]?alloc()'ed variables
2611         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2612           of (byte sized) temporaries (assign them to WREG for now)
2613         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2614           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2615           this might fix SIGSEGVs on MinGW...
2616         * src/SDCCopt.c (killDeadCode): restored original behaviour
2617           (volatile operands might get thrown away though)
2618
2619 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2620
2621         * src/pic16/gen.c: fixed bug #1106975,
2622         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2623         pointer update, INTCON is saved, global interrupts are disabled and
2624         restored after updateing TOS.
2625         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2626         * added function attribute 'shadowregs' to take advantage of shadow
2627         registers,
2628         * added function attribute 'wparam' as an alternative to the wparam
2629         pragma,
2630         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2631         user declares a non-ISR function as 'shadowregs',
2632         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2633
2634 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2635
2636         * .version: bumped version number to 2.4.8
2637         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2638         pic16 port,
2639         * device/lib/pic16/libio/i2c/: I2C module support library,
2640         * device/include/pic16/i2c.h: I2C support library header,
2641         * device/lib/pic16/libc/stdio/: standard IO support sources,
2642         * (printf_small.c): printf_small() source, supports float print,
2643         * (printf_tiny.c): printf_tiny() source, does not support floats,
2644         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2645         enable global optimizations for entire library source, other
2646         Makefiles in the source tree are also modified to reflect this,
2647         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2648         function,
2649         * doc/sdccman.lyx: updated to reflect new changes,
2650         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2651         sym->onStack if-case,
2652         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2653         sbit, idata, _idata, xdata, _xdata,
2654         * added pragma library, to link an external library, (see doc),
2655         * removed command line options, --pomit-config-words, --pomit-ivt,
2656         --pleave-reset-vector,
2657         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2658         when calling assembler to reflect memory model used, also define
2659         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2660         reflect stack model used,
2661         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2662         on stack return NULL,
2663
2664 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2665
2666         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2667           of the operands is volatile. Fixes #1020220
2668
2669 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2670
2671         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2672         * (OptimizeRegUsage): make sure that there is really no other flow where
2673           the first pCode is used
2674
2675 2005-01-22 Raphael Neider <rneider AT web.de>
2676
2677         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2678           to fix #1106967 (pCode->seq are not set up correctly)
2679
2680 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2681
2682         * src/SDCCglue.c (glue): make sure code area is declared before the
2683         static initialization area.
2684
2685 2005-01-21 Raphael Neider <rneider AT web.de>
2686
2687         * device/lib/Makefile.in: fixed test for pic16 install dir
2688         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2689           optimizations
2690         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2691           added --optimize-goto compiler switch and pragma wparam documentation
2692         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2693         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2694           and PRODH closing bug #1071770 (peephole optimizer)
2695
2696 2005-01-19 Raphael Neider <rneider AT web.de>
2697
2698         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2699           cmdLine buffers (used when calling sdcpp...) are large enough
2700           (MAX_PATH=256 truncates arguments leading to system halts when
2701           used in MinGW...)
2702         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2703         * (genUminus): rewritten to for efficiency
2704         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2705           used uninitialized in some cases)
2706         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2707           copy the third byte from the int -- now assumes 0x80 (data memory)
2708         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2709           operands (genAddLit expects the iCode's operands to swapped as
2710           well), fixed leftover bytes (crashed for short left operands)
2711         * (pic16_genMinusDec): performance improvements, removed false
2712           PIC14 emitSKPNCs
2713         * (pic16_genMinus): fixed to cope with differently sized operands
2714         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2715           for --obanksel > 1
2716         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2717         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2718           new banksel optimization
2719         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2720           analysis for temporary registers (segfaults...)
2721         * src/pic16/peeph.def: added rule
2722
2723 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2724
2725         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2726         which converts a float number to its ASCII representation
2727         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2728         functions to convert the fractional and integer part of a float to ASCII,
2729         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2730         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2731         ram
2732         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2733         _STATMEM macros,
2734         * device/include/pic16/adc.h: added GPL info,
2735         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2736         a pCodeOp as tested operand,
2737         * (genNearPointerGet): optimized bit testing, does not use
2738         intermediate register for bit value, test directly instead with
2739         BTFSS, BTFSC, works only for single bits,
2740         * (genpic16Code): dump the name of the iCode in the asm,
2741         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2742         renamed to pic16_decodeOp,
2743         * (serialRegAssign): do not allocate a temporary register for iCode
2744         sequences that test a single bit for 1/0
2745
2746 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2747
2748         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2749         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2750         access stack and frame pointers. They are initially assigned to
2751         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2752         accessing SFRs. Updated all occurences of modification of stack or
2753         frame pointer in gen.c and pcode.c,
2754         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2755         assigning of a literal value to pointers,
2756         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2757         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2758         selected
2759
2760 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2761
2762         * doc/sdccman.lyx: update documentation about stack pragma, added
2763         some info for stack memory models
2764
2765 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2766
2767         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2768
2769 2005-01-08 Raphael Neider <rneider AT web.de>
2770
2771         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2772           udata sections to fix bug #1097823
2773
2774 2005-01-05 Raphael Neider <rneider AT web.de>
2775
2776         * src/pic16/gen.c (genGenericShift): added handling of differently
2777           sized left operand and result
2778
2779 2005-01-04 Raphael Neider <rneider AT web.de>
2780
2781         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2782         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2783           to hold the condition bit)
2784         * added new version of genCmp (old code available via #define)
2785         * added new version of genShiftLeft/genShiftRight in a generic
2786           way, now supports shifting by negative values
2787         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2788           shiftCount (expected by genGenericShift)
2789         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2790         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2791           dump
2792         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2793           is an invalid literal too...)
2794
2795 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2796
2797         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2798         from Raphael Neider,
2799         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2800         for 8-bit literals. This fixes some literal operands which are sign
2801         extended to 16-bits ints when instruction needs only 8-bits.
2802
2803 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2804
2805         * device/lib/logf.c: added mcs51 assembly version
2806         * device/lib/expf.c: added mcs51 assembly version
2807         * device/lib/_logexpf.c: new shared asm code for expf and logf
2808         * device/include/math.h: add defines for assembly math library
2809         * device/lib/Makefile.in: build new _logexpf.c
2810         * device/lib/libfloat.lib: use new _logexpf.c
2811
2812 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2813
2814         * src/pic/device.c
2815         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2816           device types which have less than 0x7f registers.
2817
2818 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2819
2820         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2821
2822 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2823
2824         * device/lib/printf_fast.c: only build on supported arch.
2825         * device/lib/printf_tiny.c: only build on supported arch.
2826         * device/lib/printf_fast_f.c: only build if asm float lib
2827         * device/lib/_fsget1arg.c: only build if asm float lib
2828         * device/lib/_fsget2args.c: only build if asm float lib
2829         * device/lib/_fsnormalize.c: only build if asm float lib
2830         * device/lib/_fsreturnval.c: only build if asm float lib
2831         * device/lib/_fsrshift.c: only build if asm float lib
2832         * device/lib/_fsswapargs.c: only build if asm float lib
2833         * device/include/stdio.h: don't provide print_fast,
2834           print_fast_f, print_tiny prototypes if --xstack used
2835
2836 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2837
2838         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2839         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2840           to the SOURCES
2841
2842 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2843
2844         * device/lib/printf_fast_f.c: same as printf_fast, but
2845           with floating point enabled
2846         * device/lib/printf_fast.c: minor tweaks
2847         * device/include/stdio.h: add printf_fast_f
2848
2849 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2850
2851         * src/SDCCmain.c: make --float-reent default for mcs51
2852         * device/lib/_fsadd.c: added mcs51 assembly version
2853         * device/lib/_fssub.c: added mcs51 assembly version
2854         * device/lib/_fsmul.c: added mcs51 assembly version
2855         * device/lib/_fsdiv.c: added mcs51 assembly version
2856         * device/lib/_fseq.c: added mcs51 assembly version
2857         * device/lib/_fsneq.c: added mcs51 assembly version
2858         * device/lib/_fsgt.c: added mcs51 assembly version
2859         * device/lib/_fslt.c: added mcs51 assembly version
2860         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2861         * device/lib/Makefile.in: add _fscmp to build
2862         * device/lib/libfloat.lib: add _fscmp to build
2863
2864 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2865
2866         * device/lib/_fs2slong.c: added mcs51 assembly version
2867         * device/lib/_fs2sint.c: added mcs51 assembly version
2868         * device/lib/_fs2schar.c: added mcs51 assembly version
2869         * device/lib/_fs2ulong.c: added mcs51 assembly version
2870         * device/lib/_fs2uint.c: added mcs51 assembly version
2871         * device/lib/_fs2uchar.c: added mcs51 assembly version
2872         * device/lib/_slong2fs.c: added mcs51 assembly version
2873         * device/lib/_sint2fs.c: added mcs51 assembly version
2874         * device/lib/_schar2fs.c: added mcs51 assembly version
2875         * device/lib/_ulong2fs.c: added mcs51 assembly version
2876         * device/lib/_uint2fs.c: added mcs51 assembly version
2877         * device/lib/_uchar2fs.c: added mcs51 assembly version
2878         * device/include/float.h: added #define to select asm vs c
2879
2880 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2881
2882         * device/lib/printf_fast.c: improvements to float output
2883         * device/include/float.h: add defines for assembly float library
2884         * device/lib/_fsget1arg.c: receive 1 float arg
2885         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2886         * device/lib/_fsnormalize.c: normalize a float
2887         * device/lib/_fsreturnval.c: return float, various helper routines
2888         * device/lib/_fsrshift.c: right shift a float's mantissa
2889         * device/lib/_fsswapargs.c: swap 2 floats
2890         * device/lib/Makefile.in: build these 6 new files for mcs51
2891         * device/lib/libfloat.lib: add these 6 files to the library
2892
2893 2004-12-26 Borut Razem <borut.razem AT siol.net>
2894
2895         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2896           built by gcc 3.4.2
2897
2898 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2899
2900         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2901           and fully reentrant and register bank neutral.
2902         * device/lib/printf_fast.c: added float (not enabled by default),
2903           added compact/slower integer (also not enabled by default),
2904           improved size/speed of fast integer code, other minor changes
2905         * device/include/stdio.h, device/lib/Makefile.in,
2906           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2907
2908 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2909
2910         * src/pic16/pcode.c: declaring variables other than at the start of a
2911           block is not supported in C by VC6.
2912
2913 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2914
2915         * applied a previous patch from Raphael Neider that wasn't included
2916         in the previous commits, which fixes infinite loops within jumptable
2917         improvements,
2918         * made some fixes that previous patches introduced
2919
2920 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2921
2922         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2923         that fixes an issue with AOP_PCODE asmop's offset,
2924         * (pic16_popCopyReg): update instance field too,
2925         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2926         function of pic port,
2927         * (genCmp, genAnd, genAssign),
2928         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2929
2930 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2931
2932         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2933         variables initial values to idata section,
2934         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2935         variables in some functions. This utilizes parmBytes field of iCode
2936         structure to hold the offset of the variable in stack. (might be
2937         able to use the stack field too?)
2938         * applied patch from Raphael Neider # ### , # ###
2939         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2940         variable initial values in idata section,
2941         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2942         for static variables with initial value
2943         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2944         applied fix in while loop from Raphael Neider.
2945
2946 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2947
2948         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2949         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2950         * src/ds390/ralloc.c (serialRegAssign): spill bits
2951         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2952         * support/Util/SDCCerr.c,
2953         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2954         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2955         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2956
2957 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2958
2959         * device/include/sdcc-lib.h: inserted LGPL, added includes
2960           asm/ds390/features.h and asm/mcs51/features.h
2961         * device/include/asm/default/features.h,
2962         * device/include/asm/gbz80/features.h,
2963         * device/include/asm/z80/features.h: added empty _AUTOMEM
2964           and _STATMEM
2965         * device/include/asm/ds390/features.h,
2966         * device/include/asm/mcs51/features.h: added files with defines for
2967           _AUTOMEM and _STATMEM indicating automatic and static storage class
2968         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2969         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2970         * src/SDCCicode.c (geniCodeCast),
2971         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2972         * src/SDCCloop.c (loopInduction): removed unused variable lr
2973         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2974           to convertToFcall to include char modulo (RFE 1065037), added check
2975           if left operand is unsigned and use abs of literal value
2976         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2977           as it doesn't work after conversion from peephole.def to peephole.rul
2978         * src/mcs51/gen.c (toBoolean): added check for size,
2979           (genModOneByte): optimized code for signed char modulo a literal
2980           power of 2 (thanks to Hubert Sack),
2981           (genRRC): removed unnecessary "clr c",
2982           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2983         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2984           jump optimization,
2985           swapped rules 256.c and 256.d,
2986           extended 256.d by using new multiple checks (thanks Erik),
2987           added rules 256.e and 256.f,
2988           updated rule 261.a and 261.b to new generated code
2989         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2990
2991 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2992
2993         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2994           induction related bugs, including first part of bug #1074377
2995
2996 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2997
2998         * applied patch from bug-report #1076292,
2999         * applied patches for genAnd and Goto-optimizations for Raphael
3000         Neider,
3001         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3002         dump a less iCode information,
3003         * src/pic16/device.h (pic16_options_t): added field debgen,
3004         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3005         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3006         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3007         puclic,
3008         * (various functions): added macros FENTRY and FENTRY2 to functions,
3009         to emit function prologue,
3010         * (various functions): fixed indentation,
3011         * (genNearPointerGet): fixed loading of FSR0,
3012         * (genPackBits): applied patch from Raphael Neider to fix updating
3013         of FSR0 and touching only the modified bits,
3014         * src/pic16/genarith.c (various functions): added macros FENTRY to
3015         emit function prologue in comments,
3016         * src/pic16/pcode.h: added functions debugf2, debugf3,
3017         * src/pic16/ralloc.c: partial fix for packForPush caused
3018         segmentation fault,
3019
3020 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3021
3022         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3023           <stsp AT users.sourceforge.net> with reversed byte order
3024         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3025
3026 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3027
3028         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3029           bug #1074377
3030         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3031         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3032
3033 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3034
3035         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3036
3037 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3038
3039         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3040           conditions,
3041           (setFromConditionArgs): friendly operand parser for peephole rules,
3042           (operandBaseName, operandsNotRelated): new peephole condition
3043           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3044           architecture specific register naming into account, handles n-way
3045           comparisons, and supports quoted literals
3046         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3047
3048 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3049
3050         * src/mcs51/peeph.def: fixed bug #1076940
3051
3052 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3053
3054         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3055
3056 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3057
3058         Adding support for replacing ljmps with sjmps in jumptables
3059         generated for switch statements. For now you need to set the
3060         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3061         Now 4 algorithms for mcs51 jumptable generation are used:
3062         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3063         addresses loaded pc-relative for up to 112 cases and stack-pushing
3064         target addresses loaded with offset from dptr for up to 256 cases.
3065
3066         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3067         * src/mcs51/main.c: adapted constants for switch table generation
3068         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3069
3070 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3071
3072         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3073         * support/regression/tests/bug1057979.c: added test for bug 1073386
3074
3075 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3076
3077         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3078         compilers
3079
3080 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3081
3082         * src/pic16/device.h,
3083         * src/pic16/genarith.c,
3084         * src/pic16/glue.c,
3085         * src/pic16/main.c,
3086         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3087
3088 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3089
3090         Large cummulative patch for pic16 port.
3091         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3092         to call when a stack overflow occurs,
3093         * (malloc.h): added CVS Id tag,
3094         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3095         variable,
3096         * added libc directory. The current version of LibC contains string
3097         functions, ctype functions and macros and some functions of the
3098         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3099         be extensively tested in the future. Standard disclaimer here.
3100         Library is not automatically build yet. But one can build it by
3101         invoking 'make' inside the libc directory.
3102         * added ADC library under libio. Preliminary version yet.
3103
3104         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3105         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3106         aopForRemat() now and not by pic16_aopOp(),
3107         * (pic16_popGetTempReg): removed warning messgae when allocating
3108         temporary registers, its a buggy feature and will be removed,
3109         * (pic16_popGet): set register instance field in AOP_CRY,
3110         * (pic16_outBitC): fixed for results in size greater than 1,
3111         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3112         * (pic16_storeForReturn): optimized return of 0,
3113         * (genCmp): experimental code for new genCmp which uses PIC18's
3114         special compare&skip instructions. Initial tests fail some times
3115         with variables grater than 1 byte in size, so new code is disabled,
3116         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3117         a single bit,
3118         * (genCast): began a fix to optimize the casting of a bit to another
3119         bit, now assigning a bitfield to another bitfield will fail, sorry,
3120         * src/pic16/main.c: disabled the use of lr-support feature,
3121         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3122         * added some function prototypes, added function _debugf prototype,
3123         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3124         bits with offset (case PO_GPR_BIT),
3125         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3126         command line,
3127         * (isBankInstruction): modified to return 0 for no banking instruction,
3128         and 1 for banking instruction,
3129         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3130         caused stop processing pCodes after a inline assembly block,
3131         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3132         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3133         registers when it shouldn't,
3134         * src/pic16/ralloc.c (allocReg): add preliminary support for
3135         supporting a limited set of temporary registers,
3136
3137 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3138
3139         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3140           genDataPointerSet): ensure assignments always copy in MSB to LSB
3141           order,
3142           (loadRegFromAop): recognize CLRH optimization,
3143           (genFunction): optimize RECEIVE iCodes in reentrant functions
3144
3145 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3146
3147         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3148           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3149           selected.
3150         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3151         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3152           contiguous with data
3153
3154 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3155
3156         * device/lib/_gptrget.c (_gptrget),
3157         * device/lib/_gptrgetc.c (_gptrgetc),
3158         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3159           instead of sjmp to ret
3160         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3161           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3162
3163 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3164
3165         * .version: bumped version to 2.4.7
3166         * device/lib/_gptrget.c (_gptrget): is now _naked
3167         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3168         * device/lib/_gptrput.c (_gptrput): is now _naked
3169         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3170           (createFunction): fixed xstack
3171         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3172         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3173           or bit either,
3174           (geniCodeCritical): store original interrupt state in an iTemp bit
3175           var unless stack-auto
3176         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3177         * src/SDCCmain.c (setIncludePath): added include/target to search path
3178         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3179         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3180           prototype,
3181           (processFuncArgs): put bit vars in bit area
3182         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3183           unsaveRBank): fixed xstack,
3184           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3185           (genFunction, genEndFunction): fixed xstack,
3186           (genAssign): optimization don't walk backwards through mem
3187         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3188         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3189         * support/regression/Makefile: also make library (for stack-auto) when
3190           making "all" and added "test-mcs51-xstack-auto"
3191         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3192         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3193         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3194         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3195         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3196           make-library by MAKE_LIBRARY
3197         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3198           regression tests for xstack
3199         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3200         * support/regression/tests/critical.c: test for critical on mcs51
3201
3202 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3203
3204         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3205           built version of sdcc instead of installed version
3206
3207 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3208
3209         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3210         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3211           vprintf.c now
3212         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3213         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3214           WARNING: remove device/lib/build/z80/printf.o by hand when
3215           updating from previous build!
3216         * device/lib/z80/printf.c: updated comment
3217         * support/regression/tests/bug1057979.c: test all ports now
3218         * support/regression/tests/bug1065458.c: file added
3219
3220 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3221
3222         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3223           *_start and *_end symbols for static functions
3224
3225 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3226
3227         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3228           and search crt0.o in all library paths,
3229           (setIncludePath): proper handling of --nostdinc,
3230           (setLibPath): proper handling of --nostdlib
3231         * support/regression/Makefile,
3232         * support/regression/ports/ds390/spec.mk,
3233         * support/regression/ports/gbz80/spec.mk,
3234         * support/regression/ports/hc08/spec.mk,
3235         * support/regression/ports/mcs51/spec.mk,
3236         * support/regression/ports/mcs51-large/spec.mk,
3237         * support/regression/ports/mcs51-stack-auto/spec.mk,
3238         * support/regression/ports/z80/spec.mk: use include and lib files from
3239           built version of sdcc instead of installed version
3240         * doc/sdccman.lyx: fixed typo in --nostdinc
3241
3242 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3243
3244         * src/pic/pcode.c,
3245         * src/pic/device.c,
3246         * src/pic/ralloc.c,
3247         * src/pic/gen.c : added support to generate code for struct bit fields.
3248
3249 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3250
3251         * as/xa51/xa_version.h,
3252         * device/include/errno.h,
3253         * device/include/regc515c.h,
3254         * device/lib/_itoa.c,
3255         * device/lib/_ltoa.c,
3256         * device/lib/ser_ir_cts_rts.c,
3257         * sim/ucsim/xa.src/glob.cc,
3258         * sim/ucsim/xa.src/inst_gen.cc,
3259         * sim/ucsim/xa.src/xa_bit.cc,
3260         * sim/ucsim/xa.src/xa_sfr.cc,
3261         * sim/ucsim/z80.src/inst_dd.cc,
3262         * sim/ucsim/z80.src/inst_fdcb.cc,
3263         * support/scripts/keil2sdcc.pl,
3264         * src/pic16/pic16.dsp,
3265         * src/pic16/pic16a.dsp: corrected cvs line endings
3266         * device/lib/printf_large.c: fixed bug 1057979
3267         * src/pic16/gen.c: fixed non-C standard code
3268         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3269         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3270         * support/regression/ports/mcs51/support.c: reload T1 asap
3271         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3272           pdata use and clear idata startup behaviour
3273         * support/regression/tests/bug1057979.c: added
3274
3275 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3276
3277         * device/examples/ds390/ow390/ad26.h,
3278         * device/examples/ds390/ow390/cnt1d.h,
3279         * device/examples/ds390/ow390/crcutil.c,
3280         * device/examples/ds390/ow390/ownet.h,
3281         * device/examples/ds390/ow390/owsesu.c,
3282         * device/examples/ds390/ow390/swt12.h,
3283         * device/examples/ds390/ow390/swtoper.c,
3284         * device/examples/ds390/ow390/temp10.h,
3285         * device/examples/ds390/ow390/thermodl.c,
3286         * device/examples/ds390/tinitalk/tinitalk.dsp,
3287         * device/examples/ds390/tinitalk/tinitalk.dsw,
3288         * device/examples/mcs51/clock/hw.h,
3289         * device/examples/mcs51/simple2/go.bat,
3290         * device/examples/serialcomm/windows/serial.h,
3291         * device/examples/xa51/dummy.c,
3292         * device/examples/xa51/hello.c,
3293         * device/include/80c51xa.h,
3294         * device/include/at89x051.h: corrected cvs line endings
3295
3296 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3297
3298         * src/pic16/main.c (options): added command line --gstack, to trace
3299         stack over/under flows,
3300         * added pragma 'wparam' to allow passing first byte of function
3301         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3302         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3303         call to __gstack_test function and sets up the symbol as extern,
3304         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3305         * popaop): added call to pic16_testStackOverflow,
3306         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3307         wparamList list,
3308         * (genCall, genPcall): now all parameters are passed via stack
3309         except in functions that are pass to wparam pragma in which WREG is
3310         used too,
3311         * (genPcall): REENTRANT flag is checked to see if variable prototype
3312         contains reentrant keyword, don't call a non-reentrant function, via
3313         a reentrant function pointer or vice versa, functions are never
3314         passed via WREG,
3315         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3316         D.Winkler,
3317         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3318         SIGSEGV when accessing a NULL register stucture,
3319         * (pic16_printGPointerType): modified to handle UPPER modifier for
3320         function initializers, changed prototype of function to simpler one,
3321         * (pic16_printIvalFuncPtr): check to see if function is already
3322         added in externs list,
3323         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3324         optimized a move from W to SFR with a move to the same register
3325         later after a CALL,
3326         * device/lib/pic16/debug: NEW directory, contains debug features
3327         which are enabled when linking with libdebug.lib, currently command
3328         line option --gstack enables stack pointer tracing for over/under
3329         flow, corresponding sources are in debug/gstack
3330
3331 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3332
3333         * doc/sdccman.lyx: updated SDCC version,
3334         * (PIC16 port): update list of command line options,
3335         * src/pic16/device.h (structure pic16_options_t): added field gstack
3336         to enable stack overflow tracing on push/pops,
3337         * src/pic16/device.c (statistics structure): added statistics
3338         structure,
3339         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3340         pic16_dump_int_registers): increase statistics counters for each
3341         * variable which is encountered
3342         * (pic16_dump_usection): emit each .udata variable to its own udata
3343         section,
3344         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3345         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3346         parameters via stack, otherwise use old scheme,
3347         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3348         assembler output file,
3349         * src/pic16/main.c: added command line options --gstack to enable
3350         push/pop tracing for stack overflow,
3351         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3352         instructions): added size of each instruction,
3353         * (pic16_countInstruction): estimate size of instructions in
3354         the_pFile list, inline assembly blocks are not counted,
3355         * (pic16_FixRegisterBanking): trace previous register usage, when
3356         banksel optimizations is greater than 0, don't emit a redudant
3357         banksel directive,
3358
3359 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3360
3361         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3362         * src/pic16/ralloc.c : applied same fix for pic16.
3363         * src/pic/gen.c : tidied it up a little.
3364
3365 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3366
3367         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3368         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3369
3370 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3371
3372         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3373
3374 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3375
3376         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3377         non-reentrant function __modsint in the interrupt function (thus
3378         corrupting math operations during serial I/O)
3379         * device/lib/ser_ir.c: as above, changed buffersize
3380         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3381         256.c,d for zeroing
3382         * doc/Makefile: added option -t for rsync
3383
3384 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3385
3386         * src/SDCCast.h (struct ast),
3387         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3388
3389 2004-10-20 Borut Razem <borut.razem AT siol.net>
3390
3391         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3392         package
3393
3394 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3395
3396         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3397         makefile targets,
3398         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3399         support functions to replace long sequences of MOVFF's from access
3400         bank registers to stack and vice versa,
3401         * src/pic16/device.h: added new field opt_flags, where optimization
3402         flags can be set to enable certain features,
3403         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3404         * pBlock, (genFunction, genEndFunction): surroung loop for
3405         saving/loading used registers in stack with PC_INFO pCodes,
3406         INF_LREGS. Code in between can then be optimized by pCode optimizer
3407         to support function calls,
3408         * (genDataPointerSet): fixed bug which loaded float fields in
3409         structures with corrupt data,
3410         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3411         in a standard way debug info on stderr. Feature used for developing
3412         and debugging only,
3413         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3414         obsolete chunks of code,
3415         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3416         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3417         * pic16/src/pcode.c (pic16_newpCodeInfo,
3418         * (pic16_newpCodeOpLocalRegs),
3419         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3420         feature,
3421         * (pic16_pCodeConstString): printing of the initial value of a
3422         symbol as a comment is inhibited since parsing was already done by
3423         copyStr and output is corrupt,
3424         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3425
3426 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3427
3428         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3429
3430 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3431
3432         * as/mcs51/lkarea.c: removed old K&R style,
3433           (lnksect): changed check on boundary error,
3434           (lnksect2): changed check on boundary error,
3435           (lnksect2): extend XSTK to end of page if size = 1
3436         * as/mcs51/lkmain.c: removed old K&R style,
3437           (Areas51): create l_IRAM symbol
3438         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3439         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3440           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3441         * device/lib/_mullong.c: added version to be compiled with xstack
3442         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3443         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3444         * device/lib/mcs51/crtxstack.asm: fixed comment
3445         * src/SDCCglue.c: maxInterrupts defaults to 0,
3446           (emitMaps): added pdata,
3447           (createInterruptVect): (re)moved default,
3448           (glue): added pdata,
3449           (glue): moved __start__xstack to XSTK with default size 1
3450         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3451           and options.float_rent when options.stackAuto is set,
3452           (linkEdit): only write XDATA_NAME if provided on command line
3453         * src/SDCCmem.h,
3454         * src/SDCCmem.c: added pdata
3455         * src/port.h: added pdata_name to PORT
3456         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3457           (saveRegisters, unsaveRegisters): removed usage of B,
3458           (genMinus): fixed accumulator clash,
3459           (genJumpTab): added comment, this needs another look
3460         * src/mcs51/gen.c: added check for "B in use" paranoia,
3461           added pushB() and popB()
3462         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3463           chance
3464         * src/avr/main.c,
3465         * src/ds390/main.c,
3466         * src/hc08/main.c,
3467         * src/mcs51/main.c,
3468         * src/pic/main.c,
3469         * src/pic16/main.c,
3470         * src/xa51/main.c,
3471         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3472           added PSEG (PAG,XDATA) or NULL to port specifier
3473         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3474         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3475           (_mcs51_genInitStartup): removed __start__xstack equ,
3476           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3477         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3478         * src/z80/gen.c (_rleAppend): fixed warnings
3479         * support/regression/tests/zeropad.c: added pdata test
3480         * .version: bumped to 2.4.6
3481
3482 2004-10-17 Borut Razem <borut.razem AT siol.net>
3483
3484         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3485         as a part of nightly build
3486
3487 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3488
3489         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3490         WREG holds the first byte function parameters,
3491         * (aopForSym): take special case for symbols which are in FARSPACE
3492         but in CODESPACE too,
3493         * (assignResultValue): modified to take into account _G.useWreg,
3494         * (genCall): don't use wreg for parameter passing when function is
3495         declared as reentrant, too, added optimization INCF to stack
3496         pointer when stack parameter count is 1,
3497         * (genFunction, genEndFunction): refurnished and fixed to not using
3498         wreg for passing parameters when function has varargs or is
3499         reentrant, fixed bug with symbol name compare for generating
3500         functions in absolute address,
3501         * (pic16_storeForReturn): refurnished,
3502         * (genCmp): began writing a new version of the function, not ready
3503         yet, therefore it is disabled,
3504         * (genAssign): do not read code memory when assigning a function to
3505         a pointer function,
3506         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3507         array of characters, not pointer,
3508         * (pic16initialComments): in debug mode emit an .ident directive for
3509         the assembler,
3510         * (_process_pragma): emit a new warning type (internal to pic16)
3511         when setting stack to default length, emit a similar warning when
3512         placing a function at absolute address and address is not word aligned
3513         * (_pic16_parseOptions): added 'return TRUE' statement,
3514         * (_pic16_linkEdit): if compiling a source, then add the source's
3515         file object, first in the list of objects to link,
3516
3517 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3518
3519         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3520         * src/pic/main.c : removed VC warning.
3521         * src/pic/gen.c : changed comment.
3522
3523 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3524
3525         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3526         reference to a deprecated symbol _GPTRREG was causing failure to
3527         link. Thanks G. M. Gallant for the info.
3528
3529 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3530
3531         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3532         comments for Bugs item #954788.
3533
3534 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3535
3536         * src/pic16/device.c (pic16_dump_gsection,
3537         * pic16_groupRegistersInSection): handle symbols declared to be in
3538         access bank differently,
3539         * src/pic16/gen.c (struct _G): added field resDirect,
3540         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3541         send values read from stack directly to result and don't allocate
3542         temporary values,
3543         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3544         same registers,
3545         * (pic16_sameRegsOfs): NEW,
3546         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3547         free because they were not allocated from temporary pool,
3548         * pic16_popRegFromString): workaround to fix a problem with
3549         allocating variables twice or never,
3550         * (genGenPointerGet): using PRODL instead of FSR0H,
3551         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3552         instead of FSR0H,
3553         * (genAssign): take advantage of the _G.resDirect flag,
3554         * (genCast): around line 11844, use mov2f instead of directly
3555         MOVFF'ing between operands to account for literal values,
3556         * src/pic16/genutils.c: some new debug functions for gpsim have been
3557         added,
3558         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3559         float with integer part only,
3560         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3561         place variables in access bank
3562         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3563         updated sources to reflect recent changes in gen.c
3564
3565 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3566
3567         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3568         sources that searched for headers in installation path, now the
3569         device/include/pic16 is used,
3570         * src/pic16/glue.c (pic16glue),
3571         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3572         .line directives if not in debug mode, this suppresses assembler's
3573         warnings for ignored directives
3574
3575 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3576
3577         * src/port.h: made reset_regparms prototype void parameter explicit.
3578         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3579         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3580         * doc/sdccman.lyx: documented warning disabling and how to use
3581           printf_large to make it print floats.
3582         * device/include/stdbool.h: NEW
3583         * device/lib/_atof.c,
3584         * device/lib/_divuint.c,
3585         * device/lib/_divulong.c,
3586         * device/lib/expf.c,
3587         * device/lib/printf_large.c,
3588         * device/lib/sincosf.c,
3589         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3590         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3591           a completely reentrant lib.
3592
3593 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3594
3595         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3596         * device/include/pic16/stdio.h: fixed bug with colon
3597
3598 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3599
3600         * device/include/pic16/stdio.h,
3601         * device/include/pic16/stdlib.h,
3602         * device/include/pic16/math.h: NEW
3603         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3604         declared as _naked to reduce overhead
3605         * device/lib/Makefile.in (target port-specific-objects-pic16):
3606         changed * to *.* so to ignore the CVS directory,
3607         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3608         stacked variables back in stack,
3609         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3610         corruption
3611
3612 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3613
3614         * .version: bumped version number to 2.4.5
3615         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3616         * support/Util/SDCCerr.c (messages structure): added entry for
3617         W_POSSBUG2
3618
3619         Large cumulative patch for pic16 port and libraries.
3620         * device/include/pic16/sdcc-lib.h,
3621         * device/include/pic16/stdarg.h,
3622         * device/include/asm/pic16/features.h,
3623         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3624         * device/include/pic16/float.h: changes reentrant keyword with
3625         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3626         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3627         updated target build-libraries to include objects from gptr,
3628         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3629         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3630         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3631         all function headings,
3632         * src/SDCCmain.c: added global parameter userIncDirsSet,
3633         * (parseCmdLine): when option -I is encountered add directory to
3634         userIncDirsSet too,
3635         * src/version.awk: added space between control and long,
3636         * src/pic16/NOTES: added some notes for the port,
3637         * src/pic16/gen.c: added prototype for mov2fp function,
3638         * (fReturnpic16[]): properly named return value registers,
3639         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3640         * (aopForSym): added code to handle symbols with onStack flag set,
3641         symbols onStack are allocated PTRSIZE bytes,
3642         * (aopFreeAsmop): handles special case where asmops are stack objects,
3643         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3644         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3645         added argument lock to trace flaws in allocating temporary registers
3646         when developing port,
3647         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3648         * (pic16_popRegFromString): reenabled allocating a direct register
3649         from string,
3650         * (assignResultValue): various beautifications,
3651         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3652         referenced function argument,
3653         * (genIpush): reenabled to allow stacked arguments, handles only
3654         ic->parmPush iCodes,
3655         * (genCall, genPcall): major changes to allow for variable argument
3656         functions, fixed a bug with falsely restoring stack pointer after
3657         returning from call,
3658         * (genFunction): pending code for critical function,
3659         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3660         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3661         * (genNearPointerGet): fixed bug with indirect reading, was always
3662         reading from INDF0
3663         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3664         pointers,
3665         * (genAddrOf): rewrote code to take address of a stacked function parameter
3666         * (genCast): fixed casting to generic pointer type,
3667         * src/pic16/gen.h: added AOP_STA,
3668         * (struct asmop): added field stk,
3669         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3670         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3671         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3672         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3673         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3674         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3675         generic pointers,
3676         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3677         and library paths,
3678         * (pic16_port structure): generic pointer size is set to 3,
3679         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3680         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3681         compiler warning,
3682         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3683         operand is an iTemp,
3684
3685 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3686
3687         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3688         * debugger/mcs51/simi.c: addapt new syntax of s51
3689
3690 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3691
3692         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3693         * src/pic16/pcode.c: commented out some calls to free() in order to
3694         fix bug #989576,
3695
3696 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3697
3698         * src/SDCCicode.h,
3699         * src/SDCCicode.c (isiCodeInFunctionCall),
3700         * src/avr/ralloc.c (selectSpil),
3701         * src/pic/ralloc.c (selectSpil),
3702         * src/pic16/ralloc.c (selectSpil),
3703         * src/ds390/ralloc.c (selectSpil),
3704         * src/hc08/ralloc.c (selectSpil),
3705         * src/xa51/ralloc.c (selectSpil),
3706         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3707         stack in the middle of a function call sequence (fixes bug #1020268)
3708         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3709         costs associated with the minimum switch case.
3710
3711 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3712
3713         * src/SDCC.lex: fixed bug #1030549
3714
3715 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3716
3717         * src/SDCCcse.h (struct cseDef),
3718         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3719         over a function call if the CSE is derived from a symbol whose
3720         address has been taken (fixes bug #1029883)
3721         * support/regression/tests/bug-1029883: a new regression test for
3722         this bug
3723
3724 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/hc08/gen.c (emitinline): fixed bug #1029778
3727         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3728         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3729         and starts toward RFE #905167)
3730
3731 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3732
3733         * src/pic16/gen.c (mov2f): New function to move an operand to
3734         another without considering if it is a literal or a register,
3735         * (pic16_sameRegs): don't check if they are both AOP_REG,
3736         * (AccRsh): removed andmask=0 lines,
3737         * (genLeftShift): duplicated to be improved in future versions,
3738         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3739         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3740         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3741         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3742         * (insertBankSwitch): fixed inserting banksel directives algorithm
3743         for instructions that follow a skip instruction, this fixes a report
3744         for broken subtraction code generation,
3745         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3746         iCode is a left op, just in case result and right share the same
3747         registers
3748
3749 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3750
3751         * src/hc08/main.c,
3752         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3753         preservation of HX
3754         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3755         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3756         on 2004-09-12; it was buggy
3757
3758 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3759
3760         * src/SDCCsymt.h: removed RESULT_CHECK
3761         * src/SDCCast.c,
3762         * src/SDCCglue.c,
3763         * src/SDCCval.c,
3764         * src/pic/glue.c,
3765         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3766
3767 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3768
3769         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3770         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3771         configuration values no more rejected by compiler, they are assigned
3772         to configuration registers with a warning message instead,
3773         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3774         the for-loop so last conf register is emitted too,
3775         * (_pic16_initPaths): link library libsdcc.lib by default,
3776         * (_hasNativeMulFor): modified test for multiplication according to
3777         Raphael Neider's remarks. Integer multiplication is also done with
3778         support functions,
3779         * device/include/pic16/pic18fregs.h: corrected type error in while
3780         testing and including 18f6720 header file
3781
3782 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3783
3784         * src/pic16/device.h (pic16_options): removed field use_crt,
3785         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3786         until an optimization to handle single bits is added,
3787         * (pic16_loadFSR0): moved before genUnpackBits,
3788         * (genAnd): some white lines removed,
3789         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3790         leave_reset flags in pic16_options when using crt modules,
3791
3792 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3793
3794         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3795           for bugs 898889 & 979599. Also used some safer print instructions.
3796
3797 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3798
3799         * src/pic16/device.h (pic16_options_t): added field use_crt,
3800         crt_name, no_crt,
3801         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3802         catch a probable future bug,
3803         * src/pic16/gen.c: aopIdx function commented out,
3804         * (genAssign): commented out old code which used aopIdx,
3805         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3806         code, added if conditionals to take into account the --use-crt
3807         command line options,
3808         * src/pic16/main.c (pic16_optionsTable): added new command line
3809         options, --use-crt= and --no-crt,
3810         * (_pic16_linkEdit): now the proper crt object is added in the
3811         linker command line except than when --no-crt is specified,
3812         * src/pic16/pcode.c,
3813         * src/pic16/pcode.h: added some structures and functions for a new
3814         optimization scheme to compansate for instruction overhead between
3815         same iCodes, this scheme is currently under development and is not
3816         working in any way,
3817         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3818         to && operator,
3819         * device/lib/pic16/startup/crt0i.c,
3820         * device/lib/pic16/startup/crt0iz.c: added global char variable
3821         __uflags to force the generation of an idata section
3822
3823 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3824
3825         * doc/Makefile,
3826         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3827         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3828
3829 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3830
3831         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3832         Frieder) and clarified the default code optimization mode
3833
3834 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3835
3836         * src/SDCC.lex (doPragma, process_pragma),
3837         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3838         "opt_code_size", and "opt_code_balanced"
3839         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3840         regrouped options by category, added support for category headers
3841         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3842         and "--opt-code-size"
3843         * doc/sdccman.lyx: documented these new options and pragmas
3844         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3845         preference into account
3846
3847 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3848
3849         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3850           geniCodePreDec): Fixed bug 904237 by generating a warning
3851         * src/SDCCerr.h,
3852         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3853
3854 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3855
3856         * src/pic/device.c : When no max ram set validate full memory range.
3857         * src/pic/pcode.c,
3858         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3859
3860 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3861
3862         * device/lib/_gptrget.c,
3863         * device/lib/_gptrput.c: updated comment
3864         * device/lib/calloc.c,
3865         * device/lib/free.c,
3866         * device/lib/malloc.c,
3867         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3868         * src/SDCCcse.c (cseBBlock),
3869         * src/SDCCicode.c (printOperand, geniCodeArray),
3870         * src/SDCCicode.h (struct operand): fixed bug 868103
3871         * support/regression/tests/bug-868103.c: added
3872         * src/SDCCast.c (searchLitOp),
3873         * src/SDCCcse.h (struct cseDef),
3874         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3875         * src/SDCCicode.h (struct operand),
3876         * src/SDCCsymt.h (struct sym_link),
3877         * src/avr/gen.c (hasInc),
3878         * src/ds390/gen.c (hasInc),
3879         * src/hc08/gen.c (genPlusIncr, hasInc),
3880         * src/mcs51/gen.c (hasInc),
3881         * src/pic16/glue.c (pic16_printIvalChar),
3882         * src/pic16/ralloc.c (regWithIdx),
3883         * src/xa51/gen.c (hasInc) : removed warnings
3884         * src/SDCCast.c (createBlock): added comment ???
3885         * src/hc08/ralloc.c: updated comments
3886
3887 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3888
3889         * doc/sdccman.lyx: updated section on switch statements, added
3890         section about semaphore locking
3891         * doc/Makefile: added option -info for latex2html
3892         * device/lib/_gptrget.c,
3893         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3894
3895 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3896
3897         * src/pic/device.h,
3898         * src/pic/device.c,
3899         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3900          maxram is less than 0x100.
3901
3902 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3903
3904         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3905
3906 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3907
3908         * src/port.h,
3909         * src/mcs51/main.c,
3910         * src/ds390/main.c,
3911         * src/z80/main.c,
3912         * src/hc08/main.c,
3913         * src/pic/main.c,
3914         * src/pic16/main.c,
3915         * src/avr/main.c,
3916         * src/xa51/main.c
3917         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3918         a jump table is the best form for a switch statement, including
3919         automatic insertion of missing cases to make the case range
3920         continuous. Developed in collaboration with Frieder Ferlemann.
3921
3922 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3923
3924         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3925         accumulator result if it needs sign extension
3926
3927 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3928
3929         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3930
3931 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3932
3933         * device/lib/gbz80/printf.c,
3934         * device/lib/z80/printf.c: removed define for NULL
3935
3936 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3937
3938         * as/xa51/xa_link.c,
3939         * device/examples/ds390/ow390/ad26.c,
3940         * device/examples/ds390/ow390/cnt1d.c,
3941         * device/examples/ds390/ow390/counter.c,
3942         * device/examples/ds390/ow390/ds2480.h,
3943         * device/examples/ds390/ow390/ds2480ut.c,
3944         * device/examples/ds390/ow390/findtype.c,
3945         * device/examples/ds390/ow390/gethumd.c,
3946         * device/examples/ds390/ow390/owllu.c,
3947         * device/examples/ds390/ow390/ownetu.c,
3948         * device/examples/ds390/ow390/swt12.c,
3949         * device/examples/ds390/ow390/swtloop.c,
3950         * device/examples/ds390/ow390/temp.c,
3951         * device/examples/ds390/ow390/temp10.c,
3952         * device/examples/ds390/ow390/thermo21.c,
3953         * device/examples/ds390/ow390/tinilnk.c,
3954         * device/examples/ds390/ow390/tstfind.c,
3955         * device/examples/serialcomm/windows/serial.cpp,
3956         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3957         * device/include/reg51.h: fixed line endings for cvs
3958
3959 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3960
3961         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3962         packRegsForAccUse, packRegisters): new accumulator register
3963         packing algorithm
3964         * support/regression/ports/hc08/support.c (_putchar): suppress
3965         warning of unused variable
3966         * src/SDCCicode.c: added SWAP entry to codeTable
3967
3968 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3969
3970         * device/lib/sprintf.c: forgot to add this file before previous commit
3971
3972 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3973
3974         * src/pic16/gen.c (genPackBits): added operand right in function
3975         parameters, load result directly if p_type is POINTER (that is
3976         called by genNearPointerSet)
3977         * (genUnPackBits): added operand left in function parameters,
3978         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3979         FSR0 if accessing bitfields,
3980
3981 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3982
3983         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3984           _print_format; updated printf, sprintf, vsprintf
3985         * device/include/asm/default/features.h: corrected comment/define
3986         * device/lib/Makefile.in: added sprintf.c
3987         * device/lib/libsdcc.lib: added sprintf module
3988         * device/lib/printf_large.c,
3989         * device/lib/vprintf.c,
3990         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3991           into these 3 files
3992         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3993         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3994         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3995           hc08 test
3996         * support/regression/tests/zeropad.c: define idata as data for hc08
3997
3998 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3999
4000         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4001         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4002         labels are referenced at least once (even if a reference is not found)
4003         * src/hc08/gen.c (emitcode): set isComment flag for comments
4004         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4005         loads), rules 6a..6b (optimize jumps to return)
4006
4007 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4008
4009         * device/lib/acosf.c (acosf),
4010         * device/lib/asinf.c (asinf),
4011         * device/lib/atanf.c (atanf),
4012         * device/lib/ceilf.c (ceilf),
4013         * device/lib/cosf.c (cosf),
4014         * device/lib/coshf.c (coshf),
4015         * device/lib/cotf.c (cotf),
4016         * device/lib/fabsf.c (fabsf),
4017         * device/lib/floorf.c (floorf),
4018         * device/lib/log10f.c (log10f),
4019         * device/lib/logf.c (logf),
4020         * device/lib/sinf.c (sinf),
4021         * device/lib/sinhf.c (sinhf),
4022         * device/lib/sqrtf.c (sqrtf),
4023         * device/lib/tanf.c (tanf),
4024         * device/lib/tanhf.c (tanhf),
4025         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4026         replaced all instances of "reentrant" in the library functions
4027         defined in math.h with this macro.
4028         * support/regression/tests/float_trans.c: reenabled test for hc08
4029
4030 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4031
4032         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4033         erroneously deleted
4034
4035 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4036
4037         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4038         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4039         multi-byte volatile operands are used
4040         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4041         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4042         initialization to area GSINIT0 so that it would always precede
4043         any static initializers in GSINIT
4044         * support/regression/tests/zeropad.c: fixed idata define for hc08
4045         * support/regression/tests/bug-927659.c,
4046         * support/regression/tests/float_trans.c: disabled tests for hc08
4047         pending missing library routines
4048         * .version: increased version number to 2.4.4 - hc08 port now passes
4049         regression tests
4050
4051
4052 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4053
4054         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4055         * Makefile.common.in,
4056         * as/Makefile,
4057         * as/hc08/Makefile.in,
4058         * as/mcs51/Makefile.in,
4059         * as/z80/Makefile.in,
4060         * debugger/mcs51/Makefile.in,
4061         * device/include/Makefile.in,
4062         * device/lib/Makefile.in,
4063         * doc/Makefile,
4064         * link/Makefile,
4065         * link/z80/Makefile.in,
4066         * packihx/Makefile.in,
4067         * sim/ucsim/main_in.mk,
4068         * sim/ucsim/avr.src/Makefile.in,
4069         * sim/ucsim/doc/Makefile.in,
4070         * sim/ucsim/gui.src/serio.src/Makefile.in,
4071         * sim/ucsim/hc08.src/Makefile.in,
4072         * sim/ucsim/s51.src/Makefile.in,
4073         * sim/ucsim/xa.src/Makefile.in,
4074         * sim/ucsim/z80.src/Makefile.in,
4075         * src/Makefile.in,
4076         * support/cpp2/Makefile.in,
4077         * support/librarian/Makefile,
4078         * support/makebin/Makefile: added DESTDIR to the install path proposed
4079         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4080         * doc/sdccman.lyx: added DESTDIR documentation
4081
4082 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4083
4084         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4085         instruction for interrupt handlers, use fast returns when returning
4086         from high priority interrupts
4087
4088 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4089
4090         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4091         code generation
4092         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4093         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4094         bugs, ported much of Bernhard's code from mcs51
4095         * src/mcs51/gen.c (genSend),
4096         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4097         than one when calling a reentrant function
4098         * device/lib/_mullong.c: defined an alternate struct layout for big
4099         endian ports (hc08)
4100
4101 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4102
4103         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4104         test
4105
4106 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4107
4108         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4109         are sane and complete before asking the port its prefered parameter
4110         passing method (fixes bug #1017633)
4111         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4112         and _ret3
4113
4114 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4115
4116         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4117         problem in bitfields >= 8 bits.
4118
4119 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4120
4121         * src/SDCCsymt.c: undid changes that were not meant to be committed
4122
4123 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4124
4125         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4126
4127 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4128
4129         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4130           copied and wrong bit got inverted
4131
4132 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4133
4134         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4135         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4136         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4137         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4138         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4139         assignments to bitfields at known addresses
4140         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4141         reads from bitfields at known addresses
4142         * src/hc08/ralloc.c (packRegisters),
4143         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4144         genhc08Code): optimize pointer get values used as conditionals
4145         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4146         and branch
4147
4148 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4149
4150         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4151         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4152         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4153         as conditionals
4154
4155 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4156
4157         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4158
4159 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4160
4161         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4162         related problems
4163
4164 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4165
4166         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4167
4168 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4169
4170         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4171         mcs51 port
4172
4173 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4174
4175         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4176
4177 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4178
4179         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4180         cases use more compact code.
4181
4182 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4183
4184         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4185
4186 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4187
4188         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4189
4190 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4191
4192         * src/SDCCsymt.h,
4193         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4194         parameter of changePointer() from symbol* to sym_link*
4195         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4196         * src/SDCCsymt.c (compareType): void* type is castable to other
4197         pointers, but not necesarily an exact match.
4198         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4199         is no longer blindly treated as an exact match.
4200         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4201
4202 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4203
4204         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4205
4206 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4207
4208         * src/pic/gen.c,
4209         * src/pic/pcode.c,
4210         * src/pic/ralloc.h,
4211         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4212
4213 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4214
4215         * src/pic/device.c,
4216         * src/pic/device.h,
4217         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4218
4219 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4220
4221         * src/mcs51/gen.c (emitcode): fixed bug #992819
4222
4223 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4224
4225         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4226           there's no need to make it worse
4227
4228 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4229
4230         * src/mcs51/ralloc.c (deassignLR),
4231         * src/ds390/ralloc.c (deassignLR),
4232         * src/hc08/ralloc.c (deassignLR),
4233         * src/z80/ralloc.c (deassignLR),
4234         * src/pic/ralloc.c (deassignLR),
4235         * src/pic16/ralloc.c (deassignLR),
4236         * src/avr/ralloc.c (deassignLR),
4237         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4238         rlivePoint): fixed another part of bug #971834
4239
4240 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4241
4242         * src/z80/main.c: enabled "critical" keyword
4243         * src/z80/mappings.i,
4244         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4245         functions (fixes bug #979646)
4246         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4247
4248 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4249
4250         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4251           such as c:\mydir.
4252
4253 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4254
4255         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4256           doesn't disable too much optimizations
4257
4258 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4259
4260         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4261
4262 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4263
4264         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4265
4266 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4267
4268         * src/pic/gen.c tidied up tabs
4269         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4270         * src/pic/main.c tidied up tabs
4271         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4272         * src/pic/pcoderegs.c tidied up tabs
4273         * src/pic/ralloc.c tidied up tabs
4274
4275 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4276
4277         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4278         to S_FIXED for pic16 port and when symbol is not in level 0,
4279         allocate for S_REGISTER storage class and pic16 port, too,
4280         * src/pic16/device.h: prototype for checkSym,
4281         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4282         * (pic16_assignConfigWordValue): test the value and the mask to
4283         validate that the value is suitable for the configuration word,
4284         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4285         collect extern declared symbols, don't emit symbol twice, check
4286         first if symbol is in publics set first,
4287         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4288         * added command line '--fstack' which enables an experimental
4289         feature for stack access, too buggy to be used yet...
4290         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4291         * (pic16_allocDirReg): when register has storage class S_REGISTER
4292         allocate in pic16_dynAccessRegs,
4293         * device/include/pic16/pic18f????.h: modified configuration word
4294         naming convention, words started as CONFIG0H but should be CONFIG1H
4295
4296 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4297
4298         * device/include/mcs51reg.h: fixed bug 970993
4299
4300 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4301
4302         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4303         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4304         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4305         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4306         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4307         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4308           error/warning numbers,
4309           added function setWarningDisabled()
4310         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4311         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4312           _memcmp.c _memmove.c calloc.c realloc.c free.c
4313         * support/regression/tests/malloc.c: added tests for new functionality
4314         * support/regression/tests/zeropad.c: added tests for truncated initializers
4315           and initialized char arrays starting with '\x0'
4316         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4317
4318 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4319
4320         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4321
4322 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4323
4324         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4325         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4326         peephole 177.e. Thanks to anonymous
4327
4328 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4329
4330         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4331         function isn't used in the source but referenced as a
4332         variable initializer then declare it as extern in .asm file
4333
4334 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4335
4336         * .version: increased version number to 2.4.3
4337
4338         Adding version extension according to ChangeLog CVS revision
4339         * src/Makefile.in (target all): added dependency 'version.h'
4340         * (rule version.h): added rule to create version.h from ChangeLog,
4341         * (rule dep): added dependency version.h,
4342         * src/version.awk: AWK script to create version.h
4343         * src/SDCCdwarf2.c (dwWriteModule),
4344         * src/SDCCglue.c (initialComments),
4345         * src/SDCCmain.c (printVersionInfo): modified to write after
4346         version string the version extension number,
4347         * src/SDCCutil.c: included "version.h"
4348         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4349         number,
4350         * src/SDCCutil.h: added prototype for getBuildNumber
4351
4352         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4353         includeDirsSet, too,
4354         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4355         const char [] is found in function prototype...
4356
4357         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4358         moving to WREG with source is already in WREG,
4359         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4360         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4361         * (aopForSym): stack'ed symbols are partially supported, added
4362         if-clause to support symbols in FARSPACE,
4363         * (sameRegs): added test for AOP_ACC to see if registers are same,
4364         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4365         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4366         * (pic16_popRegFromString): will not allocate a new register if it
4367         doesn't find one by name, bug may have introduced...
4368         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4369         * (genIpush): revived to use pic16 port's stack,
4370         * (genAddrOf): added incomplete case for stack'ed operand,
4371         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4372         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4373         can handle multibyte operands,
4374         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4375         * (pic16initialComments): added message for MPLAB compatibility
4376         mode enabled,
4377         * src/pic16/main.h: prototype for pic16_mplab_comp,
4378         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4379         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4380         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4381         because of increased complexity of procedure,
4382         * (_process_pragma): stack pragma changed to format 'stack pos len',
4383         emit symbol '_stack_end' to conform with gplink,
4384         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4385         to search for register,
4386         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4387         PO_GPR_REGISTER,
4388         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4389         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4390         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4391         case for PO_GPR_REGISTER,
4392         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4393         dies, the new era is ahead !...
4394         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4395         pic16_dynInternalRegs,
4396         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4397         * (pic16_allocDirReg): minor optimizations and bug fixes,
4398         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4399
4400         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4401         load stack and frame pointer with address of 'stack_end' symbol
4402
4403 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4404
4405         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4406         without source code but only variable initializers
4407
4408 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4409
4410         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4411         external are not declared as extern to reduce overhead while linking
4412
4413 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4414
4415         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4416
4417 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4418
4419         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4420           Yee Keat for the patch
4421         * src/SDCCast.c (decorateType): fixed bug #979599
4422         * src/ds390/gen.h: removed local fReturnSizeDS390
4423         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4424         * src/ds390/gen.c (genAnd, genOr, genXor),
4425         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4426
4427 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4428
4429         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4430         add relFilesSet to $3, manipulate $2 to handle linking of object
4431         files without source files in command line,
4432         * device/include/pic16 (all headers): added ID location macros,
4433         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4434         entries for ID location bytes,
4435         * (pic16_assignIdByteValue): NEW,
4436         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4437         added field dumpcalltree to pic16_options_t,
4438         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4439         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4440         emitting rFalseIfx label after check_carry label,
4441         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4442         pic16_emitDIRegs), NEW
4443         * (pic16glue): dump .calltree file when option --calltree found,
4444         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4445         * (_pic16_genAssemblerPreamble): emit ID locations after
4446         configuration registers,
4447         * (pic16_linkCmd): modifications of the link command,
4448         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4449         * (pic16_pCodeInitRegisters): don't init stack registers,
4450         * (pic16_findPrevInstruction): fixed bug,
4451         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4452         bug with immediate registers,
4453         * (buildCallTree): traces stack push and pop,
4454         * (pct2): dump also stack usage for each function,
4455         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4456         * (pic16_allocDirReg): various modifications,
4457         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4458         fixed to 1,
4459
4460 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4461
4462         * src/pic16/pcode.c: removed buggy double colon
4463
4464 2004-07-01 Borut Razem <borut.razem AT siol.net>
4465
4466         * support/scripts/sdcc.nsi: added include/pic16 to setup
4467
4468 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4469
4470         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4471         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4472         target 'clean',
4473         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4474         specific command line arguments. Also added sample lkr script
4475         for placing a variable at a specific memory bank.
4476         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4477         at a specific memory bank,
4478         * (pic16_dump_isection): fixed bug which caused string literals to
4479         be omitted when dumping idata section,
4480         * (pic16_groupRegistersInSection): added code to handle registers
4481         in specific memory banks,
4482         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4483         public, all references are renamed too,
4484         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4485         AOP_DPTR2,
4486         * (pic16_storeForReturn): added case to handle when dest is WREG,
4487         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4488         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4489         pic16_rel_udata, check to see if that register is marked as being
4490         a member of a specific memory bank,
4491         * (pic16_printIvalCharPtr): added code to add string literals either
4492         to code or the idata sections,
4493         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4494         also accept the 'udata' pragma,
4495         * src/pic16/main.h: new structure types sectName and sectSym
4496         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4497         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4498         * (pic16_findPrevInstruction): fixed, it returned nothing,
4499         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4500         instruction combinations,
4501         * (pic16_FixRegisterBanking): heavily reorganised,
4502         * (pic16_AnalyzeBanking): if generating banksel directives is
4503         disabled, then don't call FixRegisterBanking at all,
4504         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4505         completely removed,
4506         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4507
4508 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4509
4510         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4511         Phuah Yee Keat <yk.phuah AT nestac.com>
4512
4513 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4514
4515         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4516         correctly the IVT even if it is relocated to some other location
4517
4518 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4519
4520         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4521         * device/include/pic16/pic18f2220.h: NEW,
4522         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4523         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4524         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4525         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4526         nodefaultlibs, ivt_loc is the location of the interrupt vector
4527         table, and nodefaultlibs signs that default libraries should not be
4528         linked in link stage,
4529         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4530         according to --ivt-loc argument,
4531         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4532         when pragma stack is found,
4533
4534 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4535
4536         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4537         256 (range check), 257 (do while), 258.a-f (bit banging
4538         f.e. on 3-wire SPI bus)
4539
4540 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4541
4542         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4543         variables used exclusively within a loop
4544
4545 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4546
4547         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4548
4549 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4550
4551         * src/SDCClrange.c (computeClash): fixed bug #971834
4552
4553 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4554
4555         * src/mcs51/gen.c (genCmp): fixed bug #975903
4556         * src/hc08/gen.c (operandsEqu),
4557         * src/ds390/gen.c (operandsEqu),
4558         * src/z80/gen.c (operandsEqu),
4559         * src/pic/gen.c (operandsEqu),
4560         * src/pic16/gen.c (operandsEqu),
4561         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4562         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4563
4564 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4565
4566         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4567
4568 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4569
4570         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4571         default case in switch statement,
4572         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4573         to eliminate problem with initialisation of pointers, but problem
4574         still exists,
4575         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4576         * (emitStaticSegment): removed various lines emitting debug info,
4577         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4578         added processor registers for utilizing EEPROM,
4579         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4580         configurable and set 8
4581
4582 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4583
4584         * .version: increased version number to 2.4.2,
4585
4586         Cumulative patch for pic16 port
4587         * src/pic16/device.c: changed scheme to dump initial values for
4588         variables in idata segment, all print_idata* functions were removed,
4589         now the pic16_printIval* will be called,
4590         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4591         * _pic16_printPointerType, pic16_printPointerType,
4592         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4593         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4594         NEW, similar to the respective functions in SDCCglue.c,
4595         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4596         way, emitting hex bytes,
4597         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4598
4599 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4600
4601         * src/avr/ralloc.c (serialRegAssign),
4602         * src/xa51/ralloc.c (serialRegAssign),
4603         * src/pic/ralloc.c (serialRegAssign),
4604         * src/pic16/ralloc.c (serialRegAssign),
4605         * src/hc08/ralloc.c (serialRegAssign),
4606         * src/z80/ralloc.c (serialRegAssign),
4607         * src/ds390/ralloc.c (serialRegAssign),
4608         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4609
4610 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4611
4612         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4613         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4614
4615 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4616
4617         Cumulative patch for pic16 port:
4618         * src/pic16/device.h (typedef PIC16_device) modified fields for
4619         defining microcontrollers,
4620         * src/pic16/device.c: added new info for all devices in Pics16 array,
4621         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4622         to be optimised out by the pCode optimiser,
4623         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4624         specially, bug reported by G.M. Gallant,
4625         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4626         as force'd so that cannot be optimised out by pCode optimiser,
4627         * src/pic16/pcode.c,
4628         * src/pic16/pcodepeeph.c,
4629         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4630         they are disabled by default, but can be enabled explicit with
4631         command argument --denable-peeps, for testing,
4632         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4633         --pomit-ivt in COMPILE_FLAGS
4634
4635 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4636
4637         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4638           compilation on MSVC
4639
4640 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4641
4642         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4643
4644 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4645
4646         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4647         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4648
4649 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4650
4651         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4652         would only assign 0x300001 register.
4653
4654 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4655
4656         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4657         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4658
4659 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4660
4661         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4662         for ds80c400
4663         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4664         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4665         added peephole 254 (left shift), 255 (jump table)
4666
4667 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4668
4669         * device/lib/Makefile.in: removed comment line with model-pic16,
4670         * (target port-specific-objects-pic16): the libraries and objects
4671         are copied to the build directory form the device/lib/pic16/bin
4672         directory
4673
4674         Cumulative patch concerning pic16 port:
4675         * library directory has been re-organized,
4676         * added support for PIC18F1220,
4677         * added headers and library sources for chips 18f1220,18f6520,
4678         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4679
4680         * configuration registers setting has changed, now each supported
4681         device has a complete description of the registers it uses,
4682         * all initialisations are moved to idata sections, these section
4683         can be absolute or relocatable,
4684         * fixed initialisation of codespace variables,
4685         * fixed warning about PCLATU and gpsim,
4686         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4687         * (genAssign): use table reads when assigning from variables in codespace,
4688         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4689         char/int variables placed in codespace,
4690         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4691         registers set in .asm file, no need for --pomit-config-words anymore,
4692         * (pic16glue): some 8051 legacy segments are commented out
4693         (to be removed completely),
4694         * added support for alternative assembler and linker with --asm=
4695         and --link= command line arguments,
4696         * peepholes are disabled automatically in the port, no need to
4697         specify on command line,
4698         * port supports natively char/int/long multiplication, but converts
4699         all divisions to support functions,
4700         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4701         to the file set in variable $2,
4702         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4703         strings in ASCII format and not in hex,
4704         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4705         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4706         allocate proper register if iCodes aren't temporary,
4707
4708 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4709
4710         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4711
4712 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4713
4714         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4715         is commented out
4716
4717 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4718
4719         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4720         computed address is reused
4721         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4722         multi-byte bitfields
4723
4724 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4725
4726         * src/z80/gen.c: (genArrayInit): must check for pointers too
4727
4728 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4729
4730         * support/regression/tests/zeropad.c: never meant to commit the
4731           nestedstruct test: removed, added check for GCC version
4732
4733 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4734
4735         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4736         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4737         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4738           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4739           bugs 928906 and 954082 half-empty initializers
4740         * src/SDCCsymt.h,
4741         * src/SDCCsymt.c (getAllocSize): added for above fix
4742         * src/z80/gen.c (genArrayInit): fixed bug 741044
4743         * support/regression/tests/zeropad.c: added tests
4744
4745 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4746
4747         * src/pic16/device.c (pic16_dump_section): corrected bug which
4748         caused some symbols of the libraries to be misplaced
4749
4750 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4751
4752         * src/pic16/glue.c,
4753         * src/pic16/ralloc.h,
4754         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4755         to fix conflict with pic port
4756
4757 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4758
4759         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4760         externs configuration variables,
4761         * src/pic16/ralloc.h,
4762         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4763         prototype in header, commented out some debug messages
4764
4765 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4766
4767         * src/pic16/glue.c,
4768         * src/pic16/main.c,
4769         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4770         for gpasm COFF object generation. Thanks to D. Hawkins for
4771         his patch info
4772
4773 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4774
4775         * src/ds390/main.c,
4776         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4777         Brock for spotting this)
4778         * src/ds390/gen.c (genEndFunction),
4779         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4780         interrupt handler and critical. Disable push/pop optimizations when
4781         peephole optimizations disabled.
4782
4783 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4784
4785         Updated pic16 library sources and headers.
4786         * device/lib/pic16/pic18f*/ ,
4787         * device/include/pic16/*.h: modified to handle structured SFR
4788         definitions
4789
4790 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4791
4792         * src/port.h (PORT structure): added hook initPaths, now each
4793         port can declare its own default search paths,
4794         which can been seen with the --print-search-dirs option,
4795         see pic16 port for example,
4796         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4797         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4798         * (doPrintSearchDirs): NEW, replaces in a central manner the
4799         printing of search dirs which was split in set*Paths functions,
4800         * (main): added call to port->initPaths and doPrintSearchDirs,
4801         * src/avr/main.c,
4802         * src/ds390/main.c,
4803         * src/hc08/main.c,
4804         * src/izt/i186.c,
4805         * src/izt/tlcs900h.c,
4806         * src/mcs51/main.c,
4807         * src/pic/main.c,
4808         * src/pic16/main.c: modified port structures to reflect addition of
4809         initPaths hook,
4810
4811         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4812         * (pic16_dump_section): for registers in same address reserve memory once,
4813         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4814         to no_banksel,
4815         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4816         result is greater in size than right or left,
4817         * (pic16_genUMult8X8_8): there are some cases where the result can
4818         be 16 bits size, so handle these,
4819         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4820         * (pic16_outBitC): modified to emit pcodes,
4821         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4822         or not,
4823         * (genDivOneByte): implemented algorithm to divide 8-bits,
4824         * (genCmp): uncommented goto, but issues still exist,
4825         * (genAnd): fixed a bug with variables >8bits,
4826         * (genPackBits): optimization added that uses BCF/BSF to change a
4827         single bit,
4828         * (genAssign): fixed bug when assigning floating point literals,
4829         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4830         __sdcc_gsinit_startup label,
4831         * src/pic16/main.c (_pic16_init): removed search directory
4832         initialisations,
4833         * (_pic16_initPaths): NEW, used to initialise search directories,
4834         * (_hasNativeMulFor): support functions for all except char/int
4835         multiplication, and char division,
4836         * (PIC16_port struct): modified entry for native mul support,
4837         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4838         no_banksel option,
4839         * (buildCallTree): call to register_usage is ifdef'ed out,
4840
4841 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * device/include/string.h: applied Stas Sergeev's patch to make this
4844         header file compatible with the preprocessor -Wundef option
4845         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4846         failure (fixes bug #941458)
4847
4848 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4849
4850         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4851         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4852         that the variable, not the function, should be static
4853         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4854         to be consistent with non-literal case
4855
4856 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4857
4858         * src/SDCCast.c (isConformingBody): fixed bug #949967
4859         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4860         convilong): fixed bug #952086
4861
4862 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4863
4864         * src/SDCCmem.c (allocVariables): fixed bug #955321
4865
4866 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4867
4868         * src/hc08/main.c (_hc08_genAssemblerEnd),
4869         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4870         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4871         completely eliminated the use of a temporary file
4872         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4873         when more than one file linked
4874         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4875
4876 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4877
4878         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4879         which fixes bug #543481
4880         * support/regression/tests/bug-751703.c: fixed comments left from a
4881         cut and paste error
4882         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4883         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4884         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4885         scopes
4886         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4887         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4888         are now changed to underscores in moduleName
4889
4890 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4891
4892         * as/mcs51/lkmem.c: better fix for bug #954173
4893
4894 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4895         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4896
4897         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4898         * device/include/c8051f000.h,
4899         * device/include/c8051f120.h,
4900         * device/include/c8051f300.h,
4901         * device/include/c8051f310.h,
4902         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4903         PWM16) and detab'ed
4904
4905 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4906
4907         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4908         and mailing lists, doc'ed --no-peep-comments, removed reference
4909         to knoppix (newest version has no LyX/LaTeX), other minor changes
4910         * src/SDCCglue.c (glue): save 2 bytes stack space with
4911         option --main-return. The ljmp could probably be avoided too
4912
4913 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4914
4915         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4916
4917 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4918
4919         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4920         * src/SDCCopt.c (isLocalWithoutDef),
4921         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4922         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4923         (credit to Maarten Brock for patch #949363, on which this is based)
4924         * support/regression/tests/bug-751703.c: some test cases of extern used
4925         within inner scopes.
4926
4927 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4928
4929         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4930         SPEC_STRUCT
4931         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4932         struct definitions
4933         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4934         dwWriteLabel): fix to create valid debugger symbols even when
4935         the module name has non-alphanumeric symbols in it
4936         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4937         when a variable's allocation has been optimized away
4938
4939
4940 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4941
4942         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4943         * src/hc08/main.c,
4944         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4945         * src/mcs51/main.c,
4946         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4947         * src/ds390/main.c,
4948         * src/z80/gen.c (z80_emitDebuggerSymbol),
4949         * src/z80/main.c,
4950         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4951         * src/pic/main.c,
4952         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4953         * src/pic16/main.c,
4954         * src/avr/gen.c (avr_emitDebuggerSymbol),
4955         * src/avr/main.c,
4956         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4957         * src/xa51/main.c,
4958         * src/SDCCdebug.c (emitDebuggerSymbol),
4959         * src/SDCCdebug.h,
4960         * src/port.h: added a debugger struct to the port struct. Added a
4961         callback for defining debugger symbols
4962
4963         * src/SDCCast.c (createLabel),
4964         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4965         with isitmp = 1
4966         * src/SDCCicode.h,
4967         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4968         iCode back to the ast for the function
4969
4970         * src/hc08/ralloc.c (hc08_assignRegisters),
4971         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4972         unneeded fields from the regs struct.
4973         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4974         pushReg() & pullReg() functions instead of emitcode()
4975
4976         * src/hc08/gen.c (genLabel, genhc08Code),
4977         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4978
4979         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4980         debugger hooks
4981
4982         * src/hc08/gen.c (genEndFunction, genhc08Code),
4983         * src/hc08/gen.h,
4984         * src/mcs51/gen.c (genEndFunction, gen51Code),
4985         * src/mcs51/gen.h,
4986         * src/ds390/gen.c (genEndFunction, gen390Code),
4987         * src/ds390/gen.h,
4988         * src/z80/gen.c (genEndFunction, genZ80Code),
4989         * src/z80/gen.h,
4990         * src/z80/z80.h,
4991         * src/pic/gen.c (genEndFunction, genpic14Code),
4992         * src/pic/gen.h,
4993         * src/pic16/gen.c (genEndFunction, genpic16Code),
4994         * src/pic16/gen.h,
4995         * src/avr/gen.c (genEndFunction, genAVRCode),
4996         * src/avr/gen.h,
4997         * src/xa51/gen.c (genEndFunction, genXA51Code),
4998         * src/xa51/gen.h,
4999         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5000         specific code to cdbFile.c and out of the backend code generators
5001
5002         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5003         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5004         starting address is now 0
5005
5006         * as/hc08/asm.h,
5007         * as/hc08/m08pst.c,
5008         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5009         assembler directive for DWARF support
5010         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5011
5012         * src/src.dsp,
5013         * src/Makefile.in,
5014         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5015
5016 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5019         and inappropriate peephole optimization in jump tables
5020
5021 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5022
5023         * as/hc08/m08pst.c,
5024         * src/SDCCglue.c: sdccopt works for the hc08 port now
5025
5026 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5027
5028         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5029
5030 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5031
5032         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5033
5034 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5037         rules
5038         * src/SDCCmain.c,
5039         * src/SDCCglobl.h,
5040         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5041         comments from the peephole optimizer replacement rules
5042         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5043         symbols
5044         * src/SDCCcse.c (updateSpillLocation),
5045         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5046         equivalents
5047         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5048         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5049         objects far pointers
5050
5051 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/SDCCsymt.h: a missing part of my last change
5054         * src/pic/ralloc.c (regTypeNum),
5055         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5056
5057 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5058
5059         * src/SDCCicode.h,
5060         * src/SDCCicode.c (aggrToPtrDclType),
5061         * src/SDCCptropt.h,
5062         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5063         ptrPseudoSymConvert),
5064         * src/pic/ralloc.c (regTypeNum),
5065         * src/pic16/ralloc.c (regTypeNum),
5066         * src/hc08/ralloc.c (regTypeNum),
5067         * src/ds390/ralloc.c (regTypeNum),
5068         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5069         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5070
5071 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * link/z80/lkmain.c (afile),
5074         * as/hc08/lkmain.c (afile),
5075         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5076         prevent a pointer problem when a filename has no directory and
5077         no extension specified.
5078
5079 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5080
5081         * link/z80/lkmain.c (afile): allow periods in directory names
5082         * link/z80/lkmain.c (afile),
5083         * as/mcs51/lkmain.c (afile),
5084         * as/hc08/lkmain.c (afile): allow linker script file to have an
5085         extension other than ".lnk"
5086         * link/z80/lklex.c (getfid),
5087         * link/z80/lkmain.c (parse),
5088         * as/mcs51/lklex.c (getfid),
5089         * as/mcs51/lkmain.c (parse),
5090         * as/hc08/lklex.c (getfid),
5091         * as/hc08/lkmain.c (parse): Support comments in the linker script
5092         file on lines by themselves and after filenames
5093
5094 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5095
5096         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5097
5098 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/z80/peeph-z80.def: removed some peephole rules that don't
5101         work with multibyte arithmetic (fixed bug #937126)
5102         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5103         to registers and not global variables
5104         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5105         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5106         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5107         checking for assignments not internally generated (fixed bug #931895)
5108         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5109         structure member (fixed bug #930072)
5110
5111 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5112
5113         * src/SDCCmain.c (linkEdit),
5114         * src/hc08/main.c (_hc08_parseOptions),
5115         * as/hc08/Makefile.in,
5116         * as/hc08/aslink.h,
5117         * as/hc08/asm.h,
5118         * as/hc08/m08pst.c,
5119         * as/hc08/lkrloc.c (relr, rele),
5120         * as/hc08/lkarea.c (lnkarea)
5121         * as/hc08/lkmain.c (afile, parse),
5122         * as/hc08/lkelf.c: support for ELF output
5123         * as/hc08/lks19.c (s19),
5124         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5125
5126 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5127
5128         * as/mcs51/lkihx.c: Fixed bug #899105.
5129
5130 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5131
5132         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5133         .dsp files from Unix to DOS.
5134
5135 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5138         function pointers; we have been compliant for several months now.
5139         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5140         change that was accidently commented out
5141         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5142         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5143         bug #922319
5144
5145 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * src/hc08/gen.c: output of all of the internal debugging information
5148         is now controlled by the D() macro; it is disabled by default
5149
5150 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5151
5152         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5153         harder to keep the same registers during a CAST iCode
5154         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5155         long via int can be done in a single cast, if the signedness is
5156         correct.
5157         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5158         putchar() in tinibios.c in ds390's library
5159
5160 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5161
5162         * src/SDCCast.c (decorateType): fixed bug #898889,
5163         cast result of a literal complement too
5164         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5165         fixed check for bitfields
5166
5167 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5168
5169         * src/SDCCicode.c (geniCodeLogic): made it static,
5170         (geniCodeLogicAndOr): added in order to fix bug #905492,
5171         (ast2iCode): fixed bug #905492
5172         * support/regression/tests/bug-905492.c: added
5173         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5174         (processParms): fixed bug #927659: don't copy parms, this will clear
5175         decorated flag
5176         * support/regression/tests/bug-927659.c: added
5177
5178 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5179
5180         * src/SDCCast.c (addCast): don't cast float to char
5181         * device/lib/libsdcc.lib: added _memmove
5182
5183 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5184
5185         * device/lib/large/Makefile: fixed parallel execution by
5186         replacing `make` by `$(MAKE)`
5187
5188 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5189
5190         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5191         offsets (fixes bug #923936)
5192
5193 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5194
5195         * device/lib/small/Makefile: fixed parallel execution by
5196         replacing `make` by `$(MAKE)`
5197
5198 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5199
5200         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5201
5202 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5203
5204         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5205         * src/regression/Makefile: Regression test was not running.
5206
5207 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5208
5209         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5210         complement if possible
5211         * src/SDCCval.c (valComplement),
5212         * src/SDCCicode.c (operandOperation): fixed complement of literal
5213         * support/regression/tests/onebyte.c (testComplement): added
5214
5215 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5216
5217         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5218         return an optimized tree; actually replace actParm with the new tree
5219         * src/SDCCast.h: added some parantheses to remove side effects
5220         * support/regression/tests/bug-920866.c
5221
5222 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5223         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5224         Bit operands were not being handled properly in the pic14 port.
5225         (now src/regression/add.c passes again).
5226
5227 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5228
5229         * src/SDCC.y (labeled_statement): case and default no longer require
5230         a following statement (RFE #893037)
5231
5232 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5233
5234         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5235         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5236         disabled (fixes bug #916294)
5237         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5238         "mov a,acc"; patch provided by Lenny Story
5239         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5240
5241 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5244         functions
5245         * src/ds390/gen.c (genFunction, genEndFunction),
5246         * src/ds390/ralloc.c (ds390_assignRegisters),
5247         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5248         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5249         pushed if there are parameters passed on the stack. Also, a cleaner
5250         way to decide if r0/r1 should be pushed/popped. (Together they fix
5251         bug #918693)
5252
5253 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5254
5255         * doc/sdccman.lyx,
5256         * device/lib/mcs51/crtpagesfr.asm,
5257         * device/lib/mcs51/crtxinit.asm,
5258         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5259         to avoid confusion with Si Lab's SFRPAGE register.
5260
5261 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5262
5263         * src/SDCCglue.c (emitMaps): allow public sfr variables
5264         * src/SDCCglue.c (initialComments): include compiler build date
5265         with compiler version and put the timestamp of the generated
5266         assembly file on a serperate line to be less confusing.
5267         * src/port.h: added genInitStartup hook
5268         * src/avr/main.c,
5269         * src/ds390/main.c,
5270         * src/hc08/main.c,
5271         * src/pic/main.c,
5272         * src/pic16/main.c,
5273         * src/xa51/main.c,
5274         * src/z80/main.c: genInitStartup initialize as NULL (default to
5275         historical behaviour)
5276         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5277         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5278         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5279         library instead of hard coding it into the compiler.
5280         * support/regression/ports/mcs51-stack-auto/spec.mk,
5281         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5282         * device/lib/mcs51/Makefile,
5283         * device/lib/small/Makefile,
5284         * device/lib/large/Makefile,
5285         * device/lib/mcs51/crtpagesfr.asm,
5286         * device/lib/mcs51/crtstart.asm,
5287         * device/lib/mcs51/crtxclear.asm,
5288         * device/lib/mcs51/crtxinit.asm,
5289         * device/lib/mcs51/crtclear.asm,
5290         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5291         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5292         and into user configurable files.
5293         * device/lib/clean.mk: clean mcs51 directory too
5294         * support/regression/tests/longlit.c: added static to T1 declaration
5295         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5296         accesses in the initialization code
5297
5298 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5299
5300         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5301         OSCTRIMVAL as noted in bug #916008
5302
5303 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5304
5305         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5306         in loops with multiple exits (reported as incorrect registers
5307         used by Martin Helmling in Sdcc-user list)
5308
5309 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5310
5311         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5312         made ds390 register extensions look less like error messages
5313
5314 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5317         reported by Adam Wozniak in Sdcc-user list
5318
5319 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5320
5321         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5322         arithmetic optimizations, added debug output
5323
5324 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5325
5326         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5327         * sdcc.spec: updated and split sdcc into 3 rpms
5328         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5329         needed for literals of LEFT_OP and '+'
5330         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5331         introduced RESULT_TYPE_NOPROM
5332         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5333         left shift
5334         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5335         limited promotion to int only for '*'
5336         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5337
5338 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5339
5340         * src/pic16/gen.c (genSkip),
5341         (genc16bit2lit), (gencjneshort): commented out
5342         (is_LitOp): new helper function, checks operand type
5343         (genCmpEq): rewritten
5344
5345 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5346
5347         * support/regression/tests/bug-908454.c: added
5348
5349 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5350
5351         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5352         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5353         (geniCodeCast): cosmetic, don't preserve bit storage class
5354         (geniCodeLeftShift): added promotion
5355         (geniCodeLogic): fixed regression
5356         * src/SDCCsymt.c (computeTypeOr): accept bits too
5357         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5358
5359 2004-03-07  Borut Razem <borut.razem AT siol.net>
5360
5361         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5362
5363 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5364
5365         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5366         version of pic16_genPackRegisters which does not check if ic is a
5367         CAST operator,
5368         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5369         function cause string1.c regression test fails
5370
5371 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5372
5373         * sim/ucsim/configure.in,
5374         * sim/ucsim/configure,
5375         * sim/ucsim/doc/Makefile.in: use docdir
5376         * src/SDCC.y: fixed sbit atrributes
5377         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5378         * src/SDCCast.c (decorateType): |^& need special promotion handling
5379         * src/SDCCast.h,
5380         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5381         * src/SDCCsymt.h (computeType),
5382         * src/SDCCicode.c: computeType() needs op
5383         * src/SDCCsymt.c (checkTypeSanity),
5384         * doc/sddman.lyx: "plain" bitfields are unsigned
5385         * src/SDCCsymt.c (computeTypeOr): added
5386         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5387         |^& ops
5388         * src/SDCCval.c (val*): computeType() needs op
5389         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5390         * support/regression/tests/onebyte.c: added tests for |^&
5391
5392 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5393
5394         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5395         for writing icode into asm output.
5396
5397 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5398
5399         * src/pic16/device.c: added some debug lines enabled
5400         with macro DEBUG_CHECK,
5401         * src/pic16/genarith.c: more debug in genPlus,
5402         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5403         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5404         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5405         * (aopForSym): onStack symbols are re-placed in data memspace,
5406         and onStack flag is cleared,
5407         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5408         copy temporary pcodeop,
5409         * (genPcall): added warning for not updating PCLATU,
5410         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5411         always true for pic16 port,
5412         * (genMultOneWord): NEW, supports integer multiplication,
5413         * (genMult): modified to call genMultOneWord,
5414         * (ifxForOp): added warning when return NULL,
5415         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5416         flag is set before call to operandFromSymbol for implicit
5417         added structures,
5418         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5419         options.intlong_rent are set by default,
5420         * (_hasNativeMulFor): modified to allow port generation of integer
5421         multiplication,
5422         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5423         set regtype to REG_SFR for all registers, restricting seting the
5424         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5425
5426 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5427
5428         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5429         more than 500 times in the regression tests
5430
5431 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * support/Util/SDCCerr.h,
5434         * support/Util/SDCCerr.c,
5435         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5436         enumerator_list),
5437         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5438         for symbol conflicts.
5439         * support/valdiags/tests/enum.c,
5440         * support/valdiags/tests/tentdecl.c,
5441         * support/valdiags/tests/struct.c: expect possible error messages
5442         referring to original symbol definitions.
5443         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5444         * src/SDCCsymt.h,
5445         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5446
5447 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5448
5449         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5450
5451 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5452
5453         * src/pic16/ralloc.c (newReg): fixed bug #908929
5454
5455 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5456
5457         * src/ds390/gen.c: added missing #include "main.h"
5458
5459 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5460
5461         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5462         checking if symbol is already in set,
5463         * src/pic16/device.h: prototype for checkAddSym,
5464         * src/pic16/gen.c: (_G): added entry interruptvector,
5465         * (assignResultValue): removed some commented out lines,
5466         * (genFunction): check for ISR via sym->type, absolute section for
5467         interrupt code is created via a new pBlock, the goto instruction is
5468         placed now correctly at the interrupt vector position, changed all
5469         references from ivec to _G.interruptvector,
5470         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5471         is the interrupt is a high priority one, same for return from ISR,
5472         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5473         externs to calls of checkAddSym,
5474         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5475         pic16_pcode_verbose flag is set,
5476         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5477         * src/pic16/pcoderegs.c: message about how many registers are saved
5478         will only be emitted if pic16_pcode_verbose flag is set,
5479
5480 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/ds390/ralloc.h,
5483         * src/ds390/ralloc.c (ds390_regWithIdx),
5484         * src/ds390/gen.c (emitcode),
5485         * src/ds390/main.h,
5486         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5487         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5488         ds390operandCompare, getRegsRead, getRegsWritten,
5489         initializeAsmLineNode): customized instruction size calculation for
5490         ds390, started basis for some register optimizations
5491         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5492         corresponding assembly output
5493         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5494         missing push/pop of r0/r1. Optimized push/pops
5495
5496 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5497
5498         * src/mcs51/main.c (instructionSize): fixed ACALL size
5499         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5500
5501 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5502
5503         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5504         the sorting of rlist with NULL elements
5505         * (print_idataType, print_idata): NEW to create idata sections
5506         * src/pic16/device.h: idataSymSet new variable
5507         * src/pic16/gen.c (genFunction): fixed some bugs in string
5508         comparing, improved the absolute section creation for ISRs,
5509         added FSR0L/FSR0H in registers that are saved in an ISR,
5510         * (genInline): fixed the processing of inline snippets,
5511         now they undergo no process by the peephole optimizer
5512         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5513         are placed in idataSymSet,
5514         * (pic16emitStaticSeg): extern symbols are added in externs,
5515         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5516         switching when aboslute variables are placed in access bank memory
5517         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5518         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5519         commented out with #if,
5520         * (pic16_packRegisters): reintroduce the check for CAST because some
5521         symbols are not correctly handled,
5522         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5523         pCodeInstruction instead of pCode,
5524         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5525         pCodeAsmDir definition,
5526         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5527         directive, then the argument directive is emitted without the leading
5528         tab, hack for inline labels which must be in the first column,
5529         * (compareLabel,pic16_findNextInstruction),
5530         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5531         * (insertBankSwitch): modified for the new pCodeAsmDir,
5532
5533 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5534         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5535
5536         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5537         instance,
5538         * (pushSide): commented out with #if,
5539         * (assignResultValue): fixed some typos in saving
5540         registers,
5541         * (genPcall): FIXED and sync'ed with genCall,
5542         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5543         * (genNearPointerGet): fixed to handle some more cases,
5544         implementation scheme via table reads,
5545         * (genConstPointerGet): modified to access code memory correct,
5546         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5547         and improved to handle some cases
5548         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5549         instead of "RETLW" for init data
5550         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5551         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5552         variables are placed in access bank memory (<0x80 and >=0xf80),
5553         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5554         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5555         TBLWT_POSTDEC,TBLWT_PREINC
5556         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5557         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5558         directives
5559         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5560         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5561         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5562         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5563
5564 2004-02-29  Borut Razem <borut.razem AT siol.net>
5565
5566         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5567         support/Util/findme.h, support/Util/system.h: enhance binary relative
5568         search for lib and include by using findProgramPath()
5569
5570 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5571
5572         * src/SDCCpeeph.h,
5573         * src/SDCCpeeph.c (pcDistance),
5574         * src/port.h,
5575         * src/mcs51/ralloc.h,
5576         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5577         * src/mcs51/main.h,
5578         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5579         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5580         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5581         size calculation port specific, started basis for some register
5582         optimizations
5583         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5584         missing push/pop of r0/r1. Optimized push/pops
5585         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5586         * device/lib/_modsint.c (_modsint),
5587         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5588         and stack version so regression tests pass
5589
5590 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5591
5592         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5593         * src/SDCCast.c (decorateType): catch another small optimization
5594         with '?' operator
5595         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5596         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5597         modified to finally use computeType() all over SDCC,
5598         see Feature Request #877103
5599         * src/SDCCval.h: cosmetic
5600         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5601         valCompare(); regression tested in muldiv.c
5602         * support/regression/tests/muldiv.c (testMod): mod sign follows
5603         dividend only
5604
5605 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5606
5607         * src/SDCCast.c (decorateType): fixed bug #902362
5608         * doc/INSTALL.txt: fixed install instructions for win32
5609
5610 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5611
5612         * device/include/Makefile.in (install): fixed by replacing spaces
5613         by tabs
5614         * doc/README.txt,
5615         * doc/INSTALL.txt: updated for release
5616         * doc/sdccman.lyx: added warning for --xstack being buggy
5617
5618 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5619
5620         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5621         to eliminate build warnings.
5622         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5623
5624 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5625            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5626
5627         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5628         removed -penable-stack, added comment for stack pragma, added
5629         warning for not initializing the stack/frame registers, removed
5630         comment at interrupts section
5631
5632         Stack is made permanent, there is no ability to disable stack usage.
5633         * src/pic16/device.h,
5634         * src/pic16/device.c: removed all references to USE_STACK macro,
5635         * src/pic16/device.c (pic16_dump_section): when no elements in
5636         rlist, free rlist before return,
5637         * (pic16_dump_int_registers): NEW, internal registers are a new set
5638         of general purpose registers reused by each function,
5639         * (checkAddReg): returns 1 if registers is added to set,
5640         * (pic16_groupRegistersInSection): when a registers is of type
5641         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5642         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5643         SRCASECMP macro is moved here from device.c
5644         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5645         PO_PCLATU, PO_PRODL, PO_PRODH,
5646         * (pic16_pCodeOpType, genMinus,
5647         changed compares to "a" register, with AOP_ACC,
5648         * (pic16_genPlus): fixed some bugs and indented properly,
5649         * (pic16_addSign): changed size to size+offset in the MOVWF
5650         instruction,
5651         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5652         multiply 8-bit operand by literal, result is 8-bit,
5653         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5654         multiply 2 8-bit operand, result is 8-bit,
5655         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5656         genUMult8X*_16,
5657         * src/pic16/gen.c: changed accUse to contain WREG only,
5658         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5659         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5660         true, do not use immediate addressing any more unless sym is a
5661         pointer in codespace,
5662         * (aopForRemat): do not use immediate addressing when symbol not in
5663         codespace and when symbol's address is requested,
5664         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5665         accUse size (= 1),
5666         * (aopGet): added case for AOP_ACC and don't return "accumulator
5667         bug" but WREG instead,
5668         * (popGetTempReg): pushes contents of temporary register in stack,
5669         * (popReleaseTempReg): pops contents of temporary register from
5670         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5671         * (pic16_popGet): separated case AOP_ACC to return register WREG
5672         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5673         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5674         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5675         the use of immediate pointers to certain cases only.
5676
5677         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5678         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5679         * (assignResultValue, genCall, genRet): modified to use the new
5680         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5681         genPcall is still broken,
5682         * (genFunction): added code to create 'A' type pBlocks when
5683         interrupt functions are generated, code not extensively tested yet,
5684         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5685         * (genEndFunction): modified so ISRs pop stored registers from stack,
5686         * (genMultOneByte): cleanup,
5687         * (AccRsh): added flag andmask, to and result with appropriate mask,
5688         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5689         * (genDataPointerGet): fixed and reenabled its use,
5690         * (genNearDataPointerGet): bugs fixed,
5691         * (genDataPointerSet): bugs fixed,
5692         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5693         pic16_DumpSymbol, pic16_DumpOp,
5694         * src/pic16/genutils.h: function prototypes for the above functions,
5695         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5696         pointers,
5697         * (pic16emitRegularMap): many many many improvements, but needs a
5698         major cleanup,
5699         * src/pic16/main.c: enable_stack in pic16_options is removed,
5700         * (_pic16_parseOptions): removed command line options -penable-stack,
5701         * (_process_pragma): emit stack symbol only when stack pragma is
5702         processed,
5703         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5704         redirected to FSR0L/FSR0H pair,
5705         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5706         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5707         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5708         for immediates,
5709         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5710         * (dumpPicOptype): NEW,
5711         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5712         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5713         with movff instruction,
5714         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5715         added pic16_int_regs, some packRegsFor* functions are commented out,
5716         because produce errors,
5717         * src/pic16/NOTES: minor modifications
5718
5719 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5720
5721         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5722         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5723         --pack-iram.
5724         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5725         * as/mcs51/lkaomf51.c: fixed bug #895763
5726
5727 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5728
5729         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5730
5731 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5732
5733         * doc/sdccman.lyx: added details about the HC08 storage classes and
5734         interrupts, fixed the register usage info for z80 & gbz80
5735
5736 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5737
5738         * doc/sdccman.lyx: added more pic16 port documentation
5739         * device/include/pic16/: added header pic18fregs.h
5740
5741 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5742
5743         * doc/sdccman.lyx: added Vangelis' contribution
5744
5745 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5748         extend to the next CALL or PCALL, not just to the next CALL.
5749
5750 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5751
5752         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5753
5754 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5757         bug #895752 and a better fix for bug #716790
5758
5759 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5760
5761         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5762
5763 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5764
5765         * doc/sdccman.lyx: minor changes, minor changed
5766
5767 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5768
5769         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5770         which can't handle SDCC_NEWONEBYTEOPS,
5771         (geniCodeMultiply): removed conversion from mult to shift for pic14
5772         and pic16
5773
5774 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5775
5776         * src/hc08/gen.h,
5777         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5778         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5779         thus fixing bug #895406
5780
5781 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5782
5783         * device/lib/_modsint.c,
5784         * device/lib/_modslong.c: sign follows divisor only
5785         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5786         signs or signedness can be ignored
5787         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5788         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5789         added optimization for IFX,
5790         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5791         arguments;
5792         reenabled optimization for IFX, which was removed on 2004-01-11
5793         * src/SDCCast.h: added return type IFX
5794         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5795         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5796         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5797         SDCC_OLDONEBYTEOPS selects the old behaviour
5798         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5799         changed again and commented promotion rule
5800         * src/SDCCval.c (valDiv): promotion no longer necessary
5801         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5802         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5803         rewritten
5804         * support/regression/tests/onebyte.c: added
5805
5806 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5807
5808         * gen.c (genInline): reverted to old code for assemnling inline
5809         code because of bug reported James Chadd
5810
5811 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         * ralloc.h: missing declarations from previous patch,
5814         seems that patch for ralloc.h was never applied, fixed
5815
5816 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5817            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5818
5819         * pcode.c,
5820         * pcode.h,
5821         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5822         indirect addressing. Marked FSR0 as deprecated
5823         * gen.c (pointerCode): commented out, not needed now
5824         (pic16_popGet2p): new MOVFF helper function
5825         (genGenPointerGet),
5826         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5827         (shiftRLong): removed duplicate debugging info
5828
5829 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5830
5831         * src/ds390/gen.c (genNearPointerGet),
5832         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5833         optimization with bits, but not bitfields.
5834         * src/ds390/ralloc.c (packRegisters),
5835         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5836
5837 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5838
5839         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5840
5841 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5842
5843         * src/SDCCsymt.h,
5844         * src/SDCCicode.c (operandFromSymbol),
5845         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5846         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5847         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5848         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5849         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5850         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5851         bug #892038
5852         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5853         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5854         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5855         * src/SDCCsymt.c (newSymbol),
5856         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5857         enumerator_list),
5858         * src/SDCCval.h,
5859         * src/SDCCval.c (newiList): fixed bug #885705
5860
5861 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5862
5863         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5864         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5865
5866 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5867
5868         * device/include/c8051f120.h,
5869         * device/include/c8051f300.h,
5870         * device/include/c8051f310.h: added/updated header files for Silicon
5871         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5872         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5873         in new section Submitting patches
5874
5875 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5878         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5879         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5880         genGenPointerSet),
5881         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5882         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5883         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5884         genGenPointerSet),
5885         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5886         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5887         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5888         genGenPointerSet),
5889         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5890         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5891         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5892         genGenPointerSet): fixed bug #892400
5893         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5894         to eliminate build warnings.
5895         * src/SDCCast.c (processParms),
5896         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5897         fixed bug 751859
5898         * support/valdiag/valdiag.py: added GCC to the list of defines active
5899         when compiling with gcc
5900
5901 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * support/Util/SDCCerr.h,
5904         * support/Util/SDCCerr.c,
5905         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5906         with an incomplete type (fixed bug #883734)
5907         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5908
5909 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5912
5913 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/SDCCast.c (decorateType),
5916         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5917         function pointer implementation
5918         * support/regression/tests/funptrs.c: added tests to verify both forms
5919         of function pointers work correctly. Added tests to verify parameters
5920         are passed in the correct order.
5921
5922 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5923
5924         * device.c (regCompare): registers are sorted by ascending
5925         address and increasing size,
5926         * main.c (_pic16_finaliseOptions): removed the declaration
5927         of compiler macro MCU. Now a macro of the format pic18fxxxx
5928         will be defined from the command line
5929
5930 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5931             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5932
5933         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5934         PCOP_RLCF was overwritten!
5935         * gen.c (genSkip): commented out calls to pic16_emitcode,
5936         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5937         * (genlshTwo),
5938         * (genRRC): added debugging info,
5939         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5940         overwritten while shifting,
5941         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5942         overwritten while shifting,
5943         * (AccLsh),
5944         * (AccRsh),
5945         * (shiftLLeftOrResult),
5946         * (shiftRLeftOrResult),
5947         * (shiftRLong),
5948         * (shiftLLong): Implemented with pic16_emitpcode
5949         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5950         * (genLeftShift): Fixed bug, operand for shift by variable always
5951         was "and"ed with 0x0f,
5952         * (genLeftShiftLiteral),
5953         * (genrshTwo),
5954         * (genRightShiftLiteral): added debugging info,
5955         * (genrshFour): added comment,
5956         * (genRightShift): determined signedness from operand "left"
5957         instead of "result"
5958
5959 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5960
5961         * src/SDCCicode.c (geniCodeParms),
5962         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5963         function pointers, fixed function pointer bugs #861242 and #861896
5964
5965 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5966
5967         * device/include/c8051f000.h,
5968         * device/include/c8051f120.h,
5969         * device/include/c8051f300.h: added header files for Silicon
5970         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5971
5972 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5973
5974         * src/SDCCast.c (processParams): added new type flow and restructured
5975         (gatherAutoInit): added new type flow
5976         (addCast): cosmetic changes
5977         (getLeftResultType): added new type flow for array indices, patch
5978         provided by Stas, see FR #877103
5979         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5980         array index patch by Stas
5981         * src/SDCCast.h: added prototype getResultTypeFromType()
5982         * src/SDCCval.h,
5983         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5984         * src/pic/glue.c (pic14emitStaticSeg),
5985         * src/pic16/glue.c (pic16emitStaticSeg),
5986         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5987         for initialization of symbols
5988         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5989         * support/Util/SDCCerr.h:
5990         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5991         * .version: bumped version number to 2.3.8
5992         * device/include/Makefile.in (install),
5993         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5994         avoid warnings
5995
5996 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5997
5998         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5999         Slade Rich fixed an optimization bug
6000         * src/pic/pcodepeep.c,
6001         * src/pic/pcoderegs.c
6002         * doc/Makefile (install): added test for directory
6003
6004 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6007         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6008         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6009         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6010         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6011         * as/mcs51/asexpr.c (term),
6012         * as/hc08/asexpr.c (term): fixed bug #887146
6013
6014 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6015
6016         * src/z80/gen.c (genMult): handle single byte result product
6017         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6018         DUMMY_READ_VOLATILE (fixed bug #886367)
6019
6020 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6021
6022         * support/regression/tests/libmullong.c: fixed logic, on little endian
6023         hosts we ended without a mullong_wrapper()
6024
6025 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6028         virus/worm forged address usage.
6029
6030 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6031
6032         Fixed promotion, it should be done on AST level:
6033         * src/SDCCast.c (addCast): added promotion to int
6034         (decorateType): updated call to upCast()
6035         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6036         usualUnaryConversions()
6037
6038 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6039
6040         * support/regression/tests/literalop.c (mulWrapper): Added a
6041         wrapper to remove integer overflow warnings.
6042
6043         * support/regression/tests/float_trans.c: Made work on host.
6044
6045         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6046         location of sz80.
6047
6048         * support/regression/generate-cases.py (main): Changed from inline
6049         to a main method.
6050
6051         * doc/Makefile (install): Changed to depth first to get rid of
6052         missing directory install warning.
6053
6054         * as/Makefile (install-doc): Made work on Mac.
6055
6056 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6057
6058         * src/SDCCast.c: added an additional type flow in decorateType() of
6059         opposite direction, see feature request #860006; it's enabled at runtime
6060         by setting the environment variable SDCC_NEWTYPEFLOW
6061         * src/SDCCast.h: changed prototype of decorateType()
6062         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6063         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6064         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6065         see feature request #877103
6066         * src/SDCCval.c: updated call of decorateType()
6067         (valBitwise): fixed bug #882876
6068         (valMinus): added promotion
6069         (valLogicAndOr): result is unsigned
6070         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6071         * src/SDCCsymt.c (computeType),
6072         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6073         must not cause an unsigned operation
6074         * src/pic/glue (pic14emitRegularMap),
6075         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6076
6077 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6078
6079         * src/pic/pcode.c (PCodeID): commented out left over debug code
6080
6081 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6082
6083         * support/valdiag/tests/overflow.c: added shift tests
6084         * src/pic/device.c,
6085         * src/pic/gen.c,
6086         * src/pic/gen.h,
6087         * src/pic/glue.c,
6088         * src/pic/main.c,
6089         * src/pic/pcode.c,
6090         * src/pic/pcode.h,
6091         * src/pic/pcodepeep.c,
6092         * src/pic/pcoderegs.c,
6093         * src/pic/ralloc.c,
6094         * src/pic/ralloc.h: applied patch from Slade Rich;
6095         added support for multiple code pages and multiple RAM banks on the
6096         PIC 14 port. The ASM files now no longer simply assume all the
6097         code / RAM are in the same page / bank. This means the linker can
6098         safely allocate code/RAM of separate ASM files to different pages/banks.
6099         * doc/sdccman.lyx: added Slade's tips
6100         * src/mcs51/peeph.def: fixed bug #880768
6101
6102 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6103
6104         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6105         * src/SDCCast.c (decorateType): fixed bug #880197
6106
6107 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6108
6109         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6110         getopt.h.
6111
6112         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6113         strtof is not part of C89 and isn't included with Mac OS X.
6114
6115 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6118         shiftL2Left2Result): fixed bug #879326
6119         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6120         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6121         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6122         address fetch for clr instruction
6123         * device/lib/hc08/_mulint.c: created optimized assembly version
6124         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6125
6126 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6127
6128         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6129         proposed in FR #877103
6130
6131 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6132
6133         * src/SDCCval.c (cheapestVal): added missing checks
6134         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6135         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6136
6137 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6138
6139         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6140         equal operands
6141
6142 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6143
6144         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6145         loaded with the linker search paths (-L arguments) and the libraries
6146         to be linked with the current source (-l arguments). Changes
6147         currently will affect only the pic16 port.
6148         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6149         include path the port specific paths and port specific libraries,
6150         * gplink command now contains the $3 argument,
6151         * src/pic16/device.h,
6152         * src/pic16/device.c,: structure PIC_device is made public and
6153         renamed to PIC16_device, the same for variable Pics which is renamed
6154         to Pics16. Updated all references to them.
6155         * src/pic16/glue.c (pic16glue): corrected bug with code
6156         initialization which bypassed the variable initializations block.
6157
6158         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6159         COMPILE_FLAGS and added the --nostdinc option
6160
6161 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6162
6163         * device/include/mc68hc908jb8.h: Register defs for another member
6164         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6165
6166 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6167
6168         Documenting changes from previous commits.
6169         * configure.in (version 1.56),
6170         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6171         when generating output files to configure the pic16 library,
6172         but now I've commented it out, since gputils aren't installed in the
6173         SF compile farm, so library won't compile
6174
6175         * device/lib/Makefile.in (version 1.56): initially I've added in
6176         target 'all' the prerequestive 'model-pic16' so it compiled the
6177         pic16 library, but now I've commented it out for the same reasons
6178         above,
6179         * added targets 'model-pic16' and 'objects-pic16' to compile the
6180         library
6181         * added target 'port-specific-objects-pic16' to handle the
6182         generated libraries and copy them into the build/ directory
6183         * added target 'clean-intermediate-pic16' to clean intermediate
6184         files into pic16 directory
6185         * in target 'installdirs' added line to create directory pic16 in
6186         the installation path
6187
6188         * device/include/Makefile.in (version 1.11): in target 'install'
6189         added lines to copy all header files to installation path,
6190         * in target 'installdirs' added line create directory for pic16
6191         headers in the installation path
6192
6193 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6194
6195         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6196          a function call
6197
6198 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6199
6200         * configure,
6201         * device/lib/configure.in,
6202         * device/lib/configure: fixed for autoconf 2.57
6203
6204 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6205
6206         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6207         option so that it actually works. Made it specific to the z80, since
6208         the gbz80 doesn't have these kinds of I/O ports.
6209
6210 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * device/include/z180.h,
6213         * device/lib/_memcpy.c,
6214         * device/lib/_memmove.c,
6215         * device/lib/_mulint.c,
6216         * device/lib/ser_ir.c,
6217         * device/lib/ser_ir_cts_rts.c,
6218         * device/lib/_strcmp.c,
6219         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6220         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6221         portmode; added deprecation warning for bank= and protmode= forms.
6222         Also, guard against buffer overflow.
6223         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6224
6225 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6226
6227         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6228         changed interrupt vector table generation to only emit declared vectors.
6229         * device/include/Makefile.in: added missing backslash
6230         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6231
6232 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6233
6234         Mainly changes to support compilation of the device libraries
6235         * src/pic16/device.c: stack is allocated via symbol and not
6236         via literal number. The symbol is placed in the corresponding
6237         position of the data ram
6238         * (pic16_dump_section): relocatable and absolute uninitialized
6239         data are now emitted in sorted order to reduce section naming,
6240         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6241         weren't marked as being in the access bank,
6242
6243 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6244
6245         Added portion of GNU PIC Library under the directory
6246         device/include/pic16 and device/lib/pic16. These files
6247         contain the declarations of SFRs for the PIC18Fxx2 devices.
6248         The directory is initialized via configure from toplevel.
6249
6250 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6251
6252         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6253         the spilllocations to be compared correctly
6254
6255 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6256
6257         * src/SDCCast.c (decorateType): fixed bug introduced today
6258
6259 2004-01-12  Borut Razem <borut.razem AT siol.net>
6260
6261         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6262         doc/sdccman.lyx: upper case pragmas are deprecated
6263
6264 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6265
6266         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6267         in simpler and even better code
6268
6269 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6270
6271         * src/SDCCicode.c (operandOperation): fixed bug #874819
6272         * src/SDCCast.c (decorateType): fixed
6273         char foo (unsigned long ul) { return ul > 0; }
6274
6275 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6276
6277         * doc/sdccman.lyx: Moved and added some sections, small changes
6278         all over. Telling LaTeX to be less strict with word spacing
6279         to better keep the right margin. Changed some notes about
6280         maintainance of the ports in section 3.2.1 - is it OK like this?
6281
6282 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6283
6284         SDCC source changes:
6285         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6286         convilong): modified to inform the pic16 port that builtin functions
6287         are external
6288
6289         PIC16 PORT specific changes:
6290         * src/pic16/device.c pic16_dump_equates() added,
6291         processor registers declared internally by the port are emitted in
6292         the translation as equates,
6293         * src/pic16/gen.c: inline code is passed unprocessed to the
6294         translation,
6295         * (pic16_popGetLit2): fnuction modified to take second operand as
6296         pCodeOp pointer and not as literal,
6297         * (popRegFromIdx): prefixed with pic16_,
6298         * (pic16_popCombine2): modified to receive already allocated pCode
6299         operands,
6300         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6301         * (genFunction): initializes local stack frame and pushes on stack
6302         all the registers used by this function,
6303         * (genEndFunction): restores all registers from stack and restores
6304         stack frame,
6305         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6306         improvements,
6307         * (pic16glue): changed the program startup sequence,
6308         * added new dbName code 'A' for functions placed in absolute section
6309         * src/pic16/main.c: added function attribute _naked,
6310         * added pragma 'code' to place a fnuction at an absolute address,
6311         * added command line arguments --debug-ralloc and --pcode-verbose,
6312         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6313         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6314         * (pic16_newpCodeOpLit2): modified to take the second operand as
6315         pCodeOp pointer,
6316         * (pic16_printpBlock): modified to emit each function in a separate
6317         section,
6318         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6319         UPPER for immediate operands,
6320         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6321         instruction,
6322         * src/pic16/peeph.def: all peepholes with movff are commented out,
6323         because there is a problem in the pcode peep optimizer,
6324         * src/pic16/ralloc.c: the register allocator can now reuse local
6325         function symbols for another function. This saves register usage.
6326         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6327
6328         Added file src/pic16/NOTES with information about program writing on
6329         the current port version.
6330
6331 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6332
6333         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6334         and peephole 252 (array access)
6335
6336 2004-01-09  Borut Razem <borut.razem AT siol.net>
6337
6338         * src/SDCCmain.c : fixed #872250: -l command line defined library
6339           files are scanned before standard library files
6340
6341 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6342
6343         * src/SDCCast.c (decorateType): fixed bug #874046
6344
6345 2004-01-09  Borut Razem <borut.razem AT siol.net>
6346
6347         * support/scripts/sdcc.nsi: remove previous installation
6348
6349 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6350
6351         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6352         bytes for last interrupt vector (mcs51)
6353         * sdcc.spec: fixed typo
6354
6355 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6356
6357         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6358         gen51Code): more efficient parameter receive for --model-large
6359         ("bug" #845294)
6360
6361 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6362
6363         * src/ds390/main.c,
6364         * src/z80/main.c: added missed needLinkerScript flags (more than
6365         one port structure defined in these file)
6366         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6367         bug #795325
6368
6369 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6370
6371         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6372         * src/port.h: added flag needLinkerScript in port->linker
6373         structure to inform whether to create a .lnk file or not,
6374         * src/avr/main.c,
6375         * src/ds390/main.c,
6376         * src/hc08/main.c,
6377         * src/mcs51/main.c,
6378         * src/pic/main.c,
6379         * src/pic16/main.c,
6380         * src/xa51/main.c,
6381         * src/z80/main.c: changed appropriately to configure
6382         needLinkerScript flag
6383         * src/pic/gen.c,
6384         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6385         * src/pic/glue.c: added variable udata_section_name to
6386         override default uninitialized data segment definition for
6387         devices only with SHAREBANK memory (reported from Erik Epetrich)
6388         * (pic14emitOverlay): modified to emit a commented overlay segment
6389         directive when no overlay data exist
6390         * (picglue): modified to emit uninitialized data segment
6391         according to udata_section_name
6392         * src/pic/main.c (_pic14_parseOptions): added command line
6393         options --udata-section-name=[name] to override default
6394         udata definition name
6395         * modified _linkCmd and _asmCmd to include compiler passed
6396         arguments via -W option
6397         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6398         object file from '.rel' to '.o' in port->linker structure,
6399         changed size of fptr from 2 to 3 in port structure
6400
6401 2004-01-07  Borut Razem <borut.razem AT siol.net>
6402
6403         * support/scripts/sdcc.nsi: update PATH
6404         * support/scripts/sdcc.ico: craeted
6405
6406 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6407
6408         * device/include/Makefile.in: fix install
6409         * doc/Makefile: fix install
6410
6411 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6412
6413         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6414         in bug #860505
6415         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6416         how the function variable allocation summary is displayed; also
6417         include information about variables allocated to the overlay
6418         segment
6419
6420 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6421
6422         * as/mcs51/lkmain.c: Help about -Y option
6423         * as/mcs51/lkarea.c: Fixed gcc warnings
6424
6425 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6426
6427         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6428         fixed warning
6429         * support/valdiag/tests/overflow.c: added
6430         * src/SDCCast.c (decorateType),
6431         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6432         LEFT_OP (left shift)
6433
6434 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6435
6436         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6437         (default behaviour).
6438
6439 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6440
6441         A python script to validate compiler diagnostic messages. It can be
6442         used to verify that sdcc complains about bad c source code and
6443         gives a good location of the error.
6444         * support/valdiag/Makefile,
6445         * support/valdiag/valdiag.py,
6446         * support/valdiag/tests/*
6447
6448 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6451         * src/SDCCsymt.c (newEnumType),
6452         * src/SDCCsymt.h
6453         * support/Util/SDCCerr.c,
6454         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6455         enum related bugs.
6456         * support/regression/tests/enum.c: added test for enum values that
6457         require at least 2 bytes of storage.
6458
6459 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6460
6461         * src/common.h: added ifndef/define/endif macros
6462         around the header file.
6463         Bug reported from Jesus Calvino-Fraga
6464
6465 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6466
6467         * sdcc.spec: updated
6468         * device/include/Makefile.in: don't install CVS directories
6469         * device/lib/Makefile.in: added removal of CVS directories after install
6470         * doc/Makefile: fixed install, added local_icons
6471         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6472         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6473         * src/ds390/gen.c (genRightShift): fixed bug #870788
6474         * src/SDCCast.c (decorateType): fixed bug #870781
6475
6476 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6477
6478         PIC16 port related changes:
6479         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6480         added variable stackPos,
6481
6482         * gen.c: genCall, assignResultValue: added support for
6483         pushing/retrieving function parameters to/from stack,
6484         genFunction,genEndFunction: setup stack frame for the
6485         generated function,
6486         genAddrOf: will be changed according to bug 863624
6487
6488         * added files genutils.c and genutils.h which contain gen*
6489         debugged and optimised functions extracted from gen.c
6490
6491         * glue.c: added variable 'externs' which holds extern symbols,
6492         pic16emitRegularMap: is modified to properly handle relocatable
6493          symbols under the new scheme,
6494         pic16createInterruptVect: is modified
6495         pic16printPublics: is modified to emit 'global' assembler directives,
6496         added pic16_printExterns to print extern symbols,
6497         pic16glue: initializes stack/frame pointer in the beginning of
6498         the assembly output. Temporary hack, will be corrected later,
6499         because gplink yet does not support stack and SDCC does not
6500         yet support a type of crt0.o object to create the final binary.
6501
6502         * Removed many lines that contain 8051 legacy code.
6503         * The code is finally placed under a 'code' directive.
6504         * Added port specific options.
6505
6506         * _process_pragma: simplified since now we do not need *special*
6507         include file to define SFR registers. But a separate header
6508         will be needed. This will be developed later.
6509         * _pic16_parseOptions: added, parses port specific options:
6510         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6511         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6512         --preplace-udata-with=
6513
6514         * _pic16_setDefaultOptions: modified to initialize section names,
6515         but hack is temporarly out of order since it needs improvement.
6516         * _pic16_genAssemblerPreamble: configuration words are emitted by
6517         their address instead of their name. This part is incomplete and
6518         supports only the 18Fxx2 devices. Other devices will emit an error
6519         during assembly since they do not contain the same set of config
6520         registers
6521         * _pic16_genIVT: is modified,
6522
6523         * pcode.c: added definitions for some hardware registers that are needed
6524         for stack support
6525         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6526         All PCI entries are updated. Now LFSR is supported.
6527         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6528         * added pic16_newpCodeOpLit2 to support instructions with
6529         two literal arguments
6530         * pic16_pCode2str: corrected code that emits assembler instructions
6531         with two literal operands and those that have an access bit modifier
6532         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6533         this fixes a bug which caused some labels to be lost, when an
6534         assembler directive was added, i.e. banksel,
6535         * pic16_FixRegisterBanking: improved logic that causes the insertion
6536         of bank switching,
6537         * InlineFunction: functions that are called once, are not any more
6538         inlined. This can be a port option in the future,
6539
6540         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6541
6542         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6543         hold the corresponding uninitialized symbols,
6544         * pic16_allocProcessorRegister: registers have explicit marked the
6545         accessBank field,
6546         * pic16_allocInternalRegister: registers are explicit marked as
6547         not used,
6548         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6549         processing list, so bit registers were lost,
6550         *
6551
6552         * ralloc.h: added field 'accessBank' and original symbol operand
6553         in register definition,
6554         * removed the field isMapped from register definition,
6555
6556         ** Several functions have been removed from various sources:
6557         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6558         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6559         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6560         pic16_assignRelocatableRegisters
6561
6562         ** others have been introduced:
6563         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6564         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6565
6566 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6567
6568         * support/scripts/inc2h.pl: changed definition of BIT_AT
6569         to emit 'sbit at' instead of 'bit at'. This was a request.
6570
6571         PIC16 port related preliminary changes:
6572         * gen.c: prefixed function popRegFromString with
6573         pic16_ and all references to it corrected
6574         * pcode.c: all pic16_pc_* hardware registers prefixed
6575         with underscore (_),
6576         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6577         * ralloc.c: newReg(): when register is REG_SFR then
6578         set address to rIdx,
6579         pic16_allocProcessorRegister(): marks register wasUsed=0
6580         pic16_writeUsedRegs(): added a call to assign processor
6581         registers via pic16_assignFixedRegisters
6582
6583 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6584
6585         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6586         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6587         variables in unused register banks.  Also the SSEG is placed
6588         wherever there is enough space for it, and IDATA can be anywhere
6589         in internal RAM.  For now compile using -Wl-Y[stack_size].
6590         The mem file is different for this option as well, since it
6591         makes no sense of talking about DSEG lenght.
6592
6593 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6594
6595         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6596         in certain cases, e.g. when ROM assignment, patch provided
6597         from Albert den Haan.
6598
6599 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6600
6601         Many signedness and type propagation fixes:
6602         * src/SDCCicode.c: made geniCodeCast() static
6603         replaced SPEC_ by IS_ (cosmetic)
6604         (operandOperation): fixed div and mod operation
6605         (usualBinaryConversions): added support for promotion of char
6606         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6607         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6608         (geniCodeAdd): an array index will stay unsigned, even if promoted
6609         from char to int
6610         (geniCodeArray): ditto
6611         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6612         * src/SDCCsymt.c (computeType): added more support for char;
6613         promotion of char is selectable by promoteCharToInt, fixed signedness
6614         for all cases
6615         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6616         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6617         * src/SDCCval (val*): replaced signedness calculation by
6618         computeType()
6619         rearranged if-branches (cosmetic)
6620         (valShift): added warning W_SHIFT_CHANGED
6621         (valCompare): fixed problem with different types
6622         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6623         * support/regression/tests/literalop.c: added many cases
6624         * support/regression/tests/ast_constant_folding.c: changed finally to
6625         'unsigned int'
6626         * .version: new year, new version: 2.3.7
6627         * src/SDCCmain.c (main): applied patch #866468
6628         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6629         provided by Scott Bronson
6630         * doc/sdccman.lyx: updated documentation for sdcdb
6631         updated and added chapter tips
6632
6633 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/SDCCsymt.h: missing from yesterday's commits
6636
6637 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/SDCC.y (struct_or_union_specifier),
6640         * support/Util/SDCCerr.c,
6641         * support/Util/SDCCerr.h: verify that struct & union tags are used
6642         as declared.
6643
6644 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6645
6646         * src/SDCCglobl.h: missing from yesterday's commits
6647
6648 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6649
6650         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6651         sft_attributes, struct_declaration, parameter_declaration,
6652         type_name, start_block, declaration_list),
6653         * src/SDCC.lex (check_type): support redefinition of typedef names
6654
6655 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6656
6657         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6658         aligned xdata arrays. Erik helped me with the if clause.
6659
6660 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6661
6662         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6663         warning
6664
6665 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6666
6667         * src/SDCCast.h,
6668         * src/SDCCast.c (newAst_),
6669         * src/SDCCicode.h,
6670         * src/SDCCicode.c (ast2iCode, newiCode),
6671         * src/SDCCglobl.h,
6672         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6673         expr, statement, expression_statement, selection_statement,
6674         iteration_statement, expr_opt, jump_statement): foundation for tracking
6675         sequence points
6676         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6677         point code too)
6678
6679 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6680
6681         * support/Util/SDCCerr.c,
6682         * src/SDCCast.h,
6683         * src/SDCCast.c (createCase, createDefault, decorateType),
6684         * src/SDCClabel.c (labelUnreach),
6685         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6686         to error messages.
6687         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6688         (with thanks to Stas Sergeev)
6689         * device/include/time.h,
6690         * device/lib/time.c (CheckTime): suppress unreachable code warning
6691
6692 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/SDCCast.c (createIvalCharPtr),
6695         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6696         bug #753752)
6697         * support/regression/tests/nullstring.c: tests for these two bugs
6698
6699 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6700
6701         * support/Util/SDCCerr.h,
6702         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6703         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6704         about storage class and 'at' used inside struct or union
6705         * src/SDCCBBlock.c (iCodeFromeBBlock),
6706         * src/SDCCcse.c (ifxOptimize),
6707         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6708         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6709         printIval, emitStaticSeg, emitOverlay),
6710         * src/SDCClabel.c (deleteIfx),
6711         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6712         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6713         gatherAutoInit, processParms),
6714         * support/Util/SDCCerr.h,
6715         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6716         reporting for post-parse errors.
6717
6718 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6719
6720         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6721         implicit casts via union; they don't work on big endian systems
6722         (possible fix for bug #861138)
6723
6724 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6725
6726         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6727         * src/mcs51/main.c: fixed the fix for bug #737001
6728
6729 2003-12-15  Borut Razem <borut.razem AT siol.net>
6730
6731         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6732
6733 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6734
6735         * support/makebin/makebin.c: put output in binary mode
6736
6737 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6738
6739         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6740         xdata and data memory on startup. Set the environment variable
6741         SDCC_NOGENRAMCLEAR to disable this.
6742         * src/mcs51/peephole.def,
6743         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6744         (allows non-interrupt and interrupt code to safely compete for a resource
6745         without the non-interrupt code having to disable interrupts)
6746
6747 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * src/SDCCicode.c (geniCodeAdd),
6750         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6751         with valFromType if type might be a pointer and host is big endian).
6752         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6753         types, not just integer types.
6754         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6755         multiply defined with mismatching "at" address.
6756
6757 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6758
6759         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6760         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6761         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6762         with embedded nulls (fixed bug #753752)
6763
6764 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6765
6766         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6767         Apparently this did not see much testing (endless loop)
6768
6769 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6770
6771         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6772
6773 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6776         gracefully handle NULL memmap pointers
6777
6778 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6779
6780         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6781         instead of deleting the iCode when an operand is volatile
6782         * src/z80/gen.c (genDummyRead),
6783         * src/mcs51/gen.c (genDummyRead),
6784         * src/ds390/gen.c (genDummyRead),
6785         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6786         not just IC_RIGHT
6787         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6788         * src/SDCC.y: fixed bug #850420
6789
6790 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6791
6792         Applied z80 i/o port patch from Peter Townson and fixed some operators
6793         to better handle operands in A register.
6794         * device/include/z180.h
6795         * src/SDCC.y
6796         * src/SDCCglue.c
6797         * src/z80/gen.c
6798         * src/z80/gen.h
6799         * src/z80/main.c
6800         * src/z80/peeph-z80.def
6801         * src/z80/peeph.def
6802         * src/z80/z80.h
6803
6804 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6805
6806         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6807
6808 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * device/lib/hc08/_mullong.c: Removed extra #endif
6811
6812 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * sim/ucsim/hc08.src/inst.cc,
6815         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6816         carries from x to h
6817         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6818         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6819         * device/include/stdarg.h: fixed varargs for hc08
6820         * device/lib/Makefile.in,
6821         * device/lib/hc08/Makefile,
6822         * device/lib/hc08/_mulint.c,
6823         * device/lib/hc08/_mullong.c: fixed some endian problems
6824
6825 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6826
6827         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6828         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6829         * device/lib/_gptrget.c,
6830         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6831
6832 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6833
6834         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6835         * src/SDCCast.c (astErrors): fixed bug #846007
6836         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6837
6838 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6839
6840         * src/SDCCast.c (decorateType): disabled a transformation I added in
6841         revision 1.188 (access to fields of a structure at an absolute address);
6842         it breaks with bitfields, extern declarations, and gcse analysis.
6843         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6844         could be assigned through a pointer, so don't complain.
6845         * src/SDCCast.c (astErrors),
6846         * src/SDCCast.h,
6847         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6848
6849 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6850
6851         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6852         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6853         output of __config directives, since gpasm now supports them
6854         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6855         pre-processor macro, i.e. -DMCU=p18f452
6856         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6857         and modified to handle 'cast' icode similarly to '=' icode
6858         * src/pic16/device.h (typedef struct PIC_device): added field
6859         'extMIface' to indicate that chip has external memory interface
6860         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6861         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6862         18F8720
6863
6864 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6865
6866         * src/SDCC.y (pointer): fixed bug #846006
6867         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6868         * src/SDCCast.c (decorateType): fixed bug #846009
6869         * src/ds390/peeph.def,
6870         * src/ds390/gen.c (genAnd, genOr),
6871         * src/mcs51/peeph.def,
6872         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6873
6874 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6877         * src/SDCCdflow.c
6878         * src/SDCCcse.c
6879         * src/SDCCcse.h
6880         * src/SDCCBBlock.h
6881         * src/SDCCBBlock.c
6882
6883 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6884
6885         fixed bug #845089
6886         * src/SDCCbitv.h,
6887         * src/SDCCbitv.c: added function to free a bitvector
6888         * src/SDCClrange.h,
6889         * src/SDCClrange.c: added function to recompute the liveranges
6890         * src/avr/ralloc.c,
6891         * src/ds390/ralloc.c,
6892         * src/hc08/ralloc.c,
6893         * src/mcs51/ralloc.c,
6894         * src/pic/ralloc.c,
6895         * src/pic16/ralloc.c,
6896         * src/xa51/ralloc.c,
6897         * src/z80/ralloc.c: recompute the liveranges after register packing
6898
6899 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6900
6901         * src/SDCCloop.c (newInduction): fixed bug #845630
6902
6903 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6906         inadvertantly left behind from my 2003-11-12 change
6907
6908 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6909
6910         Updated headers I neglected to commit yesterday.
6911         * src/SDCClrange.h,
6912         * src/SDCCicode.h
6913
6914 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6915
6916         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6917         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6918         * src/SDCCopt.c (eBBlockFromiCode),
6919         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6920         the creation of the key hash table from the sequencing so it can be used
6921         earlier (for some GCSE bug fixes still pending)
6922
6923 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6924
6925         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6926         * support/regression/tests/addsub.c: testing genPlus shortcut
6927
6928 2003-11-15  Borut Razem <borut.razem AT siol.net>
6929
6930         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6931
6932 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6933
6934         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6935         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6936         ordering is immaterial.
6937         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6938
6939 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6940
6941         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6942         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6943         (SIGSEV) of bug #840381
6944         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6945         unlink new file before rename if new and old filenames are the same)
6946
6947 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6948
6949         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6950         uninitialized variables) for the mcs51. Set environment variable
6951         SDCC_GENRAMCLEAR to test.
6952         xdata initialization slightly shorter
6953
6954 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6955
6956         * src/SDCCsymt.h,
6957         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6958         #838241 & 780691 (basicly the same bug)
6959         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6960         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6961
6962 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6963
6964         * src/SDCCmain.c (linkEdit): "fix" #834252
6965
6966 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6967
6968         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6969         * src/SDCCast.h,
6970         * src/SDCC.y: fixed bug #819403
6971
6972 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6975         the reentrant attribute.
6976         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6977         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6978         simulation
6979         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6980         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6981         erroneously reduced to a literal.
6982         * src/hc08/ralloc.c (packRegisters, rematStr),
6983         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6984         some cases
6985
6986 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6987
6988         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6989         * doc/sdccman.lyx: changed from 'article' to 'book'
6990         * doc/Makefile: readded test_suite_spec and cdbfileformat
6991
6992 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6993
6994         * device/include/stdlib.h: include malloc.h to comply with ANSI
6995         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6996
6997 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6998
6999         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7000         * doc/clean.mk: also remove *.out files
7001         * doc/sdccman.lyx: some additions, larger top/bottom margins
7002
7003 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * src/SDCC.y: fixed bug #837365
7006         * support/regression/tests/bitopcse.c
7007         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7008         a symbol (might be valop instead)
7009         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7010         * device/lib/clean.mk: added hc08 to the cleaning list
7011
7012 2003-11-04  Borut Razem <borut.razem AT siol.net>
7013
7014         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7015           made 2003-11-04
7016         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7017           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7018           malloc is declared in standard stdlib.h
7019
7020 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7021
7022         * device/lib/hc08/Makefile: need to clean .rel not .o files
7023         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7024
7025 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7026
7027         * src/port.h,
7028         * src/hc08/main.c,
7029         * src/mcs51/main.c,
7030         * src/ds390/main.c,
7031         * src/z80/main.c,
7032         * src/avr/main.c,
7033         * src/pic/main.c,
7034         * src/pic16/main.c,
7035         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7036         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7037         tests (which uses the port's oclsExpense function)
7038         * src/SDCC.y,
7039         * src/SDCCast.c,
7040         * src/SDCCicode.c,
7041         * src/hc08/gen.c,
7042         * src/ds390/gen.c,
7043         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7044
7045 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7046
7047         * src/SDCCcse.c (ifxOptimize),
7048         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7049         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7050         deleting the IFX iCode.
7051         * src/hc08/ralloc.c: reduced unneeded slocs
7052         * src/hc08/gen.c: fixed bug in asmopToBoolean
7053
7054 2003-11-04  Borut Razem <borut.razem AT siol.net>
7055
7056         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7057           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7058           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7059           transferred to configure
7060
7061 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7062
7063         Use headers defined in the C[++] standards:
7064         * sim/ucsim/gui.src/serio.src/fileio.cc
7065         * sim/ucsim/gui.src/serio.src/frontend.cc
7066         * sim/ucsim/gui.src/serio.src/main.cc
7067         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7068         * support/Util/NewAlloc.c
7069         * as/hc08/lklibr.c
7070         * as/mcs51/lklibr.c
7071         * as/z80/aslist.c
7072         * as/z80/assym.c
7073
7074 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7075
7076         * Added MSVC projects for hc08 assembler and linker:
7077         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7078         /as/hc08/link_hc08.dsp
7079
7080 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7081
7082         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7083
7084 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7085
7086         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7087
7088 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7089
7090         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7091
7092 2003-10-31  Borut Razem <borut.razem AT siol.net>
7093
7094         * support/cpp2/cpplib.h,
7095           support/cpp2/cpplib.c,
7096           support/cpp2/cpplex.c,
7097           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7098           to switch _asm block preprocessing on / off. Default is
7099           #pragma preproc_asm +
7100
7101 2003-10-31  Borut Razem <borut.razem AT siol.net>
7102
7103         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7104           when outputting comment blocks (when executed with -C option) and
7105           _asm (SDCPP specific) blocks
7106
7107 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7110
7111 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7112
7113         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7114
7115 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7116
7117         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7118         * src/SDCCast.c (decorateType): fixed bug #832664
7119
7120 2003-10-31  Borut Razem <borut.razem AT siol.net>
7121
7122         * support\cpp2\cpplex.c: fixed for SDCPP:
7123           comments(when executed with -C option) and _asm blocks
7124           were included even if they where in skipped #if block.
7125           Applied solution from GCC cpp 3.3.2
7126
7127 2003-10-31  Borut Razem <borut.razem AT siol.net>
7128
7129         * src/SDCC.lex: sdcc now understands both formats:
7130           '# <line_number> <file_name>' and
7131           '#line <line_number> <file_name>'
7132         * support/cpp2/cppmain.c: sdcpp now generates the standard
7133           '# <line_number> <file_name>' instead of former
7134           '#line <line_number> <file_name>'
7135
7136 2003-10-30  Borut Razem <borut.razem AT siol.net>
7137
7138         * support/cpp2/cpphash.h,
7139         * support/cpp2/cpplib.h
7140         * support/cpp2/cpplex.c,
7141         * support/cpp2/cppmain.c,
7142         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7143
7144 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7145
7146         Fixed a number of problems revealed by bug #827883.
7147         * src/SDCCloop.c (loopInvariants): Spill location of the
7148         result operand should be recomputed if extracted from
7149         a loop. Also, don't extract assignments of an iTemp
7150         from a literal.
7151         * src/SDCCast.c (isConformingBody): loop reversal should
7152         not occur if the control variable is involved with a
7153         relational operator.
7154
7155 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7156
7157         * .version: bumped to 2.3.6 to reflect the big improvements
7158         made by Erik and Klaus. Thanks!
7159
7160 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7161
7162         Replaced the livrange code.
7163         * src/SDCClrange.c: added new LR code
7164         * src/SDCCloop.c,
7165         * src/SDCCBBlock.h: removed remainig parts from old LR code
7166         * src/ds390/ralloc.c,
7167         * src/ds390/gen.c: minor fixes to make it work with new code
7168
7169 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7170
7171         * as/hc08/asm.h,
7172         * as/hc08/lkrloc.c,
7173         * src/hc08/gen.c,
7174         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7175         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7176         (tweaked fix for bug #818696)
7177
7178 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7179
7180         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7181
7182 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7183
7184         * src/SDCCmain.c,
7185         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7186         * src/mcs51/gen.c (gencjneshort),
7187         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7188         more efficient (per Scott Bronson's suggestion)
7189
7190 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7191
7192         Extended the semantics of the critical keyword to include
7193         individual statements. See RFE #827755 and #799831
7194         * src/SDCC.y
7195         * src/SDCCicode.c
7196         * src/SDCCopt.c
7197         * src/SDCCast.c
7198         * support/Util/SDCCerr.c
7199         * support/Util/SDCCerr.h
7200         * src/mcs51/gen.c
7201         * src/ds390/gen.c
7202         * src/hc08/gen.c
7203
7204 2003-10-19  Borut Razem <borut.razem AT siol.net>
7205
7206         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7207
7208 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7211         Fixed bug #818696
7212         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7213         and predecrement operand is displayed
7214
7215 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/SDCCval.c (valMinus): fixed bug #826041
7218
7219 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7220
7221         Some hc08 related updates that I missed earlier
7222         * sim/ucsim/stypes.h
7223         * support/regression/ports/hc08/spec.mk
7224
7225 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7226
7227         New target "hc08" for the Motorola 68hc08 family of micros
7228
7229         * configure
7230         * configure.in
7231         * Makefile
7232         * src/hc08/*
7233         * src/SDCCmain.c
7234         * src/port.h
7235         * sim/ucsim/hc08.src/*
7236         * sim/ucsim/configure.in
7237         * src/ucsim/configure
7238         * sim/ucsim/packages_in.mk
7239         * as/hc08/*
7240         * as/Makefile
7241         * device/include/mc68hc908qy.h
7242         * device/lib/hc08/*
7243         * device/lib/Makefile.in
7244         * support/regression/ports/hc08/*
7245         * support/regression/Makefile
7246
7247 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7248
7249         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7250         regression test
7251         * src/ds390/gen.c (genCast): fixed bug #821957
7252
7253 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7254
7255         * device/lib/logf.c: "fixed" overlay bug
7256         * support/regression/ports/host/spec.mk: added m library
7257         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7258         * support/regression/tests/float_trans: added (for Eric)
7259
7260 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7261
7262         * src/mcs51/gen.c (genCpl): fixed bug
7263         http://sf.net/mailarchive/message.php?msg_id=6263915
7264
7265 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * src/SDCCast.c (decorateType): added extended constant folding
7268         * src/SDCCsymt.c (computeType): cleanup
7269         * src/SDCCval.c (valShift): minor optimization
7270         * support/regression/tests/ast_constant_folding.c: added
7271
7272 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * src/SDCCmain.c: removed some unintended changes
7275
7276 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7279         * src/z80/gen.c: fixed part of bug #817589
7280         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7281
7282 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7283
7284         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7285         * src/SDCCcflow.c
7286         * src/SDCCcse.c
7287         * src/SDCCdflow.c
7288         * src/SDCClabel.c
7289         * src/SDCClrange.c
7290         * src/SDCCmem.c
7291         * src/SDCCopt.c
7292         * src/SDCCpeeph.c
7293         * src/SDCCset.c
7294         * src/avr/ralloc.c
7295         * src/ds390/ralloc.c
7296         * src/izt/ralloc.c
7297         * src/mcs51/ralloc.c
7298         * src/pic/ralloc.c
7299         * src/pic16/ralloc.c
7300         * src/xa51/ralloc.c
7301         * src/z80/ralloc.c
7302         * src/z80/gen.c: removed unused label "release:"
7303
7304 2003-10-06  Borut Razem <borut.razem AT siol.net>
7305
7306         * src/SDCC.lex: removed definition of unused variables
7307           save_optimize and save_options
7308
7309 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * clean.mk: removed '=' in "-maxdepth=1"
7312         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7313         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7314
7315 2003-10-06  Borut Razem <borut.razem AT siol.net>
7316
7317         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7318           my_unput() replaced by unput()
7319
7320 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7321
7322         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7323         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7324         type-punned pointer will break strict-aliasing rules"
7325         Old LR behaviour is again default; Klaus' LR can be choosen by
7326         defining the environment variable LRKLAUS
7327         * src/SDCCBBlock.h
7328         * src/SDCCloop.c
7329         * src/SDCClrange.c
7330         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7331         * clean.mk: fixed removal of files in bin/CVS/
7332         * device/lib/clean.mk: fixed removal of directories small and large
7333         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7334         * src/SDCCicode.c,
7335         * src/SDCCval.c: removed superflous test for pedantic
7336
7337 2003-10-05  Borut Razem <borut.razem AT siol.net>
7338
7339         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7340           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7341           message "unmatched #pragma SAVE and #pragma RESTORE"
7342
7343 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7344
7345         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7346           assembly, critical functions, atomic, nojtbound)
7347
7348 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7349
7350         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7351         * src/SDCCBBlock.h
7352         * src/SDCCloop.c
7353         * src/SDCCloop.h
7354         * src/SDCClrange.c
7355
7356 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7357
7358         * src/z80/gen.h,
7359         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7360         * src/mcs51/gen.h
7361         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7362         * src/ds390/gen.h
7363         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7364         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7365         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7366
7367 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7368
7369         * src/z80/gen.c (genRet): fixed bug #524753
7370         * src/z80/gen.c (genCast): fixed internal error on cast from
7371         pointer to long
7372         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7373         fix for bug #477835 to the z80
7374         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7375         for tracking iCodes in the peephole optimizer for z80
7376
7377 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7378
7379         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7380         the other part of bug #814548
7381         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7382
7383 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * src/SDCCcse.c: fixed part of bug #814548
7386
7387 2003-09-28  Borut Razem <borut.razem AT siol.net>
7388
7389         * src/asm.c: rewrite of printILine() to use temporary file instead
7390           a pipe
7391         * src/xa51/main.c: commented out declaration of int rewinds
7392
7393 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7394
7395         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7396
7397 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7398
7399         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7400         * src/asm.c (printILine): Fixed bug #811015
7401
7402 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7403
7404         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7405         freeing.
7406
7407 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7408
7409         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7410         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7411         to correctly handle general case of AOP_PAIRPTR
7412         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7413
7414 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7415
7416         * src/mcs51/ralloc.c (fillGaps),
7417         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7418         register positioning bug)
7419
7420 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7421
7422         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7423
7424 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7425
7426         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7427         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7428         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7429         (ralloc doesn't intentionally do this now, but perhaps later)
7430         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7431         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7432         register positioning bugs (Fixed bug #762602 and #795325)
7433         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7434         (Fixed bug #808779)
7435         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7436         lines that --i-code-in-asm generates
7437
7438 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7439
7440         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7441         trying to fclose a FILE* that was already closed.
7442
7443 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7444
7445         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7446         of const struct should be treated as if const themselves)
7447
7448 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7449
7450         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7451
7452 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7453
7454         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7455         Unix (/n) and DOS (/r/n) line terminations.
7456
7457 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7458
7459         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7460         bug #613775
7461
7462 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/mcs51/gen.c (genFunction, genEndFunction),
7465         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7466         and restore of EA so that stack offsets to parameters are
7467         correct when using both critical and reentrant/stack-auto.
7468         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7469         size (can be triggered in error if sloc is shared between
7470         different sized objects)
7471         * device/include/float.h: fixed macros to explicitly use
7472         unsigned long where needed
7473
7474 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7475
7476         Feature req. 799831: added code to allow nesting of critical functions
7477         * src/mcs51/gen.c (genFunction, genEndFunction)
7478         * src/ds390/gen.c (genFunction, genEndFunction)
7479
7480 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7481
7482         * src/SDCCsymt.c (sclsFromPtr),
7483         * src/SDCCsymt.h,
7484         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7485         support for standard C idiom of memory mapped variables; for
7486         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7487         to xdata int at 0x1234 tempvar = 1.
7488         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7489         provided by Akiya ISHIDA
7490
7491 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7492
7493         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7494         * src/SDCCval.c (constVal): added reduction from int to char
7495         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7496         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7497         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7498         to ignore the sign
7499         * support/regression/tests/shifts.c: fixed
7500
7501 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7502
7503         * src/z80/gen.c (genXor): Fixed bug #805445
7504
7505 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7506
7507         Fixed bug #621531 (const & volatile confusion in the type chain).
7508         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7509         refer to the const or volatile state of the pointer itself.
7510
7511         * src/SDCCast.c
7512         * src/SDCCglue.c
7513         * src/SDCCicode.c
7514         * src/SDCCsymt.c
7515         * src/SDCCval.c
7516         * src/SDCC.y
7517         * src/SDCCsymt.h
7518         * src/pic/gen.c
7519         * src/pic/ralloc.c
7520         * src/pic16/gen.c
7521         * src/pic16/ralloc.c
7522         * support/regression/tests/const.c
7523
7524 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7525
7526         When checking for duplicated modules, use absolute paths
7527         instead of relative paths.  Files changed:
7528
7529         * as/mcs51/lklib.c
7530         * link/z80/lklib.c
7531
7532 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7533
7534         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7535
7536 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7537
7538         * device/include/string.h: added size_t typedef, changed
7539         prototypes to use size_t, eliminated separate reentrant and
7540         non-reentrant declarations, added _memmove declaration
7541         * device/lib/_memcpy.c: changed to use size_t instead of int,
7542         changed /4 to >>2 to avoid division library call
7543         * device/lib/_memcmp.c,
7544         * device/lib/_memset.c,
7545         * device/lib/_strncat.c,
7546         * device/lib/_strncpy.c,
7547         * device/lib/_strncmp.c: changed to use size_t instead of int
7548         * device/lib/_memmove.c: new file (fixed bug #772294)
7549         * device/lib/Makefile.in: added _memmove.c
7550         * device/lib/z80/asm_strings.s: fixed bug #772290
7551         * support/regression/tests/bitfields.c: attempt to fix host assertion
7552         failure on amd64-unknown-linux2.2
7553
7554 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7555
7556         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7557         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7558         * as/z80/asmain.c (main): fixed bug #801766
7559
7560 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7563         compilers
7564
7565 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7566
7567         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7568         reported in bug #800609
7569
7570 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7571
7572         * Top header beautifications in src/pic16 directory:
7573           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7574           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7575           pcoderegs.h, ralloc.c, ralloc.h
7576         * main.c: added top header and GPL license notice
7577         * pcode.c: fixed the if-conditional warning
7578
7579 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7580
7581         * device/lib/_mullong.c: replaced int by short for gcc
7582
7583 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7584
7585         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7586         and JUMPTABLE iCodes properly now (worked by accident before)
7587         * src/mcs51/gen.c (leftRightUseAcc),
7588         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7589         iCode properly now. Use getSize instead of nRegs since a & b
7590         aren't part of the nRegs tally.
7591
7592 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7593
7594         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7595         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7596           before instructions that use the _STATUS register
7597
7598 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7599
7600         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7601         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7602         fetching of the pointer
7603         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7604         copied from genNearPointerSet()
7605         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7606         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7607         If they pop r0/r1 they must be called in the opposite order than aopOp().
7608         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7609         (resp. --stack-auto), prepared for --xstack
7610
7611 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7612
7613         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7614
7615 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7618         these ports have their own __sdcc_external_start()
7619
7620 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7621
7622         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7623         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7624         type for bits was changed. It resulted in bit variables becoming
7625         global, which is not permitted in PIC 14 assembly output.
7626
7627 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7628
7629         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7630
7631 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7632
7633         Z80 and MCS51 linkers complaint if a public symbol is defined
7634         in more than one library module:
7635
7636         * as/mcs51/lklib.c
7637         * link/z80/lklib.c
7638         * as/mcs51/Makefile.in
7639
7640 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7641
7642         A few small changes that speed up the peephole optimizer.
7643
7644         * src/SDCCpeeph.c
7645
7646 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7647
7648         Try to make the peephole optimizer smarter by maintaining
7649         an association between the assembly source code and the
7650         iCodes that originated them. Put this information to use
7651         with a new peephole rule condition "notVolatile" so that
7652         the rules can be aggressive yet still safe.
7653
7654         * src/SDCCpeeph.c
7655         * src/SDCCpeeph.h
7656         * src/mcs51/gen.c
7657         * src/mcs51/peeph.def
7658
7659 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7660
7661         Fixed bug #741761
7662
7663         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7664         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7665         if the left or right operand symbols have the accuse flag set.
7666
7667 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7668
7669         Changed the type of the result of the ! (NOT) operator to char;
7670         previously it returned the same type as the source. This allows
7671         us to eliminate all the genFloatNot functions (all of its target
7672         implementations were very buggy) since !float can use the same
7673         code as !long now.
7674
7675         * src/SDCCicode.c (ast2iCode): ! returns char
7676         * src/mcs51/gen.c (genNot, genNotFloat),
7677         * src/ds390/gen.c (genNot, genNotFloat),
7678         * src/z80/gen.c (genNot, genNotFloat),
7679         * src/pic/gen.c (genNot, genNotFloat),
7680         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7681
7682 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7683
7684         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7685         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7686            during interrupts. Ensure WSAVE is located at a shared bank address.
7687         2. Fixed page selection in some places
7688         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7689            the registers name strings.
7690         4. Fixed "signed / unsigned compare" compiler warnings.
7691         5. The PIC port manages its own allocation of the general purpose
7692            registers, but makes no attempt to reuse them. As a result when
7693            compiling it soon runs out of general purpose registers. Some
7694            additional code was added to the files pcode.c and device.c to walk
7695            through the function call tree and rename the registers so that they
7696            get reused.
7697
7698         * src/pic/device.c
7699         * src/pic/gen.c
7700         * src/pic/glue.c
7701         * src/pic/pcode.c
7702         * src/pic/pcode.h
7703         * src/pic/ralloc.c
7704         * src/pic/ralloc.h
7705         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7706         genPlus() & genMinus() when the result is the same as left or right
7707
7708 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7711
7712 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7713
7714         Made bitfield a distinct type from bit so that bitfields
7715         convert as per ANSI C and bits retain their traditional
7716         boolean style behaviour. Implemented bitfield support in
7717         the z80 port.
7718
7719         * src/SDCCsymt.h,
7720         * src/SDCCsymt.c,
7721         * src/SDCCast.c,
7722         * src/cdbFile.c,
7723         * src/mcs51/gen.c,
7724         * src/ds390/gen.c: bit v bitfield split
7725         * src/z80/gen.c: New support for bitfields
7726         * support/regression/tests/bitfields.c: reenabled z80,
7727         added more tests
7728
7729 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7730
7731         Rules 246.x, 247.x relate to bitfields, the others speed up
7732         access to xdata mapped I/O devices.
7733
7734         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7735
7736 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7737
7738         Cleaned up genPackBits and genUnpackBits and added two helper
7739         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7740         for literal assignments in genPackBits (thanks to Frieder for
7741         reminding me).
7742
7743         * src/mcs51/gen.c
7744         * src/ds390/gen.c
7745
7746 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7747
7748         Fixed bug #748310 (pointer to function type mishandled when the
7749         function name is omitted). Also fixed a SIGSEGV when a function
7750         attribute (reentrant, etc) is used on a non-function or on a
7751         function but misplaced before the parameter list.
7752
7753         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7754         bug #748310
7755         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7756         * support/Util/SDCCerr.h,
7757         * support/Util/SDCCerr.c: Added func attr misuse error msg
7758
7759 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7760
7761         Fixed bug #787649 by anonymous
7762         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7763         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7764
7765 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7766
7767         Fixed numerous bitfield problems.
7768
7769         * src/SDCC.y: More bitfield related error checking
7770         * src/SDCCsymt.h,
7771         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7772         * support/Util/SDCCerr.h,
7773         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7774         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7775         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7776         * support/regression/tests/bitfields.c: tests added
7777
7778 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7779
7780         Made the constant following the "interrupt" keyword optional. If
7781         omitted, the function will not automatically be given an entry
7782         in the interrupt vector table (similar to #pragma NOIV, but
7783         less syntacticly kludgy). The interrupt number is also now
7784         range checked. Also fixed a bug in the high order bit example
7785         in the manual.
7786
7787         * src/SDCC.y
7788         * src/SDCCmem.c
7789         * src/SDCCglue.c
7790         * src/SDCCsymt.h
7791         * support/Util/SDCCerr.c
7792         * support/Util/SDCCerr.h
7793         * doc/sdccman.lyx
7794
7795 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7796
7797         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7798         * src/SDCCicode.c (operandOperation): rewritten some ops
7799         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7800         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7801         other type
7802         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7803         be re-activated by defining REDUCE_LITERALS)
7804         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7805         unsigned, but are signed by default
7806         * src/SDCCval.c (constVal): rearranged
7807         * src/SDCCval.c (valMod): preliminary fix
7808         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7809         * support/regression/literalop.c: added, work in progress
7810
7811 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7812
7813         Generate warnings for useless declarations like "char data;"
7814         that don't do what new users expect.
7815
7816         * src/SDCC.y
7817         * support/Util/SDCCerr.h
7818         * support/Util/SDCCerr.c
7819
7820 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7821
7822         * src/SDCCval.c (valMult): fix overflow detection of negative int
7823
7824 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7825
7826         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7827
7828         Changes to support big endian targets:
7829
7830         * src/ports.h
7831         * src/SDCCglue.c
7832         * src/avr/main.c
7833         * src/ds390/main.c
7834         * src/izt/i186.c
7835         * src/mcs51/main.c
7836         * src/pic/main.c
7837         * src/pic16/main.c
7838         * src/xa51/main.c
7839         * src/z80/main.c
7840
7841 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7842
7843         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7844         * device/lib/time.c: fixed warning "integer overflow in expression"
7845
7846 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7847
7848         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7849         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7850         constants are unsigned; added recognition of "u" flag for unsigned
7851         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7852         * src/SDCCval.c (valDiv, valMod): fixed signdness
7853         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7854         signedness of modulo, left and right shift
7855         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7856         * support/Util/SDCCerr.h: added warning W_INT_OVL
7857         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7858         * src/SDCCast.c (ast_print): improved output of constants
7859
7860 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7861
7862         Fixed some warnings when building with MSVC:
7863
7864         * as\mcs51\asdata.c
7865         * as\z80\asdata.c
7866         * as\mcs51\asm.h
7867         * as\z80\asm.h
7868         * link\z80\aslink.h
7869         * link\z80\lkdata.c
7870         * link\z80\lkeval.c
7871         * link\z80\lkgb.c
7872         * link\z80\lkihx.c
7873         * link\z80\lks19.c
7874         * link\z80\lksym.c
7875         * support\cpp2\cpplib.c
7876         * src\ds390\gen.c
7877         * src\mcs51\gen.c
7878
7879 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7880
7881         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7882
7883 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7884
7885         * support\librarian\clean.mk: Do not remove Makefile.
7886         * support\librarian\Makefile: added.
7887
7888 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7889
7890         Added librarian to MSVC build:
7891         * all.dsp
7892         * sdcc.dsw
7893         * support\librarian\librarian.dsp
7894
7895         'configure' not needed for librarian, removed:
7896         * support\librarian\configure
7897         * support\librarian\configure.in
7898         * support\librarian\config_in.h
7899         * support\librarian\Makefile.in
7900
7901         Hopefully these ones built the librarian and the rest of sdcc properly:
7902         * Makefile
7903         * Makefile.common.in
7904
7905         Messed up 'configure', so revert to previous version:
7906         * configure
7907         * configure.in
7908
7909 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7910
7911         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7912         there, while the mantissa of a double is "only" 53 bits wide.
7913
7914 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7915
7916         Adding sdcclib to the build.  MSVC project coming soon.
7917         Files added/changed:
7918
7919         * support\librarian\clean.mk
7920         * support\librarian\configure
7921         * support\librarian\configure.in
7922         * support\librarian\config_in.h
7923         * support\librarian\Makefile.bcc
7924         * support\librarian\Makefile.in
7925         * support\librarian\sdcclib.c
7926         * Makefile.bcc
7927         * Makefile
7928         * Makefile.common.in
7929         * configure
7930         * configure.in
7931
7932 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7933
7934         Linker now complaints if linked modules have conflicting options, for
7935         example, one compiled using --model-large and another one compiled with
7936         --model-small.  The following files were modified:
7937
7938         * as\mcs51\asdata.c
7939         * as\mcs51\aslink.h
7940         * as\mcs51\asm.h
7941         * as\mcs51\asmain.c
7942         * as\mcs51\asout.c
7943         * as\mcs51\i51pst.c
7944         * as\mcs51\lkdata.c
7945         * as\mcs51\lklibr.c
7946         * as\mcs51\lkmain.c
7947         * as\z80\asdata.c
7948         * as\z80\asm.h
7949         * as\z80\asmain.c
7950         * as\z80\asout.c
7951         * as\z80\z80pst.c
7952         * link\z80\aslink.h
7953         * link\z80\lkdata.c
7954         * link\z80\lklibr.c
7955         * link\z80\lkmain.c
7956         * src\SDCCglue.c
7957
7958 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7959
7960         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7961         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7962
7963 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/z80/mappings.i: fix _mul[us][int,long] entries
7966
7967 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7968
7969         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7970
7971 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7972
7973         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7974         * support/regression/tests/bitopcse.c: added
7975         fixed warning:
7976         * src/avr/gen.c:
7977         * src/pic/gen.c:
7978         * src/pic16/gen.c:
7979         * src/z80/gen.c:
7980         * src/xa51/gen.c:
7981
7982 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7983
7984         added support for new library format to z80, gbz80 linkers:
7985         *link/z80/aslink.h
7986         *link/z80/lklex.c
7987         *link/z80/lklib.c
7988         *link/z80/lklist.c
7989
7990 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7993         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7994
7995 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7996
7997         added DUMMY_READ_VOLATILE:
7998         * src/SDCC.y:
7999         * src/avr/gen.c:
8000         * src/xa51/gen.c:
8001         * src/z80/gen.c:
8002         * src/pic/gen.c:
8003         * src/pic16/gen.c:
8004         * src/mcs51/gen.c:
8005         * src/ds390/gen.c:
8006         * src/SDCCcse.c (algebraicOpts): many improvements
8007         * src/SDCCcse.h: removed algebraicOpts()
8008         * src/SDCCicode.c (picDummyRead): added
8009
8010 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8011
8012         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8013         "Insufficient space in data memory".
8014
8015 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8016
8017         * src/mcs51/gen.c: fixed bug #771358
8018         * src/z80/gen.c: fixed bug #759087
8019
8020 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * src/pic16/glue.c: minor cleanup by Vangelis
8023
8024 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8025
8026         * device/include/regc515c.h: fixed #758477
8027         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8028         * device/lib/_gptrput.c: saved a few bytes
8029         * my tab spacing is 8, yours too?)
8030         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8031         * device/lib/serial.c: process RX bytes earlier than TX bytes
8032         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8033
8034 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8035
8036         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8037
8038 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8039
8040     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8041
8042 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8043
8044         * device/lib/Makefile.in: bad fix, reverted to 1.43
8045
8046 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8047
8048         * device/lib/Makefile.in: added missing z80 object files
8049
8050 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8051
8052         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8053         pic16 progress by Vangelis:
8054         * src/SDCCglobl.h:
8055         * src/SDCCmain.c:
8056         * src/pic/Makefile:
8057         * src/pic:
8058         * pic/Makefile:
8059         * pic16/device.c:
8060         * pic16/device.h:
8061         * pic16/gen.c:
8062         * pic16/gen.h:
8063         * pic16/genarith.c:
8064         * pic16/glue.c:
8065         * pic16/main.c:
8066         * pic16/pcode.c:
8067         * pic16/pcode.h:
8068         * pic16/pcodepeep.c:
8069         * pic16/peeph.def:
8070
8071 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8072
8073     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8074
8075 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8076
8077     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8078     added gbz80 build to MSVC project.
8079     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8080     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8081     from 8051 stuff and setup so it links using a .lnk file.
8082
8083 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8084
8085     * support/librarian/sdcclib.c: sdcc librarian.
8086     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8087     with sdcclib.
8088
8089 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8090
8091     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8092
8093 2003-07-02  Borut Razem <borut.razem AT siol.net>
8094
8095         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8096         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8097         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8098         src/xa51/main.c, src/z80/main.c:
8099         virtualization of glue() function: each port has it's own glue function,
8100         which is accessed by do_glue function pointer in PORT.general structure
8101
8102 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8103
8104         * DS800C400 fun, improved ROM interface and tinibios.
8105
8106 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8107
8108         * More support for DS80C400. Now includes beginning of interface to ROM.
8109
8110 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8111
8112         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8113
8114 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8115
8116         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8117
8118 2003-06-19  Borut Razem <borut.razem AT siol.net>
8119
8120         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8121
8122 2003-06-19  Borut Razem <borut.razem AT siol.net>
8123
8124         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8125         fixed Z80 port - crt0.o: cannot open.
8126
8127 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8128
8129         * support/Util/MySystem.c (merge_command): revert bad fix
8130
8131 2003-06-18  Borut Razem <borut.razem AT siol.net>
8132
8133         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8134
8135 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8136
8137         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8138         option --use-stdout sends errors to stdout instead of stderr.
8139
8140 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8143
8144 2003-06-15  Borut Razem <borut.razem AT siol.net>
8145
8146         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8147         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8148         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8149         fixed width array of pointers replaced with sets;
8150         multiple include and lib paths ared transferred to preprocessor and linker
8151         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8152         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8153         fixed width array of pointers
8154         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8155         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8156         fixupPath(), getPathDifference()
8157         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8158         fixed width array of pointers
8159
8160 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8161
8162         * src/pic16/ralloc.c: fix warnings
8163         * src/pic16/pcode.c: fix warning
8164
8165 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8166
8167          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8168         know all the details, but essentially this set of changes enable
8169         the pic16 port to generate movff instructions and generate assembler
8170         directives,
8171         * src/SDCCmain.c:
8172         * src/pic16/gen.c:
8173         * src/pic16/glue.c:
8174         * src/pic16/pcode.c:
8175         * src/pic16/device.c:
8176         * src/pic16/main.c:
8177         * src/pic16/pcode.h:
8178         * src/pic16/pcoderegs.c:
8179         * src/pic16/ralloc.c:
8180         * src/pic16/ralloc.h:
8181
8182 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8183
8184         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8185         added option --vc, so sdcc errors and warnings are compatible with
8186         Microsoft Visual Studio.
8187
8188 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8189
8190         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8191           device/lib/libfloat.lib: added atof function.
8192
8193 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * doc/sdccman.lyx: updated to Lyx 1.3
8196         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8197         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8198         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8199
8200 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8203
8204 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8205
8206         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8207           additions to the "related tools/documentation" section
8208
8209 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8212
8213 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8214
8215         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8216         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8217
8218 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8219
8220         * doc/sdccman.lyx: fix double dash and other minor things
8221         * doc/Makefile: fix double dash
8222
8223 2003-05-28  Karl Bongers(patches from Martin Helmling)
8224         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8225           condition and ignore commands.
8226
8227 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8228
8229         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8230           is in parts still quite out of date, I did changes as far as I felt makes sense
8231           for a non-native english speaker.
8232           Please feel free to add to the manual or to correct my changes.
8233         * doc/Makefile: undid touching the date of intermediate tex files.
8234
8235 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8236
8237         * doc/sdccman.lyx: Manual has an index now
8238
8239 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8240
8241         Finalize muluint/mulsint and mululong/mulslong merging:
8242         * device/lib/_mulint.c
8243         * device/lib/_mullong.c
8244         * device/lib/gbz80/mul.s
8245         * device/lib/gbz80/stubs.s
8246         * device/lib/z80/mul.s
8247         * device/lib/z80/stubs.s
8248         * src/SDCCsymt.c (initCSupport)
8249
8250 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8251
8252         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8253         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8254           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8255           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8256           instead of /Zm500.
8257
8258 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8259
8260         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8261           the regression tests I'm not brave enough to enable 245.b, 245.c
8262         * doc/sdccman.lyx: added latex preamble for hyperref package.
8263           Using pdflatex this will give you a hyperlinked pdf file with
8264           bookmarks. (prepend '%' before /usepackage if this breaks something)
8265
8266 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8267
8268          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8269
8270 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8271
8272         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8273
8274 2003-05-21    <johan AT balder>
8275
8276         * src/SDCCglue.c (printIval): fixed bug #739934
8277
8278 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8279
8280         Applied patch from bug 737905 (renamed yylineo to mylineno):
8281         * src/altlex.c
8282         * src/SDCCast.c
8283         * src/SDCglobl.h
8284         * src/SDCC.lex
8285         * src/SDCCsymt.c
8286         * src/SDCCval.c
8287         * src/pic16/pcode.c: Cleaned warnings
8288         * src/pic16/pcodeflow.c: Cleaned warnings
8289         * src/pic16/pcoderegs.c: Cleaned warnings
8290
8291 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8292
8293         * src/pic16/pcode.c: Cleaned warnings
8294         * src/pic16/pcodepeep.c: Cleaned warnings
8295         * src/pic16/ralloc.c: Cleaned warnings
8296
8297 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8298
8299         * doc/sdccman.lyx: fixed bug 739745
8300         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8301
8302 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8305         it can be defined with CFLAGS when running configure
8306         * src/SDCCmain.c: fixed compiling + linking with object files
8307
8308 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8309
8310         * configure.in: configure for pic16 port,
8311             added --disable-pic16-port
8312         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8313         * src/SDCCmain.c: linkOptions is changed to set *,
8314             added if/endif conditional macros to remove options help
8315             messages from optionsTable when a port is not configured, added
8316             support for the PIc16 port in the ports table, when executing
8317             the compiler with no port specified on command line, a default
8318             port is selected with the new macro DEFAULT_PORT which is
8319             defined in port.h, in setDefaultOptions() linkOptions is removed
8320             from initialization assignment, since now it is a set,
8321             parseCmdLine uses setParseWithComma for linkOptions, in
8322             linkEdit() linkOptions are accessed with new function indexSet()
8323             which returns the i'th item of a set variable. See SDCCset.c, in
8324             linkEdit() when calling buildCmdLine(), added linkOptions as
8325             last argument. Now users can pass arguments to gplink via the
8326             -Wl option, main() uses pic16glue() to glue up pic16 programs
8327         * src/SDCCpeeph.c: various changes to support pic16
8328         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8329             return the i'th item of the set
8330         * src/SDCCset.h: added function prototype for indexSet()
8331         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8332         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8333         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8334             added macro DEFAULT_PORT
8335         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8336         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8337             generated
8338         * src/pic16/glue.c: commented out some error producing lines
8339         * src/pic16/main.c: __config directives are commented out to stop
8340             gpasm complaining and test the linkage with gplink, _linkCmd and
8341             _asmCmd changed to be more gplink and gpasm friendly
8342         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8343             produced an error when parsed, peep rule 12 is added to utilize
8344             movff, but it is commented out since the pCode does not support
8345             yet a command with 2 address arguments
8346
8347 2003-05-18    <johan AT balder>
8348
8349         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8350         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8351 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8352
8353         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8354   Added feature to script commands from file.
8355
8356 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8359         * src/SDCCutil.c: include ctype.h for win32
8360
8361 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8362
8363         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8364
8365 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8366
8367         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8368   Fixed so you can set breakpoints prior to run, run does not stop
8369   on entry now.  Add tbreak.  Other enhancements and fixes for use
8370   with ddd.
8371
8372 2003-05-12  Borut Razem <borut.razem AT siol.net>
8373
8374         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8375
8376 2003-05-11  Borut Razem <borut.razem AT siol.net>
8377
8378         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8379         the path of bin directory, so that PATH is the only env. variable, which has to be set
8380         in case of standard installation.
8381         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8382         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8383         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8384
8385 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8388         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8389         temp files are in the port dir; clean the gen/test directory when
8390         generating new test.c
8391         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8392         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8393         * support/regression/tests/zeropad.c: added
8394
8395 2003-05-09    <johan AT balder>
8396
8397         * src/SDCCglue.c: fixed bug #597940
8398
8399 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8400
8401         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8402   cache sfr, optimize next,step, fix off by one sourceline,
8403   support ddd list function.
8404         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8405
8406 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8407
8408         * support/regression/HTMLgen.py: added compare_s2f()
8409         * support/regression/Makefile: redo 1.27
8410         * support/regression/generate-cases.py: redo 1.5
8411
8412 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8413
8414         * support/regression/tests/float.c: workaround 33 bit hex constant
8415         * support/regression/tests/simplefloat.c: fix division for host
8416
8417 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8418
8419         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8420         that tame's the PIC's over-aggressive optimizer.
8421
8422 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8423
8424          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8425          support for MSVC.
8426
8427 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8428
8429         Initial support for DS80C400. "Hello world" runs on TINIm400
8430         (with polled I/O).
8431
8432 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8433
8434          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8435          * Some notes on ddd usage added in debugger/README
8436          Martin Helmling adding more features and fixes for ddd GUI debugger.
8437          Code added for nexti, stepi, up, down, and other adjustments.
8438
8439 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8440
8441         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8442         * src/pic/peeph.def Added two rules to optimize carry manipulation
8443         * src/pic/* removed debug printfs
8444
8445 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8446
8447         * debugger/mcs51/cmd.c: added header newalloc.h
8448
8449 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8450
8451         * as/Makefile: new EXEEXT
8452         * as/z80/Makefile: remove trailing slash of BUILDIR
8453         * as/z80/clean.mk: new EXEEXT
8454         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8455         * support/cpp2/Makefile.in: new EXEEXT
8456         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8457
8458 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8459
8460         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8461         EXEEXT was introduced to fix all related problems with targets
8462         "clean", "install" and "uninstall"; a couple of further flaws
8463         especially with "clean" have been fixed too
8464         * as/mcs51/Makefile.in
8465         * as/mcs51/clean.mk
8466         * as/z80/Makefile
8467         * Makefile
8468         * clean.mk
8469         * debugger/mcs51/Makefile.in
8470         * debugger/mcs51/clean.mk
8471         * link/z80/Makefile
8472         * link/z80/Makefile.in
8473         * link/z80/clean.mk
8474         * link/Makefile
8475         * packihx/Makefile.in
8476         * packihx/clean.mk
8477         * sim/ucsim/Makefile
8478         * sim/ucsim/clean.mk
8479         * sim/ucsim/avr.src/Makefile.in
8480         * sim/ucsim/avr.src/clean.mk
8481         * sim/ucsim/s51.src/Makefile.in
8482         * sim/ucsim/s51.src/clean.mk
8483         * sim/ucsim/xa.src/Makefile.in
8484         * sim/ucsim/xa.src/clean.mk
8485         * sim/ucsim/z80.src/Makefile.in
8486         * sim/ucsim/z80.src/clean.mk
8487         * sim/ucsim/main_in.mk
8488         * sim/ucsim/packages_in.mk
8489         * sim/ucsim/gui.src/Makefile.in
8490         * sim/ucsim/gui.src/serio.src/Makefile.in
8491         * sim/ucsim/gui.src/serio.src/clean.mk
8492         * src/Makefile.in
8493         * src/clean.mk
8494         * support/cpp2/Makefile.in
8495         * support/cpp2/clean.mk
8496         * support/makebin/Makefile
8497         * support/makebin/clean.mk
8498         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8499         * doc/sdccman.lyx: --program-suffix no longer needed
8500
8501 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8502
8503          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8504          Martin Helmling added support for ddd GUI debugger.
8505          Code added to display assembly, set variables, and other commands
8506          to interface to ddd.
8507
8508 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         * as/Makefile: fix target clean
8511         * as/clean.mk: fix target clean
8512         * as/z80/clean.mk: fix target clean
8513
8514 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8515
8516         * Makefile.common.in: added  AT EXEEXT AT
8517         * configure.in: removed all mingw32 stuff
8518         * configure: rebuilt from configure.in
8519         * doc/sdccman.lyx: updated section "installation"
8520         * support/scripts/sdcc_mingw32: adapted to configure
8521         * support/scripts/sdcc_cygwin_mingw32: added
8522
8523 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8524
8525         * src/pic Added object file support for the PIC port
8526         * src/pic Applied patch from Craig Franklin (this started the object file support)
8527         * src/regression Updated the PIC regression tests for object files
8528
8529 2003-04-20  Borut Razem <borut.razem AT siol.net>
8530
8531         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8532           lklex.c: In function `getfid':
8533           lklex.c:203: warning: array subscript has type `char'
8534         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8535           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8536         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8537           stack handling macros
8538
8539 2003-04-19  Borut Razem <borut.razem AT siol.net>
8540
8541         * "handling space characters in file path" task:
8542         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8543         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8544         * support/Util/MySystem.h: make it self-sufficient
8545         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8546           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8547           handling space characters in file path
8548         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8549           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8550         * support/Util/MySystem.c: handling space characters in executable's path
8551
8552 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8553
8554         * as/z80/Makefile: fix permanent rebuild of z80
8555         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8556         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8557
8558 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8559
8560         * src/SDCCopt.c: add special case optimization to replace modulo by
8561           a power of two with a bitwise AND.
8562
8563 2003-04-18    <johan AT balder>
8564
8565         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8566
8567 2003-04-17    <johan AT balder>
8568
8569         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8570         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8571
8572 2003-04-13  Borut Razem <borut.razem AT siol.net>
8573
8574         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8575         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8576           fixed mingw problem in adl_NORMALIZE_PATH
8577
8578 2003-04-12  Borut Razem <borut.razem AT siol.net>
8579
8580         * fixed "#pragma SAVE/RESTORE can not be nested":
8581         * src/SDCC.lex: reworked pragma handling functions
8582         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8583         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8584
8585 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8586
8587         * src/SDCCutil.c (pathEquivalent): defined but not used
8588         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8589         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8590         * configure: rebuilt from configure.in
8591         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8592         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8593         * device/include/Makefile.in: replace sdcc_datadir
8594         * device/lib/Makefile.in: replace sdcc_datadir
8595         * Makefile.common.in: add LDFLAGS from configure
8596         * packihx/Makefile.in: use LDFLAGS
8597         * src/Makefile.in: use LDFLAGS
8598         * support/cpp2/Makefile.in: add LDFLAGS from configure
8599         * support/makebin/Makefile: use LDFLAGS
8600         * .version: bumped version number to 2.3.5
8601
8602 2003-04-12  Borut Razem <borut.razem AT siol.net>
8603
8604         * completed "different paths" task:
8605         * src/SDCCmacro.c: fixed bug in handling quotes
8606         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8607         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8608
8609 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8610
8611         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8612
8613 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8614
8615         * ds390/gen.c ds390/peeph.def: fix bug 706781
8616
8617 2003-04-11  Borut Razem <borut.razem AT siol.net>
8618
8619         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8620
8621 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8622
8623         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8624         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8625          set - this bit used to not be set...).
8626         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8627           bad code in PIC Port
8628         * src/regression/and2.c added to test bug 609268
8629         * src/regression/Makefile added and2.c to regression test
8630
8631
8632 2003-04-08    <johan AT CP255758-A>
8633
8634         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8635         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8636         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8637
8638 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8639
8640         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8641         fix bug #487815
8642         * support/cpp2/Makefile.in: fix bug #487815
8643         * configure: rebuilt from configure.in
8644         * Makefile.common.in: docdir changed, new path suffixes
8645         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8646         * sdcc_vc_in.h: reflect changes from sdccconf.h
8647         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8648         * src/SDCCutil.h: remove BINDIR hack
8649         * doc/sdccman.lyx: update new path hierarchy
8650
8651 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8652
8653         * src/SDCCpeeph.c: added okToRemoveSLOC test
8654
8655 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8656
8657         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8658
8659 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8660
8661         * src/SDCCpeeph.c: added labelIsReturnOnly test
8662         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8663
8664 2003-04-05    <johan AT balder>
8665
8666         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8667         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8668         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8669         * src/SDCCast.c: fixed a warning
8670         * src/SDCCast.h: fixed a warning
8671         * src/SDCCicode.c (operandFromAst): fixed a warning
8672
8673 2003-04-04    <johan AT balder>
8674
8675         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8676         * src/SDCCast.c (decorateType): fixed bug #715076
8677         * src/SDCC.y: fixed bug #702907
8678
8679 2003-04-03    <johan AT balder>
8680
8681         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8682         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8683         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8684         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8685         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8686
8687 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8688
8689         * _decdptr.c: fix return values
8690         * _gptrget.c: fix return values
8691         * _gptrgetc.c: fix return values
8692         * _gptrput.c: fix return values
8693         * _mulint.c: fix return values
8694         * as/z80/Makefile: fix 'make -j' problem
8695
8696 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8697
8698         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8699         * configure.in: big cleanup, updated to autoconf 2.5x
8700         * configure: rebuilt from configure.in
8701         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8702         * sdcc_vc_in.h: reflect changes from sdccconf.h
8703         * doc/Makefile: fixed a flaw in "make install"
8704
8705 2003-04-02    <johan AT balder>
8706
8707         * src/ds390/gen.c (genCmp): no comments
8708         * src/mcs51/gen.c (genCmp): no comments
8709         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8710         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8711
8712 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8713
8714         * support/regression/generate-cases.py: place generated file in given sub directory
8715         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8716         * support/regression/Makefile: improvements for 'make -j';
8717         side effect: it's simpler and faster now
8718
8719 2003-03-31  Borut Razem <borut.razem AT siol.net>
8720
8721         * src/z80/main.c: link-{port} and as-{port} defined without path
8722         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8723
8724 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8725
8726         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8727
8728 2003-03-30  Borut Razem <borut.razem AT siol.net>
8729
8730         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8731           changed type of list parameter to set
8732         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8733         * src/port.h: changed type of do_assemble() parameter to set
8734         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8735           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8736           definition of "cppoutfilename" macro with NULL value in preProcess()
8737         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8738         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8739         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8740           replaced with set *binPathSet
8741         * shash_add() deallocates the item, if allready exsists, before adding the new one
8742         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8743
8744 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8745
8746         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8747           a nested for loop bug in the PIC port
8748         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8749           for loops
8750
8751 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8752
8753         * support/Util/dbuf.h: remove C++ stuff to make it portable
8754
8755 2003-03-28  Borut Razem <borut.razem AT siol.net>
8756
8757         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8758           literal strings in stringLiteral()
8759         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8760         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8761           to the project
8762
8763 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8764
8765         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8766
8767 2003-03-26    <johan AT balder>
8768
8769         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8770         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8771         * src/SDCCast.c (decorateType): fixed " -v < 3"
8772
8773 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8774
8775         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8776         Added Lenny Story's debug infrastructure changes:
8777         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8778         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8779         * src/cdbFile.c: added
8780         * src/SDCCdebug.c: added
8781         * src/SDCCdebug.h: added
8782         * src/SDCCast.c (createFunction)
8783         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8784         * src/SDCCmain.c (parseCmdLine, main)
8785         * src/SDCCmem.c (redoStackOffsets)
8786         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8787         * src/SDCCsymt.h
8788         * src/common.h
8789         * src/avr/gen.c (genAVRCode)
8790         * src/ds390/gen.c (gen390Code)
8791         * src/mcs51/gen.c (gen51Code)
8792         * src/pic/gen.c (genpic14Code)
8793         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8794         * src/xa51/gen.c (genXA51Code)
8795         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8796
8797 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8798
8799         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8800         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8801
8802 2003-03-22    <johan AT balder>
8803
8804         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8805
8806 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8807
8808         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8809         * doc/cdbfileformat.lyx: added, written by Lenny Story
8810         * doc/Makefile: added cdbfileformat.lyx
8811         * doc/clean.mk: added cdbfileformat.lyx
8812
8813 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8814
8815         * src/mcs51/peeph.def: fix bug #705773
8816
8817 2003-03-20    <johan AT balder>
8818
8819         An sfr/sbit can have an "at #" AND an initializer
8820         * src/SDCCsymt.c (checkSClass):
8821         * src/SDCCmem.c (allocGlobal):
8822         * src/SDCCmem.c (allocLocal):
8823         * src/SDCCast.c (createBlock):
8824
8825 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8826
8827         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8828
8829 2003-03-16    <johan AT balder>
8830
8831         Undid the hackup of const and volatile, the problem is much bigger
8832         * src/SDCC.y:1.65
8833         * src/SDCCast.c:1.171
8834         * src/SDCCglue.c:1.138
8835         * src/SDCCicode.c:1.146
8836         * src/SDCCsymt.c:1.150
8837         * src/SDCCval.c:1.65
8838
8839 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8840
8841         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8842         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8843
8844 2003-03-13    <johan AT balder>
8845
8846         Hackup const and volatile modifiers in type chains a bit:
8847         * src/SDCC.y:1.63
8848         * src/SDCCast.c:1.169
8849         * src/SDCCglue.c:1.136
8850         * src/SDCCicode.c:1.143
8851         * src/SDCCsymt.c1.146
8852         * src/SDCCsymt.h1.59
8853         * src/SDCCval.c:1.63
8854
8855 2003-03-12    <johan AT balder>
8856
8857         * src/SDCCBBlock.h: more LRH debugging junk
8858         * src/SDCCcflow.h: more LRH debugging junk
8859         * src/SDCCloop.c: more LRH debugging junk
8860         * src/SDCC.y (struct_declaration): fixed bug #697590
8861         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8862         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8863         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8864
8865 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8866         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8867         test function names must now match exactly).
8868         * src/SDCCcse.c: added special case in findCheaperOp to allow
8869         extending a short integer. Makes less awful code for bug 700121 test case.
8870
8871 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8872
8873         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8874         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8875
8876 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8877
8878         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8879         actually called (operandsNotEqual() was called for all
8880         operandsNotEqualX tests).
8881
8882 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8883
8884         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8885         with shorter literals. Fixes bug 700121.
8886
8887 2003-03-11    <johan AT balder>
8888
8889         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8890
8891 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8892
8893         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8894         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8895
8896 2003-03-10  Borut Razem <borut.razem AT siol.net>
8897
8898         * src/SDCCmain.c: pipe preprocessor's output
8899         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8900         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8901         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8902         which closes all pipes in pipeSet set
8903         * src/SDCCset.c: free deleted item in function deleteSetItem()
8904         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8905         moved from z80 to src subproject
8906         * .version: increased version number to 2.3.4
8907
8908 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8909
8910         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8911         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8912         * support/regression/ports/xa51/spec.mk: fix typo
8913
8914 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8915
8916         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8917
8918 2003-03-09  Borut Razem <borut.razem AT siol.net>
8919
8920         * src/SDCCmain.c: pipe preprocessor's output
8921         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8922         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8923         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8924         which closes all pipes in pipeSet set
8925         * src/SDCCset.c: free deleted item in function deleteSetItem()
8926         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8927         moved from z80 to src subproject
8928
8929 2003-03-09  Borut Razem <borut.razem AT siol.net>
8930
8931         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8932         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8933         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8934         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8935         * src/SDCCglobl.h: unification of WIN32 native definitions
8936
8937 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8938
8939         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8940
8941 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * src/configure.in:   check for endianess (even while cross-compiling)
8944         * src/configure:      check for endianess (even while cross-compiling)
8945         * src/configure_in.h: check for endianess (even while cross-compiling)
8946         * src/avr/gen.c:        remove old endianess stuff
8947         * src/mcs51/gen.c:      remove old endianess stuff
8948         * src/ds390/gen.c:      remove old endianess stuff
8949         * src/pic/gen.c:        remove old endianess stuff
8950         * src/pic/genarith.c:   remove old endianess stuff
8951         * src/pic/glue.c:       fix endianess check
8952         * src/pic16/gen.c:      remove old endianess stuff
8953         * src/pic16/genarith.c: remove old endianess stuff
8954         * src/pic16/glue.c:     fix endianess check
8955         * src/xa51/gen.c:       remove old endianess stuff
8956         * src/z80/gen.c:        fix endianess check
8957         * src/SDCCglue.c:       fix endianess check
8958         * src/ds390/peeph.def: fix bug 700036
8959
8960 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8961
8962         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8963         * src/configure: find appropriate data-types on host for SDCC's int and long
8964         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8965         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8966         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8967
8968 2003-03-07    <johan AT balder>
8969
8970         Just a big NOOP:
8971                 some minor cleanups before the big shot
8972                 OP_DEFS and OP_USES now use Kevin's protection
8973                 new option --nolabelopt
8974
8975         * src/SDCCBBlock.c:
8976         * src/SDCCast.c,:
8977         * src/SDCCcflow.c:
8978         * src/SDCCcse.c:
8979         * src/SDCCicode.c:
8980         * src/SDCCicode.h:
8981         * src/SDCClabel.c:
8982         * src/SDCCloop.c:
8983         * src/SDCCmain.c:
8984         * src/ds390/ralloc.c:
8985         * src/mcs51/ralloc.c:
8986         * src/pic/ralloc.c:
8987         * src/xa51/ralloc.c:
8988         * src/z80/ralloc.c:
8989
8990 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8991
8992         * src/pic/pcode.c (get_op): fix 64 bit warnings
8993         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8994         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8995         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8996         * support/regression/tests/malloc.c: fix 64 bit warnings
8997
8998 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8999
9000         * src/mcs51/gen.c (genMinus): fixed bug 696436
9001
9002 2003-03-02  Borut Razem <borut.razem AT siol.net>
9003
9004         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9005
9006 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9007
9008         * configure.in: test for mkstemp
9009         * sdccconf_in.h: add HAVE_MKSTEMP
9010
9011 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9012
9013         * device/include/ctype.h: removed warning while using --stack-auto
9014         * device/include/malloc.h: removed warning while using --stack-auto
9015         * device/include/string.h: removed warning while using --stack-auto
9016
9017 2003-02-23  Borut Razem <borut.razem AT siol.net>
9018
9019         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9020         because NDEBUG is defined (see man assert)
9021         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9022
9023 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9024
9025         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9026         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9027
9028 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9029
9030         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9031         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9032
9033 2003-02-18    <johan AT balder>
9034
9035         * as/mcs51/asmain.c (asmbl): module can start with a digit
9036         * as/z80/asmain.c (asmbl): module can start with a digit
9037
9038 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9039
9040         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9041         * src/asm.c: fix pipe() for Mingw32
9042
9043 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9044
9045         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9046         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9047         make -V work again; --c1mode reads now from stdin
9048         * doc/sdccman.lyx: added --c1mode
9049         * support/Util/SDCCerr.c: new messages for c1 mode
9050         * support/Util/SDCCerr.h: new messages for c1 mode
9051         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9052
9053 2003-02-15    <johan AT balder>
9054
9055         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9056
9057 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9058
9059         * doc/sdccman.lyx: Environment variables, -o and other minor things
9060
9061 2003-02-14    <johan AT balder>
9062
9063         * src/xa51/main.c: before anyone really tries to use it :)
9064
9065         * Install doc's in share/sdcc/doc
9066         * removed some obsolete files
9067         * Do a proper make distclean and uninstall
9068         M Makefile.common.in
9069         R sdccbuild.sh
9070         M as/Makefile
9071         M device/include/Makefile.in
9072         M device/lib/Makefile.in
9073         M doc/sdccman.lyx
9074         M link/Makefile
9075         M sim/ucsim/doc/Makefile.in
9076         M src/clean.mk
9077         R src/avr/peeph.rul
9078         R src/xa51/peeph.rul
9079         M support/cpp2/Makefile.in
9080         M support/makebin/Makefile
9081
9082
9083 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9086
9087 2003-02-10  Borut Razem <borut.razem AT siol.net>
9088
9089         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9090         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9091         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9092         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9093         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9094         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9095         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9096         src/z80/Makefile.bcc: Borland Makefile cleanup
9097         * as/z80/Makefile.bcc: Added Borland Makefile
9098         * support/cpp2/borland.h: Removed
9099
9100 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9101
9102         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9103         * src/SDCC.lex: new pragma NOIV
9104         * src/SDCCglobl.h: new pragma NOIV
9105         * src/SDCCmem.c: new pragma NOIV
9106
9107 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9108
9109         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9110
9111 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * src/SDCCmain.c: signal handling is switched off by --debug
9114         * doc/Makefile: small fix for install; use clean.mk again
9115         * doc/clean.mk: clean *.pdf and *.html too
9116
9117 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9118
9119         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9120         * device/lib/printfl.c: fix a ds390 bug by making it portable
9121         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9122         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9123         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9124         * debugger/mcs51/cmd.c: converted multi-line string literals
9125         * sim/ucsim/globals.cc: converted multi-line string literals
9126         * src/SDCCmain.c: introduced signal handler to remove temp files
9127         * doc/Makefile: small tweaks, implement clean
9128         * doc: removed generated files
9129
9130 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9131
9132         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9133         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9134         Address Record is not correctly generated for DS390."
9135
9136 2003-02-02  Borut Razem <borut.razem AT siol.net>
9137
9138         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9139         * as/mcs51/asm.h: fixed compilation with Borland C
9140         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9141         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9142         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9143         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9144         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9145         src/z80/Makefile.bcc: delete $(LIB) only if exist
9146         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9147
9148 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9149
9150         * device/include/malloc.h: introduced NULL
9151         * device/include/string.h: introduced NULL
9152         * device/include/stdlib.h: introduced NULL
9153         * device/lib/_memcpy.c: removed NULL
9154         * device/lib/_strcat.c: removed NULL
9155         * device/lib/_strchr.c: removed NULL
9156         * device/lib/_strcmp.c: removed NULL
9157         * device/lib/_strcpy.c: removed NULL
9158         * device/lib/_strcspn.c: removed NULL
9159         * device/lib/_strlen.c: removed NULL
9160         * device/lib/_strncat.c: removed NULL
9161         * device/lib/_strncmp.c: removed NULL
9162         * device/lib/_strncpy.c: removed NULL
9163         * device/lib/_strpbrk.c: removed NULL
9164         * device/lib/_strrchr.c: removed NULL
9165         * device/lib/_strspn.c: removed NULL
9166         * device/lib/_strstr.c: removed NULL
9167         * device/lib/_strtok.c: removed NULL
9168         * device/lib/malloc.c: removed NULL, include own header
9169
9170 2003-02-02    <johan AT balder>
9171
9172         * 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
9173         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9174         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9175         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9176         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9177         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9178
9179 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9180
9181         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9182         area 'DATA'"
9183
9184 2003-02-01    <johan AT balder>
9185
9186         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9187
9188 2003-01-31    <johan AT CP255758-A>
9189
9190         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9191
9192 2003-01-30    <johan AT balder>
9193
9194         * src/SDCCBBlock.c: automatic bug detection
9195         * src/SDCCicode.c: automatic bug detection
9196
9197 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9198
9199         * src/SDCCglobl.h:   now --xram-size 0 works
9200         * src/SDCCmain.c:    now --xram-size 0 works
9201
9202 2003-01-29    <johan AT balder>
9203
9204         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9205
9206 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9207
9208         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9209         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9210         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9211         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9212         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9213         * src/SDCCmain.c:    Added options --xram-size and --code-size
9214
9215 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9216
9217         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9218         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9219
9220 2003-01-27    <johan AT balder>
9221
9222         * src/SDCC.y: fixed bug #613764
9223
9224 2003-01-26    <johan AT balder>
9225
9226         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9227         * src/SDCCsymt.h: fixed bug #673374
9228         * src/SDCCglue.c: fixed bug #661910
9229         * src/SDCCast.c: fixed bug #458099 and 673374
9230
9231 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9232
9233         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9234         * as/mcs51/strcmpi.h: added
9235         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9236         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9237         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9238         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9239         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9240         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9241         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9242         * as/mcs51/Makefile.aslink: new module strcmpi
9243         * as/mcs51/Makefile.asx8051: new module strcmpi
9244         * as/mcs51/Makefil.bcc: new module strcmpi
9245         * as/mcs51/Makefile.in: new module strcmpi
9246         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9247
9248 2003-01-26    <johan AT balder>
9249
9250         * src/SDCCglue.c: reverted back to 1.124
9251         * src/SDCCast.c: reverted back to 1.156
9252         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9253
9254 2003-01-25    <johan AT balder>
9255
9256         * src/SDCCglue.c: A better fix for bug #661910
9257         * src/SDCCast.c: A better fix for bug #661910
9258         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9259
9260 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9261
9262         * src/Makefile.in: remove spawn.o
9263         * src/SDCCmain.c: remove spawn.h
9264         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9265         * src/spawn.c: removed
9266         * src/spawn.h: removed
9267         * support/regression/ports/ds390/spec.mk: link with -r
9268
9269 2003-01-24    <johan AT CP255758-A>
9270
9271         * src/ds390/gen.c (aopOp): fixed bug #667458
9272         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9273         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9274         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9275
9276 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9277
9278         * src/mcs51/peeph.def: better assembler identation by Frieder
9279         * src/mcs51/gen.c: better assembler identation by Frieder
9280
9281 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9282
9283         * as/z80/string.h: removed for gcc 3.2
9284         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9285         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9286
9287 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9290         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9291         * support/regression/Makefile: separate temp files for ports
9292         * support/regression/generate-cases.py: separate temp files for ports
9293         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9294         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9295
9296 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9297
9298         * moved tinitalk to device/examples/ds390
9299
9300 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9301
9302         * as/mcs51/lkmem.c: rflag is for DS390
9303         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9304         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9305                          (linkEdit): move mem- and map-files the same way as ihx-files
9306         * src/z80/main.c (_setDefaultOptions): removed --generic
9307         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9308         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9309         * src/pic/glue.c (picglue): --c1mode works again
9310         * src/pic16/glue.c (pic16glue): --c1mode works again
9311         * src/asm.c (printCLine): fix #660034
9312
9313 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9314
9315         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9316         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9317         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9318         * as/mcs51/lkmem (summary): better fix for sp problem
9319         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9320         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9321         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9322                                               remove --stack-after-data
9323
9324 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9325
9326         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9327         * src/SDCCutil.c (join): ugly bug: missing '\0'
9328         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9329
9330 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9331
9332         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9333         * src/port.h: typo
9334         * src/pic/main.c (_asmCmd): gpasm supports -o
9335         * src/z80/main.c: more general macros
9336         * device/lib/Makefile.in: remove intermediate files
9337
9338 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9339
9340         * .version: Bumped version number to 2.3.3
9341         * src/SDCCBBlock.c: new option -o
9342         * src/SDCCglobl.h: new option -o
9343         * src/SDCCglue.c: new option -o
9344         * src/SDCCmain.c: new option -o
9345         * src/asm.c: new option -o
9346         * src/ds390/main.c: new option -o
9347         * src/pic/glue.c: new option -o
9348         * src/pic/pcode.c: new option -o
9349         * src/pic/ralloc.c: new option -o
9350         * src/pic16/glue.c: new option -o
9351         * src/pic16/pcode.c: new option -o
9352         * src/pic16/ralloc.c: new option -o
9353         * src/z80/main.c: new option -o
9354         * device/lib/Makefile.in: use -o
9355         * support/regression/ports/ds390/spec.mk: use -o
9356         * support/regression/ports/gbz80/spec.mk: use -o
9357         * support/regression/ports/mcs51/spec.mk: use -o
9358         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9359         * support/regression/ports/z80/spec.mk: use -o
9360         * support/regression/ports/ucz80/spec.mk: use -o
9361         * support/regression/ports/xa51/spec.mk: use -o
9362         * support/regression/fwk/lib/timeout.c: fix usage string
9363
9364 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9365         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9366
9367 2003-01-07    <johan AT balder>
9368
9369         * src/SDCCast.c (decorateType): fixed bug #600035
9370
9371 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9372         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9373         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9374         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9375         * src/pic/pcode.c: outcommented unused variable to remove warnings
9376         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9377
9378 2003-01-06    <karl AT turbobit.com>
9379         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9380    regression tests.
9381
9382 2003-01-06    <johan AT balder>
9383
9384         * src/SDCCicode.c: fixed array add
9385
9386 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9387         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9388         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9389
9390 2003-01-04    <johan AT balder>
9391
9392         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9393
9394 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9395         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9396
9397 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9398         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9399         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9400
9401 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9402         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9403
9404 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9405         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9406
9407 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9408         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9409
9410 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9411
9412     * in \sdcc\as\mcs51\ changed these files in order to create an
9413     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9414     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9415     following files to include the previous two files: aslink.dsp,
9416     Makefile.aslink, Makefile.bcc, and Makefile.in.
9417
9418     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9419     .adb instead of .cdb
9420
9421 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9422
9423         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9424         value from option --iram-size.
9425
9426 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9427
9428         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9429         dram[] array.
9430
9431 2002-09-18    <wiml AT hhhh.org>
9432
9433         * SDCClrange.h: exposed setFromRange() and setToRange()
9434         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9435           packRegsForAccUse() (bug 542397)
9436         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9437           multiple times and emitting the fetch operations more than once
9438           added aopGetUsesAcc() function to allow binary operators to
9439           fetch their operands in the correct order; made genMinus() emit
9440           compact code for X = LITERAL - Y
9441
9442 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9443         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9444         sprintf() in line 1267.
9445
9446 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9447         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9448         like ports.
9449
9450 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9451         Changes to aslink (All the changes are marked with 'JCF'):
9452
9453         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9454         summary().
9455
9456         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9457         area BSEG.  Also moves, if possible, the DATA area down into the internal
9458         ram so more space is available.
9459
9460         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9461         sflag.
9462
9463         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9464         not bytes.  Function summary() which creates a memory usage summary
9465         file with extension .mem.  Reports of overlaping stack and small stack
9466         size.  If the space for the stack is less than 16 bytes aslink trows a
9467         warning.
9468
9469         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9470         the 8051.  Option 'y' for memory summary output file.
9471
9472         Changes to sdcc (All the changes are marked with 'JCF'):
9473
9474         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9475
9476         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9477         overlaying area for it (uses RegBankUsed[4]).
9478
9479         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9480         bank zero as used by default.  By default aslink locates the stack
9481         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9482         the creation of the .mem file.  Delegates the allocation of data area
9483         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9484         the begining of the stack area to aslink.
9485
9486         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9487         glue() in SDCCglue.c creates an area for it.
9488
9489 2002-09-03  Borut Razem <borut.razem AT siol.net>
9490         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9491         sdcc/src/pic/glue.c:
9492         introduced atexit() handler for teporay files removal in case of
9493         errors, assertions, ...
9494
9495 2002-08-29  Borut Razem <borut.razem AT siol.net>
9496         * sdcc/support/cpp2/auto-host_vc_in.h:
9497         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9498         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9499         Maybe there is a similar problem with BORLANDC? It should be checked!
9500
9501         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9502         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9503         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9504         was not executed, and the compiler (cl) launched a warning:
9505         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9506
9507 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9508         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9509
9510 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9511         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9512
9513         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9514           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9515           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9516           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9517           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9518           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9519           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9520         - added Release configuration in VS projects
9521         - review of compiler an linker options
9522         - VC .exe files are generated in bin_vc directory, not to interfere
9523           with binaries generated from other projects (cygwin, mingw, bcc ...)
9524
9525         * sdcc/src/yacc.dsp: added
9526
9527         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9528         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9529         and insert the version number definitions from .version
9530
9531         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9532
9533         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9534         added - genarate auto-host.h using auto-host_vc_in.h as template
9535
9536         * sdcc/sdcc_vc.h,
9537         removed from CVS, generated automatically
9538
9539 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9540         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9541
9542 2002-08-11  Borut Razem <borut.razem AT siol.net>
9543         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9544
9545 2002-08-10  Borut Razem <borut.razem AT siol.net>
9546         * src/SDCCmain.c (main):
9547         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9548         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9549         The consequence was that some temporary files were not removed.
9550
9551         * src/SDCCglue.c:
9552         unification of code in functions tempfilename() and tempfile():
9553         function tempnam() is defined in Visual Studio 6.0 and .NET
9554
9555         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9556
9557         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9558           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9559         - removed compiler command line option /WX: Treats all warnings as errors
9560         - update a list of source files, included into the project
9561
9562         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9563           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9564         changed project type to Generic Project so that can be correcly converted to VS.NET project
9565
9566         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9567
9568         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9569
9570         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9571
9572         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9573         added return 0 statements after assert() to make compiler happy
9574
9575         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9576         added newline in the def file to keep MSC compiler satisfied
9577
9578         * sdcc/src/z80/gen.c:
9579         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9580           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9581         - solved MSC error in function aopDump()
9582
9583         * sdcc_vc.h: define PREFIX as "\\sdcc"
9584
9585 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9586         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9587
9588 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9589         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9590         - Rewrote the register banking algorithm.
9591         - Added pCode live-range analysis to registers (for now, only non-used and
9592         singly-used registers optimized away)
9593
9594         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9595
9596         * 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.
9597
9598 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9599         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9600
9601 2002-04-22  Michael Hope  <michaelh AT vroom>
9602
9603         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9604
9605         * configure.in (DD_COPT): Added include support required for gbdk.
9606
9607         * .version: Bumped version number just to increase it.
9608
9609         * src/SDCCmain.c: Added -nostdinc to the default options.
9610
9611 2002-04-15  Michael Hope  <michaelh AT vroom>
9612
9613         * device/lib/z80/printf.c (sprintf): Added.
9614
9615         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9616
9617         * src/z80/peeph.def: Added transpose redundent load rule.
9618
9619         * src/z80/main.c: Added force callee saves for jaune.
9620
9621         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9622
9623         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9624
9625 2002-03-28  Johan Knol  <johan AT balder>
9626
9627         * src/SDCCval.c: fixed bug #532436
9628
9629 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9630         * /src/port.h:
9631         Added "char *Processor" field to the port structure.
9632
9633         * /src/SDCCmain.c:
9634         Added -p option. Allows port dependent processor to be specified.
9635
9636         * all ports:
9637         Initialized the new field char *Processor field to NULL in all ports
9638
9639         * /src/pic/*:
9640         Compiler generated registers for interrupt context saving
9641         were not getting allocated.
9642
9643 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9644
9645         * /src/SDCCast.c:
9646         Fixed left shift. Will promote the left side of a left shift
9647         if a) left shifting more than size of operand or b) when assigned
9648         to something size > size of left side
9649
9650 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9651         * src/pic/*
9652         tons of changes. Register allocation has been
9653         rewritten. Added customization for the various PICs. Flow
9654         analysis is restructured. ...
9655
9656         * src/pic/device.h:
9657         Added
9658
9659         * src/pic/device.c:
9660         Added. device.c is a PIC port hack to accomodate variations
9661         in PIC devices.
9662
9663 2002-03-13  Michael Hope  <michaelh AT vroom>
9664
9665         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9666
9667 2002-03-04  johanknol  <johanknol AT manik>
9668
9669         * /src/SDCCval.c: fixed
9670
9671         const unsigned char arr[][2] = { { 0, 1 } };
9672         t18.c:1: error: Initializer element is not constant
9673
9674 2002-03-04  bela  <bela AT manik>
9675
9676         * /device/include/mcs51reg.h:
9677         ds89c420 register definition update
9678
9679 2002-03-03    <johan AT FRIJA>
9680
9681         * support/Util/SDCCerr.c: did something, but don't no why anymore
9682
9683         * support/regression/tests/bug-524691.c: made it a little less shy
9684
9685         * src/SDCCast.c (decorateType): fixed bug #524697
9686
9687         * src/SDCCast.c: made some lineno improvements
9688
9689         * src/SDCCval.c (getNelements): changed warning to error
9690
9691         * src/SDCCglue.c (printIvalArray): changed warning to error
9692
9693         * src/SDCCicode.c: fixed a warning for mingw
9694
9695         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9696
9697         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9698
9699 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9700
9701         * src/ds390/peeph.def:
9702         Added some more peephole rules
9703
9704         * src/ds390/gen.c: Various fixes & enhancements
9705
9706         * src/SDCClrange.c, src/SDCClrange.h:
9707         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9708
9709         * src/ds390/ralloc.c:
9710         various fixes & enhancements (ds390) specific
9711
9712         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9713         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9714         from rallocs.
9715
9716         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9717
9718 2002-03-02    <johan AT FRIJA>
9719
9720         * src/SDCCast.c (decorateType): fixed bug #524708
9721
9722         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9723
9724         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9725
9726 2002-03-01  Michael Hope  <michaelh AT vroom>
9727
9728         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9729
9730         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9731
9732 2002-03-01    <johan AT FRIJA>
9733
9734         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9735
9736         * src/SDCCast.c (decorateType): fixed bug #524209
9737
9738         * src/SDCCval.c (valNot): fixed bug #524195
9739
9740 2002-02-26    <johan AT balder>
9741
9742         * src/xa51/gen.c: fixed a warning
9743
9744         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9745
9746         * src/SDCCast.c (decorateType): fixed bug #522534
9747
9748 2002-02-23    <johan AT balder>
9749
9750         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9751
9752 2002-02-22    <johan AT balder>
9753
9754         * src/SDCCast.c: fixed bug #514865
9755
9756         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9757
9758 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9759
9760         * sdcc/src/SDCCloop.c:
9761         Previous fix was not good. basic blocks that have "break" or "return" are
9762         not really partof a loop , but live ranges used in these blocks should
9763         be live thru the entire loop, so set partOfLoop but don't add them to
9764         loop region
9765
9766 2002-02-21    <johan AT FRIJA>
9767
9768         * src/SDCCcse.c: fixed bug #514308
9769
9770 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9771
9772         * src/SDCCloop.c:
9773         Fixed BUG #519583. If a conditional block ended in a return/break
9774         statement inside a loop, it was not being considered part of the loop.
9775
9776         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9777
9778 2002-02-10  Karl Bongers <karl AT turbobit.com>
9779
9780         * debugger/*:
9781         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9782         with lots of comments and notes.
9783
9784         * device/examples/test2.c:
9785         Fix bug, "red" variable not being initialized(compiler complained).
9786
9787         * device/examples/Makefile, examples/test3.c:
9788         Add Makefile in device/examples folder, compiles test3.c
9789         for use as a multiple module SDCDB test case.
9790
9791         * sim/ucsim/cmd.src/cmdset.cc:
9792         Took out debug printfs in ucsim "next" command.
9793
9794         * sim/ucsim/xa.src:
9795         Karl and Johan start ucsim XA support.  Most dissassembly working,
9796         about 75% emulation done(plenty of work remaining).
9797
9798         * sim/ucsim/z80.src:
9799         Add Z80 support to ucsim, add test-ucz80 regression test,
9800         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9801         Notice z80 compiler fails on examples/test3.c/crc code.
9802
9803 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9804
9805         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9806         Added support for --parms-in-bank1
9807
9808         * src/ds390/peeph.def:
9809         added a few more peephole optimzations
9810
9811         * src/ds390/main.c:
9812         1) added __builtin_inp & __builtin_outp used to read in data of given length
9813            from a memory mapped port
9814         2) added __builtin_memcmp
9815         3) added __builtin_swapw swap bytes of a short
9816
9817         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9818         1) handle multiple send & receives from register bank1
9819         2) ralloc can now allocate DPTR1 to some liveRanges
9820
9821         * src/SDCCsymt.c, src/SDCCsymt.h:
9822         changes to handle multiple sends & receives
9823
9824         * src/SDCCptropt.h:
9825         added some pointer arithmetic optimization
9826
9827         * src/SDCCptropt.c:
9828         added some pointer arithmetic optimizations but not stable yet so not
9829         called from anywhere (will get this working shortly)
9830
9831         * src/SDCCopt.c: fixed for multiple sends & receives
9832
9833         * src/SDCCmain.c:
9834         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9835         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9836            set preprocessor defines (depending on options)
9837
9838         * src/SDCCicode.c, src/SDCCicode.h:
9839         changes made to handle multiple sends & receives
9840
9841         * src/SDCCglobl.h:
9842         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9843
9844         * src/SDCCcse.c, src/SDCCcse.h:
9845         added function findbackward def (to be used in upcoming optimization)
9846
9847         * src/SDCCcflow.c, src/SDCCcflow.h:
9848         added function returnAtEnd - to determine if a basic block terminates with
9849         a RETURN iCode
9850
9851         * src/SDCCast.c, src/SDCCast.h:
9852         added option parms-in-bank1
9853
9854         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9855         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9856         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9857         adjusted for --parms-in-bank1 option
9858
9859         * device/include/string.h:
9860         donot redefine "reentrant" keyword
9861
9862         * device/include/ds80c390.h: Added some more SFRs
9863
9864 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9865
9866         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9867
9868 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9869
9870         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9871
9872 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9873
9874         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9875
9876 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9877
9878         * Added --xram-movc option
9879
9880 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9881
9882         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9883
9884 2002-01-11  Johan Knol
9885
9886         * Added math lib of Jesus Calvino-Fraga
9887
9888 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9889
9890         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9891         * support/regression/Makefile: new target test-mcs51-stack-auto
9892         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9893
9894 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9895
9896         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9897
9898 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9899
9900         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9901
9902 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9903
9904         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9905
9906         * src/SDCCglue.h: add definition for printIvalChar()
9907
9908 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9909
9910         * src/SDCCast.c: fix #498138 by Johan
9911
9912         * src/SDCCglue.c: fix #498138 by Johan
9913
9914 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9915
9916         * support/regression/Makefile: fix clean
9917
9918         * support/regression/ports/ds390/support.c: fix transmission of last character
9919
9920 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9921
9922         * /sdcc/src/ds390/gen.c:
9923         a) improved computing address of stack variable
9924         b) took out some #if 0 code
9925         c) improved parmBytes adjustment
9926         d) improved genPlusIncr & genMinusIncr
9927         e) genCmp could generate bad code (when left assigned to DPTR)
9928         f) Fixed bug in hasInc
9929
9930         * /sdcc/src/ds390/ralloc.c:
9931         a) packRegsForSupport could mess up live information (Fixed)
9932         b) packRegsDPTRuse could be incorrect for left & right shift
9933
9934         * /sdcc/src/mcs51/ralloc.c:
9935         packRegsForSupport could mess up the live information (Fixed)
9936
9937         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9938
9939         * /sdcc/src/SDCCast.c:
9940         can reverse a loop even if function call is present as long
9941         as the loop control variable is local & is not passed as parameter
9942
9943 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9944
9945         * /sdcc/ChangeLog: *** empty log message ***
9946
9947         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9948         More builtin function additions for TININative
9949
9950         * /sdcc/src/ds390/ralloc.c:
9951         Had broken the regression testsuite
9952
9953         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9954
9955         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9956         Added funcattr hasStackParms will be set for reentrant functions when there
9957         are paramteres on the stack, this helps in minimizing frame pointer generation
9958         typeFromStr can handle function pointers now
9959
9960         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9961         *** empty log message ***
9962
9963 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9964
9965         * /src/ds390/gen.c, /src/ds390/main.c:
9966         More builtin function additions for TININative
9967
9968         * /src/ds390/ralloc.c:
9969         Had broken the regression testsuite
9970
9971         * /src/SDCCast.c: Fixed a bug in dumptree
9972
9973         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9974         Added funcattr hasStackParms will be set for reentrant functions when there
9975         are paramteres on the stack, this helps in minimizing frame pointer generation
9976         typeFromStr can handle function pointers now
9977
9978         * /doc/builtins.txt, /doc/TININative.txt:
9979         *** empty log message ***
9980
9981
9982 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9983
9984         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9985         ALPHA version for -mTININative
9986
9987         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9988         updated to reflect changes in the port structure
9989
9990         * /src/port.h:
9991         added function do_assemble (similar to do_link) if non-null this function
9992         will be called to do assembly (-mTININative) requires a multi command
9993         assembly
9994         added function genAssemblerEnd will be called to generate assembler Epilogue
9995
9996         * /src/SDCCsymt.c:
9997         added _JavaNative to debug info printing
9998
9999         * /src/SDCCmain.c: added option --tini-libid
10000         added port->do_assemble function (-mTININative) has a multi command assemble
10001
10002         * /src/SDCCglue.c: Disabled "constExpr" check
10003         added port->genAssemblerEnd function
10004
10005         * /src/SDCCglobl.h: Added option --tini-libid value
10006
10007         * /src/SDCCast.h:
10008         tookout optimizeCompare from the header (has no external references)
10009
10010         * /src/SDCCast.c: made one more function "static"
10011
10012 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10013
10014         * src/z80/mappings.i: Added z80asm support.
10015
10016         * src/z80/main.c: Added z80asm support on --asm=z80asm
10017
10018         * src/z80/gen.c: Fixed asm portability issues.
10019
10020         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10021
10022         * src/SDCCglue.c (printExterns): Added global/extern split.
10023
10024 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10025
10026         * support/regression/Makefile: added test for mcs51 model large
10027
10028         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10029
10030         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10031
10032 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10033
10034         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10035
10036 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10037
10038         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10039
10040         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10041
10042 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10043
10044         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10045
10046         * support/regression/tests/simplefloat.c: Port to mcs51.
10047
10048 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10049         * support/regression/tests/bug-485362.c: Added.
10050
10051         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10052
10053         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10054
10055         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10056
10057         * src/z80/gen.c (aopDump): Added a dump function.
10058
10059 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10060         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10061
10062         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10063
10064         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10065
10066         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10067
10068         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10069
10070         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10071
10072         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10073
10074         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10075
10076         * support/regression/ports/ds390/support.c: Use tinibios.
10077
10078         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10079
10080 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10081
10082         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10083         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10084
10085         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10086
10087         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10088
10089 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10090
10091         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10092
10093         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10094         (packRegsForIYUse): Created and optimised.
10095
10096 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10097
10098         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10099 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10100
10101         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10102
10103         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10104
10105         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10106
10107 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10108
10109         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10110
10111         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10112
10113 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10114
10115         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10116
10117         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10118
10119         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10120
10121 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10122
10123         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10124         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10125         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10126
10127         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10128
10129         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10130         (genNotFloat): Added.
10131         (genUminusFloat): Added.
10132
10133         * device/lib/z80/Makefile: Added floating pt stubs.
10134
10135         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10136
10137         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10138
10139         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10140
10141 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10142
10143         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10144
10145         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10146
10147         * sdcc/support/regression/Makefile: Add port ds390.
10148
10149         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10150
10151         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10152
10153         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10154
10155         * sdcc/support/regression/ports/ds390/support.c: Added.
10156
10157         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10158
10159         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10160
10161         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10162
10163 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10164
10165         * device/include/malloc.h: Added z80 and gbz80 support.
10166
10167         * device/lib/gbz80/heap.s: Added.
10168
10169         * device/lib/z80/heap.s: Added.
10170
10171         * device/lib/malloc.c: Added z80 and gbz80 support.
10172
10173         * support/regression/tests/malloc.c (testMalloc): Added.
10174
10175         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10176
10177         * support/regression/tests/bug-478094.c: Added.
10178
10179         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10180
10181 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10182
10183         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10184
10185         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10186
10187         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10188
10189         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10190
10191         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10192
10193 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10194
10195         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10196
10197 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10198
10199         * support/regression/tests/bug-477927.c: Added.
10200
10201         * src/z80/peeph.def: Added minor rules.
10202
10203         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10204
10205         * src/z80/peeph.def: Added jump optimisation modification.
10206
10207 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10208
10209         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10210
10211 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10212
10213         * support/regression/tests/funptrs.c: Added.
10214
10215 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10216
10217         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10218
10219 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10220
10221         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10222
10223         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10224
10225         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10226         (movLeft2ResultLong): Created.
10227
10228         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10229         (joinPushes): Added.  Joins two char pushes into a word push.
10230
10231 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10232
10233         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10234
10235         * support/makebin/Makefile (install): Added creation of dest dir.
10236
10237 2001-10-24 Karl Bongers <karl AT turbobit.com>
10238
10239         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10240
10241 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10242
10243         * src/z80/ralloc.c: Turned off faulty pack for one use.
10244
10245         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10246
10247         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10248
10249 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10250
10251         * support/regression/Makefile: Improved clean
10252
10253         * support/regression/ports/gbz80/spec.mk: Added clean
10254
10255         * support/regression/ports/host/spec.mk: Added clean
10256
10257         * support/regression/ports/z80/spec.mk: Added clean
10258
10259         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10260
10261         * support/regression/ports/mcs51/timeout.c: little improvements
10262
10263 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10264
10265         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10266
10267         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10268
10269         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10270
10271 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10272
10273         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10274
10275         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10276
10277 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10278         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10279
10280         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10281
10282         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10283
10284         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10285
10286         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10287
10288         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10289
10290         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10291
10292         * support/regression/tests/longor.c: Added.
10293
10294 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10295
10296         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10297
10298         * as/mcs51/aslink.h: define PATH_MAX
10299
10300         * as/mcs51/asm.h: define PATH_MAX
10301
10302         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10303
10304         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10305
10306         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10307
10308         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10309
10310         * src/SDCCglobl.h: define PATH_MAX
10311
10312         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10313
10314         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10315
10316 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10317
10318         * src/z80/gen.c (gencjneshort): Fixed
10319
10320         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10321
10322 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10323
10324         * support/regression/tests/bug-469671.c: Added.
10325
10326         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10327
10328 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10329
10330         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10331
10332         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10333
10334 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10335
10336         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10337
10338         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10339
10340         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10341
10342         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10343
10344         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10345
10346         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10347
10348         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10349
10350 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10351
10352         * 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.
10353
10354         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10355
10356         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10357
10358 2001-10-07    <johan AT FRIJA>
10359
10360         * device/lib/gets.c (gets): fixed the return value.
10361
10362 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10363         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10364
10365         * 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.
10366
10367         * 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.
10368
10369         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10370
10371         * src/pic/gen.c: Removed Safe_strdup.
10372
10373         * configure.in: Added option to enable libgc support.
10374
10375         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10376         (bitVectUnion): Optimised.
10377         (bitVectIntersect): Optimised.
10378         (bitVectBitsInCommon): Optimised.
10379         (bitVectCplAnd): Optimised.
10380
10381         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10382
10383 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10384
10385         * src/SDCCmain.c: distinguish between assembler debug and plain options
10386
10387         * src/avr/main.c:   remove standard assembler options
10388
10389         * src/ds390/main.c: remove standard assembler options
10390
10391         * src/mcs51/main.c: remove standard assembler options
10392
10393         * src/port.h: removed "PENDING" comment
10394
10395 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10396
10397         * src/device/lib/_mulint.c  : new, with assember functions
10398
10399         * src/device/lib/_mullong.c : new, with assember functions
10400
10401         * src/device/lib/_divuint.c : with assember functions
10402
10403         * src/device/lib/_divsint.c : with assember functions
10404
10405         * src/device/lib/_divulong.c: with assember functions
10406
10407         * src/device/lib/_divslong.c: with assember functions
10408
10409         * src/device/lib/_moduint.c : with assember functions
10410
10411         * src/device/lib/_modsint.c : with assember functions
10412
10413         * src/device/lib/_modulong.c: with assember functions
10414
10415         * src/device/lib/_modslong.c: with assember functions
10416
10417         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10418
10419         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10420
10421         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10422                                       replaced _mululong.c and _mulslong.c by _mullong.c
10423
10424 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10425
10426         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10427
10428 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10429
10430         * src/SDCCglue.c: test, if win32api is available for MINGW
10431
10432 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10433
10434         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10435         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10436         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10437         * support/regression/ports/host/spec.mk: removed GENERIC
10438         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10439         * support/regression/ports/z80/spec.mk: removed GENERIC
10440
10441 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10442
10443         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10444
10445         * support/regression/tests/bug-467035.c: Created.
10446
10447 2001-10-01    <johan AT FRIJA>
10448
10449         * src/SDCC.y: fixed bug #466586 part 1
10450
10451 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10452
10453         * SDCCicode.c: z80 has no generic pointers
10454         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10455
10456 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10457
10458         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10459
10460 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10461
10462         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10463
10464         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10465
10466 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10467
10468         * configure.in: Fixed up so that ucsim is only configured once.
10469
10470         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10471
10472         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10473         (getPathDifference): As above.
10474
10475         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10476
10477         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10478
10479 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10480         * .version: Updated to 2.3.1
10481
10482         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10483         Added copyright header.
10484
10485         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10486         (assemble): Added support for macro based assembler commands.
10487         (linkEdit): Added support for macro based linker commands.
10488         (preProcess): Changed the pre-processor to use macros.
10489         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10490         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10491
10492         * device/lib/z80/crt0.s: Added module name for debugging.
10493
10494 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10495
10496         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10497
10498         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10499
10500         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10501
10502         * src/Makefile.in: Added SDCCmacro and SDCCutil
10503
10504 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10505
10506         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10507
10508 2001-09-16    <johan AT FRIJA>
10509
10510         * 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.
10511
10512 2001-09-15    <johan AT FRIJA>
10513
10514         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10515         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10516
10517 2001-09-11    <johan AT FRIJA>
10518
10519         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10520
10521 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10522
10523         * support/regression/tests/bug-460444.c: Added test case.
10524
10525         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10526         (genCast): Added justification for all of the asserts.
10527
10528 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10529
10530         * support/regression/support.c: _xdata replaced by xdata
10531
10532         * support/regression/spec.mk: removed _generic
10533
10534 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10535
10536         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10537
10538         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10539         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10540
10541         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10542
10543         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10544
10545         * support/regression/tests/bug-460010.c: Added test case.
10546
10547         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10548
10549 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10550
10551         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10552
10553         * support/regression/testfwk.c: removed workaround for bug #436344
10554
10555         * support/regression/tests/bp.c: use less memory with mcs51
10556
10557         * support/regression/tests/bug-441448.c: use less memory
10558
10559         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10560
10561         * support/regression/collate-results.py: typo
10562
10563 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10564
10565         * support/regression/tests/fetchoverlap.c: Added new test case.
10566
10567         * support/regression/tests/bp.c: Added new test case.
10568
10569         * support/regression/tests/bug-448984.c: Added new test case.
10570
10571         * support/regression/tests/pow2shifts.c: Added new test case.
10572
10573         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10574         (genlshTwo): Fixed right shift for count > 8.
10575
10576         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10577
10578 2001-09-08    <johan AT FRIJA>
10579
10580         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10581
10582 2001-09-07    <johan AT FRIJA>
10583
10584         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10585
10586         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10587
10588 2001-09-06    <johan AT FRIJA>
10589
10590         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10591         * bernhard noted me at this: "() equals to (void)" (1.38)
10592
10593 2001-09-05    <johan AT FRIJA>
10594
10595         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10596
10597 2001-09-04    <johan AT FRIJA>
10598
10599         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10600
10601
10602 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10603
10604         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10605
10606 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10607
10608         * link/z80/aslink.h: Fixed path for PATH_MAX
10609
10610 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10611
10612         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10613
10614         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10615
10616         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10617
10618         * 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.
10619
10620 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10621
10622         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10623         (genCmp): Fixed up genCmp for the GB with longs.
10624
10625         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10626
10627         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10628
10629         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10630
10631         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10632
10633 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10634
10635         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10636
10637 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10638
10639         * 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.
10640
10641         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10642
10643 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10644
10645         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10646
10647         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10648
10649 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10650
10651   * sim/ucsim/configure:    little improvement of Cygwin-detection
10652   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10653   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10654   * support/regression/tests/bug-221100.c: small changes for mcs51
10655   * support/regression/tests/bug-221168.c: small changes for mcs51
10656   * support/regression/tests/bug-227710.c: small changes for mcs51
10657   * support/regression/tests/staticinit.c: small changes for mcs51
10658   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10659   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10660   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10661
10662 $Revision$