* src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
[fw/sdcc] / ChangeLog
1 2006-02-11 Borut Razem <borut.razem AT siol.net>
2
3         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
4           print "Processor: xxx" message to stdout only if --verbose
5
6 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
9         * support/regression/tests/bug1426356.c: added
10         * support/regression/tests/bitfields.c: removed 2 tests
11
12 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
15         * device/include/mcs51/c8051f330.h,
16         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
17           PCON_IDLE,PCON_STOP and added sfr16 definitions
18         * device/lib/_divsint.c,
19         * device/lib/_divuint.c,
20         * device/lib/_divulong.c,
21         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
22           register bank bug for small stackauto
23
24 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
25
26         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
27
28 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
31         * all.dsp: corrected several bin paths
32         * device/include/mcs51/c8051f120.h,
33         * device/include/mcs51/c8051f300.h,
34         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
35           to PCON_IDLE,PCON_STOP
36         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
37         * device/lib/printf_large.c (output_float): fixed bug 1388703
38         * support/regression/tests/bug1057979.c: added test for bug 1388703
39
40 2006-02-08 Raphael Neider <rneider AT web.de>
41
42         * src/pic/pcode.c (pciTRIS): fixed typo,
43           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
44           (LinkFlow): fixed handling of flows that end in a call,
45           (ReuseReg): perform safety check earlier
46         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
47             to work with flows at the beginning of a pBlock,
48             fixes #1426557 (Symbol not previously defined),
49           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
50             usage information
51           (RemoveUnusedRegisters): update register usage info
52         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
53             created, reuse existing ones instead
54         * src/pic/gen.c (genPcall): fixed #1424719
55
56 2006-02-01 Borut Razem <borut.razem AT siol.net>
57
58         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
59           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
60           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
61           src/regression/bool1.c, src/regression/bool2.c,
62           src/regression/bool3.c, src/regression/call1.c,
63           src/regression/compare.c, src/regression/compare10.c,
64           src/regression/compare2.c, src/regression/compare3.c,
65           src/regression/compare4.c, src/regression/compare5.c,
66           src/regression/compare6.c, src/regression/compare7.c,
67           src/regression/compare8.c, src/regression/compare9.c,
68           src/regression/configword.c, src/regression/for.c,
69           src/regression/inline.c, src/regression/mult1.c,
70           src/regression/nestfor.c, src/regression/or1.c,
71           src/regression/pointer1.c, src/regression/ptrfunc.c,
72           src/regression/rotate1.c, src/regression/rotate2.c,
73           src/regression/rotate3.c, src/regression/rotate4.c,
74           src/regression/rotate5.c, src/regression/rotate6.c,
75           src/regression/rotate7.c, src/regression/string1.c,
76           src/regression/struct1.c, src/regression/sub.c,
77           src/regression/sub2.c, src/regression/switch1.c,
78           src/regression/while.c, src/regression/xor.c,
79           src/regression/create_stc, src/regression/simulate,
80           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
81           regression tests
82         * src/regression/gpsim_assert.h: added
83
84 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
85
86         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
87         ((void (code *) (void)) 0) ();
88         * as/hc08/aslex.c,
89         * as/hc08/aslink.h,
90         * as/hc08/asm.h,
91         * as/hc08/asmain.c,
92         * as/hc08/lkdata.c,
93         * as/hc08/lklex.c,
94         * as/hc08/lkmain.c,
95         * as/mcs51/aslex.c,
96         * as/mcs51/aslink.h,
97         * as/mcs51/asm.h,
98         * as/mcs51/asmain.c,
99         * as/mcs51/lkdata.c,
100         * as/mcs51/lklex.c,
101         * as/mcs51/lkmain.c,
102         * as/z80/aslex.c,
103         * as/z80/asm.h,
104         * as/z80/asmain.c: fixed build on current cygwin:
105         replaced getline() by as_getline()
106
107 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
108
109         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
110         declarator in the symbol chain
111         * src/SDCCsymt.h,
112         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
113         parameter list for function pointers
114         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
115         * support/regression/tests/bug-716242.c: added
116
117 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
118
119         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
120         offset if possible
121         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
122
123 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
124
125         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
126         inifinitely recurseable, added static
127         * support/regression/tests/bug-1408066.c: added
128
129 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
130
131         * src/SDCCicode.h,
132         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
133         renamed, added possibility to create "postLoopLbl"-labels
134         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
135         newiTempLoopHeaderLabel
136         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
137         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
138         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
139         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
140         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
141         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
142         (basicInduction): fixed bug #136564, made static,
143         (loopInduction): changed parameter of basicInduction, made static,
144         (addPostLoopBlock): added
145         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
146         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
147         findLoopEndSeq
148         * support/regression/tests/bug-136564.c: added
149         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
150         --std-sdcc99 to LIBSDCCFLAGS
151
152 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
153
154         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
155         while loop
156         * support/regression/tests/bug-1406131.c: added
157
158 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
159
160         * src/SDCCast.c (decorateType): fix promotion of unary minus
161         * src/SDCCsymt.c (computeType): beautified
162         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
163         (valUnaryPM, valComplement): fix sign and promotion,
164         (valNot): ANSI: result type is int (SDCC: unsigned char)
165         * support/regression/tests/uminus.c: speedup by removing superflous
166         test case 'int'
167         * support/regression/tests/onebyte.c: added promotion and signedness
168         tests for unary minus
169         * support/regressions/tests/bug-477927.c: disable warning about
170         uninitialized variables
171         * support/regression/tests/not.c: added
172
173 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
174
175         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
176         * src/mcs51/gen.c (gen51Code): show final register usage after
177         fillGaps in asm with --i-code-in-asm
178         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
179         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
180         incUsed, rliveClear, adjustIChain): made static,
181         (setFromRange): excluded because it's unused,
182         (findPrevUseSym, markWholeLoop): added,
183         (findPrevUse): rewritten; fixes bug 895992; now a complete search
184         through all branches of predecessors enables sdcc to emit the warning
185         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
186         (rlivePoint): made static, added parameter emitWarnings which is only
187         true during the first run out of two,
188         (findRecursiveSucc, findRecursivePred): removed,
189         (computeLiveRanges): made static, added parameter emitWarnings,
190         (dumpIcRlive): added for debugging only
191         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
192         removed prototype of setFromRange()
193         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
194         in call of computeLiveRanges()
195         * support/regression/tests/bug-895992.c: added
196         * support/regression/tests/bug-971834.c: added
197         * support/valdiag/tests/bug-895992.c: added
198         * support/valdiag/tests/bug-971834.c: added
199
200 2005-12-18 Raphael Neider <rneider AT web.de>
201
202         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
203           (genUnpackBits): improved code for direct operands,
204           (genPackBits): improved code for literal assignment to bitfields
205             and for direct destination operands (no FSR indirection),
206             prevented redundant AND, fixes #1362800,
207           (AccLsh): added parameter to disable masking of the result
208         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
209           skip instructions with side-effects (like incfsz),
210           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
211         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
212         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
213           fixes #1375263
214
215 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
216
217         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
218         volatile variables as spill location
219
220 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
221
222         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
223         replacing literals
224         * support/regression/tests/bug-1376320.c: added
225
226 2005-12-08 Raphael Neider <rneider AT web.de>
227
228         * src/pic/device.c: renamed is_shared to pic14_is_shared
229         * src/pic/gen.c (genIfx): re-enabled handling of sbits
230         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
231           (is_valid_identifier): added for above workaround
232
233 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
234
235         * device/lib/Makefile.in: fixed to enable port-specific-objects
236         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
237           char, thanks Hubert Sack
238         * doc/sdccman.lyx: documented --xstack-loc,
239           elaborated a bit more on interrupts and pitfalls,
240           removed "setjmp/longjmp unsupported",
241           documented some unsupported C99 features
242         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
243         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
244           if, thanks Hubert Sack
245         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
246         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
247           make make_library
248         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
249           regression tests can report resource usage (rfe 700441)
250         * support/regression/collate-results.py: report resource usage
251         * support/regression/ports/ds390/spec.mk,
252         * support/regression/ports/hc08/spec.mk,
253         * support/regression/ports/mcs51/spec.mk,
254         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
255         * support/regression/ports/ds390/uCsim.cmd,
256         * support/regression/ports/hc08/uCsim.cmd,
257         * support/regression/ports/mcs51/uCsim.cmd,
258         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
259         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
260           library, use the default one
261         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
262           building the library
263
264 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
265
266         * config.dsp: added dependency on .version and configure_vc.awk
267         * device/include/setjmp.h: updated for --stack-auto and --xstack
268         * device/include/mcs51/at89c51snd1c.h: corrected line endings
269         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
270         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
271         * device/lib/libsdcc.lib: added _setjmp
272         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
273           (decorateType): fixed bug 1372851,
274           (optimizeGetHbit): fixed warning
275         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
276           array initialisation
277         * support/regression/tests/bug1057979.c: added test for bug 1358192
278         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
279
280 2005-12-03 Borut Razem <borut.razem AT siol.net>
281
282         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
283           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
284
285 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
286
287         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
288         createIval): implement symbol independant "flexible array member",
289         (createIvalCharPtr): implemented flexible array initialisation with a
290         string
291         * src/SDCCsymt.c (copyStruct): removed,
292         (getSize): fixed misleading comment,
293         (getAllocSize): removed, the additional allocation size is now in
294         sym->flexArrayLength,
295         (checkStructFlexArray): new, syntax checks for flexible array members,
296         (compStructSize): added syntax checks for "flexible array members"
297         (copyStruct): removed,
298         (copyLinkChain): removed inefficient fix for bug 770487
299         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
300         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
301         symbol->flexArrayLength
302         * src/SDCCerr.c,
303         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
304         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
305         * support/regression/tests/structflexarray.c: added
306         * support/valdiag/tests/structflexiblearray.c: added
307
308 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
309
310         * src/SDCCast.c (decorateType): fixed bug 1368489
311         * support/Util/SDCCerr.c,
312         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
313
314 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
315
316         * device/include/mcs51/at89c51snd1c.h: added file submitted by
317           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
318
319 2005-11-27 Borut Razem <borut.razem AT siol.net>
320
321         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
322           support/cpp2/mkdeps.h: added command line option
323           -obj-ext=<extension> to SDCPP to define object file externion, used
324           for generation of make dependencies (-M)
325         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
326
327 2005-11-26 Borut Razem <borut.razem AT siol.net>
328
329         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
330           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
331           added pic and pic16 libraries
332
333 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
334
335         * device/include/float.h: Corrected typo in prototype of __fsgt
336
337 2005-11-25 Borut Razem <borut.razem AT siol.net>
338
339         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
340           added creation of model-mcs51-stack-auto libraries
341
342 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
343
344         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
345         and fields-list too
346         * src/SDCCast.c (createIvalArray): removed obsolete comment
347
348 2005-11-24 Borut Razem <borut.razem AT siol.net>
349
350         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
351           added missing device/lib/mcs51/crt*.asm sources
352
353 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
354
355         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
356
357 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * device/lib/_fs2schar.c,
360         * device/lib/_fs2sint.c,
361         * device/lib/_fs2slong.c: optimized inline asm
362
363 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
364
365         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
366           Better handling of floats between -1.0 and 0.0.
367
368 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
369
370         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
371           (the missing "if"s prohibited removal of redundant labels)
372
373 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
374
375         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
376           Properly convert floats between -1.0 and 0.0 to long, int, and char
377           types (max integer value of negative floats tends to zero).
378         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
379           Removed changes made so to work properly with floats between
380           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
381           and _fs2char.c
382
383 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
384
385         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
386         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
387         (genCast) cosmetic change
388         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
389         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
390         from mcs51
391         * support/regression/tests/bitfields (testSignedBitfields): added
392
393 2005-11-18 Borut Razem <borut.razem AT siol.net>
394
395         * sdcc/device/lib/Makefile.in: remove all unnecessary files
396         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
397           introduced SILENT option to make building of pic16 libraries less
398
399 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
400
401         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
402           Now they work properly with floats between -1.0 and 0.0
403         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
404
405 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
406
407         * src/SDCCicode.c (printOperand): added missing else
408
409 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
410
411         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
412         reformatted for better readability
413         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
414         signed bitfields
415
416 2005-11-17 Borut Razem <borut.razem AT siol.net>
417
418         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
419           introduced SILENT option to make building of pic16 libraries less
420           verbose - used for nightly snapshot build
421         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
422           available on Win32 platforms.
423         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
424           medium, large, pic and pic16
425
426 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
427
428         * device/lib/printf_large.c: Temporary patch for bug 1358192:
429           printf("%f"...) sets fraction to zero.
430
431 2005-11-16 Raphael Neider <rneider AT web.de>
432
433         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
434           fixes #1357221
435         * src/pic/gen.c (genIfx): implemented for CARRY bit
436         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
437           to generic pointers, fixes #1357332,
438           (pic16_movLit2f): NEW,
439           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
440
441 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
442
443         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
444
445 2005-11-11 Raphael Neider <rneider AT web.de>
446
447         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
448         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
449           compute pointer's type from operand,
450           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
451           improved single bit reads, fixes bug #1353379
452
453 2005-11-09 Borut Razem <borut.razem AT siol.net>
454
455         * support/scripts/sdcc.nsi: added lib/pic to the package
456
457 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
458
459         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
460
461 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
462
463         * support/regression/tests/bug1348008.c: added
464         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
465         * support/regression/tests/bug1337835.c: updated comment
466
467 2005-11-06 Borut Razem <borut.razem AT siol.net>
468
469         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
470           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
471           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
472           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
473           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
474           dynamic construction of cl_error_class and derivates - 2.nd try
475
476 2005-11-05 Borut Razem <borut.razem AT siol.net>
477
478         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
479           bug, which caused Bus Errors on sparc solaris
480
481 2005-11-04 Borut Razem <borut.razem AT siol.net>
482
483         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
484           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
485           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
486           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
487           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
488           and derivates to resolve the initialization problem on OSX
489
490 2005-11-02 Borut Razem <borut.razem AT siol.net>
491
492         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
493           corrected typo - #include <winsock2.h>
494
495 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
496
497         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
498           (_asxxxx_mapping): added org directive for future enhancements
499
500 2005-11-01 Borut Razem <borut.razem AT siol.net>
501
502         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
503           enabled sockets on WIN32
504         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
505
506 2005-10-31 Borut Razem <borut.razem AT siol.net>
507
508         * support/regression/generate-cases.py: escape backslashes in {testcase}:
509           WIN32 backslash path delimiters should be escaped when used in C strings
510         * support/regression/tests/bitfields.c: exclude failing assertions for
511           __CYGWIN32__ and __MINGW32__ hosts
512
513 2005-10-30 Borut Razem <borut.razem AT siol.net>
514
515         * src/SDCCutil.c: corrected double comparison typo
516
517 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
518
519         * device/lib/medium/Makefile: added for new memory model medium
520         * device/include/asm/mcs51/features.h: updated for medium/pdata
521         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
522           added Multiply & Accumulate sbit's and MAC0_PAGE define
523         * device/include/mcs51/c8051f300.h: added sfr16 definitions
524         * device/include/mcs51/c8051f310.h: added sfr16 definitions
525         * device/lib/_mullong.c: update for medium model
526         * device/lib/incl.mk: added medium model
527         * doc/sdccman.lyx: documented medium model
528         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
529         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
530         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
531         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
532           (allocParms): set SCLS and OCLS to pdata for medium model
533         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
534           for pdata,
535           (powof2): return <0 if not power of 2
536         * src/avr/gen.c (genBitWise): use updated powof2
537         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
538           (shiftR2Left2Result): small optimization in setup, save acc when storing,
539           (shiftLLeftOrResult): use B if necessary
540         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
541         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
542         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
543         * support/regression/Makefile.in: added test-mcs51-medium
544         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
545
546 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
547
548         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
549         specifier unsigned
550         * device/lib/time.c (mktime): fixed bug 1334315
551
552 2005-10-28 Raphael Neider <rneider AT web.de>
553
554         * device/include/pic/p16f_common.inc: added common declarations
555         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
556
557 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
558
559         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
560           (aopPutUsesAcc): added to predict accumulator use,
561           (assignResultValue): save acc if necessary,
562           (genMinusDec): store result if indirectly addressed,
563           (genDivOneByte):  save acc if necessary,
564           (movLeft2Result): bugfix if left already in acc,
565           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
566             attention to accumulator use (esp. pdata),
567           (genReceive): receive pdata correctly
568         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
569         * src/SDCCicode.h: added isOperandInPagedSpace prototype
570
571 2005-10-27 Raphael Neider <rneider AT web.de>
572
573         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
574
575 2005-10-27 Raphael Neider <rneider AT web.de>
576
577         * .version: changed version to 2.5.4
578         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
579         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
580           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
581             arithmetics support routines
582         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
583         * device/lib/Makefile.in: also create installdir for pic
584
585         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
586           pic14 port as well
587         * src/pic/device.c (dump_sfr): rewritten to delegate register
588           placement to the linker (use `extern sym' rather than sym EQU addr),
589           (validAddress): fixed to check last specified address
590         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
591           (popGetLit): truncate literal value to 8 bit,
592           (popGet): moved assert to more appropriate place
593           (popGetExternal): create pCode operand from and mark the according
594             symbol as being `extern'
595           (popGetAddr): added sanity check on immediate's offset, provide
596             GPOINTER tag on demand
597           (aopPut): fixed for immediates,
598           (mov2w_op): move operand's address or contents to WREG (depending on
599             operand type), safer variant of mov2w,
600           (movwf,call_libraryfunc): NEW, handy abbreviations,
601           (get_argument_pcop,get_return_val_pcop,pass_argument,
602           get_returnvalue): interface for accessing function parameters and
603             return values,
604           (assignResultValuei,genRet): use new parameter/return value interface
605           (pic14_getDataSize): back to old version handling generic pointers,
606           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
607             provided implementation and/or fixed old one,
608           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
609             calls, removed legacy 8051 reference code
610           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
611           (loadSignToC): NEW, move the operands sign bit to CARRY,
612           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
613             genRightShiftSigned, accepts negative shift counts,
614           (setup_fsr): load FSR and adjust IRP (indirect memory access),
615           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
616             generic pointers, __data pointers and __code pointers,
617           (genUnpackBits,genPackBits): rewritten to work with generic pointers
618             and signed bitfields, limit bitfields to 8 bit,
619           (genDataPointerGet): fixed number of bytes read,
620           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
621           (genPointerGet,genPointerSet): fixed handling of __code pointers,
622             pointers to constant data are no longer assumed to point to __code
623             space, removed invalid pointer types,
624           (bitpatternFromVal): retrieve the PICs representation of an integer
625             or float literal,
626           (genDataPointerSet): fixed assigning to po_immediate operands,
627           (genGenPointerSet): implemented as library call,
628           (genIfx): fixed incorrect condition,
629           (genAddrOf): limit generic pointers' addresses to 2 bytes,
630             provide GPOINTER tag according to destination's storage class,
631           (genCast): added code to handle casting to generic pointers, added
632             sign-/zero extension of the result
633           (aop_isLitLike,op_isLitLike): fixed handling of immediates
634         * src/pic/gen.h: added macros to access IRP bit in STATUS register
635         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
636           extend the result
637         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
638           address/register resides in the shared banks
639           (emitSymbolToFile): improved to handle global and `pinned' symbols,
640             put all variables into separate sections (have the linker arrange
641             them)
642           (picglue): put init code and interrupt handlers in separate sections
643         * src/pic/main.c: added port specific options table, modified to PORT
644           structure to make GPOINTERs 3 byte, added pic14_options
645           (_pic14_do_link): private linking routine (update paths to libraries,
646             add libsdcc.lib by default)
647         * src/pic/main.h: declare pic14_options
648         * src/pic/pcode.c: fixed instructions i/o relations,
649           (RegCond): reverted to correct version,
650           (newpCodeOpLit): truncate literals to 8 bit,
651           (genericPrint): added debug output,
652           (getRegFromInstruction): fixed for various operand types, simplified
653           (BuildFlow): fixed broken handling of isntructions with labels
654           (LinkFlow): start at last instruction in flow (skip trailing comments),
655             pass the flow on to the next instruction after CALL
656           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
657           (insertPCodeInstruction): fixed inserting after a skip instruction,
658           (DoBankSelect): fixed for labeled instructions
659           (OptimizepBlock): honor --nopeep switch
660           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
661         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
662         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
663           (pCodeOptime2pCodes): allow disabling this optimization via
664             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
665             but is still buggy), started implementation of a dataflow based
666             pCode optimization (CSE + dead code elimination)
667           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
668         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
669           names are independant of the stack location and therefore portable across
670           devices
671
672 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
673
674         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
675           (selectSpil): fixed bug 1337835 by not spilling bit variables
676         * support/regression/tests/bug1337835.c: added test for this bug
677         * src/mcs51/peeph.def: restart after rule 3.c,
678           addded rules 263.x to optimize loading constants
679
680 2005-10-26 Raphael Neider <rneider AT web.de>
681
682         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
683         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
684           (genAssign): emit warning when casting literals to generic pointer
685             type, also applies when taking the address of a fixed variable,
686           (genCast): improved casting to generic pointers
687         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
688           extern variables, added verbose error message
689         * device/include/pic16/{string.h,errno.h}: added #pragma library c
690
691 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
692
693         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
694         carry must be complemented too
695         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
696         could be emitted by genMinus
697         * src/SDCCval.c (constVal): fixed bug 1305065
698
699 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
700
701         * src/SDCCast.c (addCast): added promotion for bit variables
702         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
703         promotion casts + optimisation
704         (optimizeGetWord): fix warning 'i' might be used uninitialized
705         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
706         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
707
708 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
709
710         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
711         all chars are promoted to int; promotion should be handled in SDCCast.c
712
713 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
714
715         * device/lib/_strcmp.c: Fixed bug 1326457
716
717 2005-10-11 Raphael Neider <rneider AT web.de>
718
719         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
720         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
721
722 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
723
724         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
725         * support/regression/tests/sfr16.c: added test for the sfr32 bug
726
727 2005-10-04 Raphael Neider <rneider AT web.de>
728
729         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
730           device/lib/pic16/pics.all: added pic18f1320
731         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
732
733 2005-09-30 Raphael Neider <rneider AT web.de>
734
735         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
736         * src/pic16/devices.inc: NEW, provides device descriptions
737         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
738
739 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
740
741         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
742           GETHBIT
743
744 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
745
746         * doc/sdccman.lyx: updated Highest Order Bit documentation,
747           documented Any Order Bit, Higher Order Byte and Higher Order Word
748         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
749         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
750           (optimizeGetAbit): new, to get any bit, not only the high bit,
751           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
752           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
753           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
754           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
755             RIGHT_OP: also try GETBYTE, GETWORD optimization,
756             GETABIT, GETBYTE, GETWORD: decorate them,
757           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
758           (ast_print): added GETABIT, GETBYTE, GETWORD
759         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
760         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
761           (geniCodeBinary): new generic binary icode,
762           (ast2iCode): added GETABIT, GETBYTE, GETWORD
763         * src/port.h: updated comment for PORT.hasExtBitOp
764         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
765           (genGetByte): new, to get a single byte,
766           (genGetWord): new, to get a word from a long,
767           (gen51Code): added GETABIT, GETBYTE, GETWORD
768         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
769
770 2005-09-23 Raphael Neider <rneider AT web.de>
771
772         * configure.in, configure: have device/lib/pic configured
773         * device/lib/Makefile.in: added model-pic14
774         * device/lib/clean.mk: added pic/ to clean rule
775         * device/lib/pic: added rudimentary pic14 library providing support
776           functions for multiplication/division/generic pointer access
777         * src/SDCCopt.c (convilong): mark support functions as extern
778           for pic14 port as well
779         * src/pic/gen.c (genMult): added assertions,
780           (genpic14Code): emit warning on unhandled iCodes
781         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
782         * src/pic/pcode.c (pCodeOpCopy),
783         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
784           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
785           SFR_REGISTER}), made safe for future extensions
786         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
787           instructions even if preceeded by SKIP instructions (also remove
788           them); removed unused code
789         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
790           prevents leaving parts of the structure uninitialized after copying
791
792 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
795           ago by me
796         * support/regression/tests/addsub.c: added test for the bug
797
798 2005-09-21 Raphael Neider <rneider AT web.de>
799
800         * device/include/pic16/pic18f1220.h,
801           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
802         * device/lib/pic16/Makefile.rules: added missing opening paren
803         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
804           are provided in genutils.c,
805           (genUminusFloat,genUminus,genCmpEq): added asserts on different
806           operand/result sizes,
807           (genCmp): assert on NULL pointers first, then check deref'ed values
808         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
809           result size
810
811 2005-09-18 Raphael Neider <rneider AT web.de>
812
813         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
814           as these are now unused,
815           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
816         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
817           local, avoids uninitialized pointer dereference on r->name
818         * src/pic16/ralloc.c (newReg): fixed indentation
819
820 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
821
822         * src/SDCCval.c (constVal): fixed bug 730366
823         * support/Util/SDCCerr.c,
824         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
825
826 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
827
828         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
829
830 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
831
832         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
833
834 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
835
836         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
837           (hex2dec): made hex_digit unsigned char, removed ascii dependance
838         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
839           (hex2dec): made hex_digit unsigned char, removed ascii dependance
840         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
841         * packihx/packihx.c (hexDigit): made c unsigned char
842         * as/mcs51/lklibr.c (fndsym),
843         * link/z80/lkgb.c (gb),
844         * link/z80/lklibr.c (fndsym),
845         * link/z80/lkrloc.c (relr),
846         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
847         * src/SDCC.lex (checkCurrFile, process_pragma),
848         * src/SDCCglue.c (spacesToUnderscores),
849         * src/SDCCmain.c (setParseWithComma, processFile),
850         * src/asm.c (tvsprintf, printCLine),
851         * src/avr/gen.c (emitcode, aopPut),
852         * src/ds390/gen.c (emitcode),
853         * src/hc08/gen.c (emitcode, emitinline),
854         * src/mcs51/gen.c (emitcode, genInline),
855         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
856           tokenizeLineNode),
857         * src/pic/ralloc.c (debugLog),
858         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
859           tokenizeLineNode),
860         * src/pic16/ralloc.c (debugLog),
861         * src/z80/main.c (_process_pragma):
862            made all ctype.h function calls safe
863         * src/SDCCopt.c: include math.h for fabs
864         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
865           and used them throughout the code to make ctype.h function calls safe
866         * src/ds390/main.c (asmLineNodeFromLineNode),
867         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
868         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
869            unsigned char*
870         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
871           (newpCodeAsmDir): made ctype.h function calls safe
872         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
873           pic16_emitcode):  made lbp unsigned char*
874         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
875           (pic16_newpCodeAsmDir): made ctype.h function calls safe
876         * src/xa51/gen.c (emitcode),
877         * src/z80/gen.c (_emit2): made lbp unsigned char*
878         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
879            char*
880
881 2005-09-05 Raphael Neider <rneider AT web.de>
882
883         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
884           access bank splitpoint
885
886 2005-09-05 Raphael Neider <rneider AT web.de>
887
888         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
889
890 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
891
892         * .version: changed to version 2.5.3
893         * doc/sdccman.lyx: changed version to 2.5.3,
894           documented --codeseg and --constseg and pragma codeseg and constseg,
895           documented bit parameters (reentrant) and bit returning
896         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
897            currFunc->recvSize, but is this ok for all ports?
898           (ast2iCode): result of ~ on unsigned char must be cast to int for
899            bool to work
900         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
901           function pointers in bit space
902         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
903           (processFuncArgs): call port.reg_parm() with reentrancy info
904         * src/port.h,
905         * src/avr/main.c,
906         * src/ds390/main.c,
907         * src/hc08/main.c,
908         * src/pic/main.c,
909         * src/pic16/main.c,
910         * src/xa51/main.c,
911         * src/z80/main.c: port.reg_parm prototype extended with
912           "bool reentrant" parameter
913         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
914           options.stackAuto for allocating bit register parameters
915         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
916           (genSend): set BitBankUsed if it is,
917           (selectRegBank): factored out of genCall for use in genPcall,
918           (genCall): removed redundant dtype assignmen, use selectRegBank,
919           (genPcall): handle returning in Carry properly, save in F0 if needed,
920           (genReceive): handle bit register parameters
921         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
922           (mcs51_assignRegisters): enable bit registers for all reentrant
923            functions and don't set BitBankUsed unconditionally
924         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
925         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
926         * support/regression/tests/funptrs.c: added tests for BOOL and for return
927
928 2005-08-27 Borut Razem <borut.razem AT siol.net>
929
930         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
931         ppc-osx (Darwin) does not support -u option. It seems that it is
932         supported only on Linux - GNU cp
933
934 2005-08-25 Borut Razem <borut.razem AT siol.net>
935
936         * sim/ucsim/gui.src/serio.src/Makefile.in,
937           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
938           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
939           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
940           install and strip, since the strip at /usr/ccs/bin should be used
941           on solaris
942
943 2005-08-24 Borut Razem <borut.razem AT siol.net>
944
945         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
946
947 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
948
949         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
950         ffffffffu
951
952 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
953
954         * as/mcs51/aslink.h: completed lkrloc.c prototypes
955         * as/mcs51/lkmain.c (link_main): fixed warning
956         * device/include/stdbool.h: ds390 has no advanced bit support yet
957         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
958         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
959         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
960           and updated their macros
961         * src/SDCCval.c (constVal): updated comment for renamed b_long
962
963 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
964
965         * as/mcs51/asdata.c: changed ctype['['] to BINOP
966         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
967           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
968           (oprio): set priority for '['
969         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
970            and adb_24_bit
971         * as/mcs51/asm.h: added defines R_BIT and S_BIT
972         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
973         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
974         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
975           added overlayable BIT_BANK area
976         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
977           (summary2): explain 'T' in legenda
978         * as/mcs51/lkrloc.c: replaced old K&R style,
979           (relr): added R_BIT processing,
980           (errmsg): added "Bit-addressable relocation error",
981           (adb_bit): added for converting from byte- to bit-addressable space,
982           (adb_24_bit): added for converting from byte- to bit-addressable space
983         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
984            used in reentrant functions now even as return value
985         * device/lib/_gptrput.c (_gptrput): removed obsolete code
986         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
987           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
988         * src/SDCCglobl.h: added indicator BitBankUsed
989         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
990            the bit registers b0-b7
991         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
992           (geniCodeCast): fixed bug 1263853,
993           (geniCodeLogicAndOr): put result in bool or char,
994           (geniCodeReceive): added parameter func for accessing the return type,
995           (geniCodeFunctionBody): pass func to geniCodeReceive
996         * src/SDCCmain.c: added indicator BitBankUsed
997         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
998         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
999           (checkSClass): don't put automatic bool/bit on stack,
1000           (checkFunction): removed check on function cannot return bit
1001         * src/SDCCsymt.h: added newBoolLink prototype
1002         * src/mcs51/gen.c (rb1regs): added bit registers,
1003           (movc): created for assigning to carry,
1004           (pushReg, popReg): created for pushing registers,
1005           (sameRegs): check both AOP_REG and AOP_CRY types,
1006           (aopOp): handle bit registers,
1007           (aopPut): optimization no self-assign,
1008           (saveRegisters): push reg->base (bits) only once for bit registers,
1009            and use pushReg,
1010           (unsaveRegisters): pop reg->base only once and use popReg,
1011           (assignResultValue): added parameter func and return in carry for bits,
1012           (genIpush): optimization no reload in A if not changed,
1013           (genSend): bit parameters in reentrant functions are passed in bit
1014            registers by first assigning to bits in B, then save registers and
1015            copy B to bits,
1016           (genCall): handle returning in Carry properly, save it in F0 if needed,
1017           (genPcall): updated assignResultValue call, this is not safe yet for bit
1018            returning function !!!
1019           (genFunction): don't generate equ's for bit registers and use pushReg,
1020           (genEndFunction): take care of bit returning functions and use popReg,
1021           (genRet): return bit in Carry,
1022           (genIfx): optimize bit registers and other directly addressable bits,
1023           (genReceive): updated assignResultValue call
1024         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1025           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1026            registers when using stack-auto
1027         * src/mcs51/ralloc.c (_G): added allBitregs,
1028           (regs8051): added the bit registers,
1029           (createStackSpil): use macro IS_BIT,
1030           (getRegBit): added to allocate a bit register, else spill,
1031           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1032           (updateRegUsage): factored out to ease stepping while debugging,
1033           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1034            also allocate bit registers,
1035           (fillGaps): handle bit registers,
1036           (findAllBitregs): added to create bit vector with all bit registers,
1037           (mcs51_allBitregs): returns this bit vector,
1038           (mcs51_assignRegisters): when using stack-auto use bit registers for
1039            passing parameters and creating local variables
1040         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1041
1042 2005-08-22 Borut Razem <borut.razem AT siol.net>
1043
1044         * device/lib/Makefile.in: replaced find option -or with -o
1045           to make it run on solaris
1046
1047 2005-08-22 Raphael Neider <rneider AT web.de>
1048
1049         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1050           fixes #1265442 (crash on Solaris)
1051
1052 2005-08-20 Borut Razem <borut.razem AT siol.net>
1053
1054         * configure, configure.in: added tests for libsocket and libnsl libraries,
1055           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1056           from support/regression/Makefile.in
1057         * support/regression/Makefile.in: added
1058         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1059         * sim/ucsim/libtool: regenerated on sparc-solaris
1060         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1061           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1062           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1063           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1064           sparc-solaris, which doesn't use GNU ld linker
1065         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1066         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1067
1068 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1069
1070         * src/mcs51/peeph.def: updated comments
1071
1072 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1073
1074         * device/lib/_gptrget.c,
1075         * device/lib/_gptrput.c: slightly shorter
1076         * doc/sdccman.lyx: incremented version
1077         * src/mcs51/peeph.def: moved peephole comments to the line of first
1078           change to better keep line correlation, reanimated 186.e
1079         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1080
1081 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1082
1083         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1084           David Saxton with quotes around file name.
1085
1086 2005-08-15 Borut Razem <borut.razem AT siol.net>
1087
1088         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1089           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1090           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1091           make tests run on x86_64 platform
1092
1093 2005-08-13 Raphael Neider <rneider AT web.de>
1094
1095         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1096           as it might be executed DURING a build (parallel make is wonderful)
1097
1098 2005-08-13 Raphael Neider <rneider AT web.de>
1099
1100         * device/lib/Makefile.in (port-specific-objects-pic16):
1101           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1102         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1103           dependency
1104         * device/lib/pic16/Makefile.rules: build subdirs before creating
1105           the library, removed builddir rule, create $(builddir) early in
1106           recurse rule, use empty recurse rule for leaf directories
1107         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1108           mkdir errors (race condition), removed duplicate suffix "hex"
1109           from clean rules
1110         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1111         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1112           prevents mkdir -p from aborting on Alpha
1113
1114 2005-08-12 Raphael Neider <rneider AT web.de>
1115
1116         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1117           db-statements in order to allow for arrays of pointers in code
1118           sections to be placed without interspersed 0-padding, fixes
1119           bug #1256215
1120         * (emitStatistics): fixed division by zero for pic18f1220
1121         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1122           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1123         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1124         * (pic16_pCodeConstString): keep track of already emitted string
1125           literals to prevent "duplicate definitions of symbol _str_NR"
1126         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1127           debug message
1128         * device/lib/Makefile.in: ignore failing PIC16 library builds
1129         * device/lib/pic16/Makefile: do not build if gputils are missing
1130         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1131
1132 2005-08-10 Raphael Neider <rneider AT web.de>
1133
1134         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1135           my last commit)
1136
1137 2005-08-10 Raphael Neider <rneider AT web.de>
1138
1139         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1140           Rokas' patch to add the new fixed point type "__fixed16x16"
1141         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1142           functions for __fixed16x16 arithmetics
1143         * device/lib/pic16: reimplemented the build system to support
1144           a separate build directory, better handling of libio (create
1145           the library in a separate subdir for each architecture) and
1146           easier configuration (centralized in Makefile.common)
1147
1148 2005-08-07 Raphael Neider <rneider AT web.de>
1149
1150         * src/pic16/gen.c (genrshTwo): fixed sign extension
1151         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1152         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1153           added T0CONbits
1154         * device/include/pic16/pic18f4220.h: NEW, header for
1155           pic18f4220 and pic18f4320
1156         * device/include/pic16/pic18fregs.h: added new devices,
1157           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1158         * device/include/pic16/signal.h: resolved name clashes
1159           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1160           to also allow testing for interrupt enable bits, added
1161           comments on how to use the macros
1162         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1163         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1164           register definitions for the devices
1165         * device/lib/pic16/pics.all: added new devices
1166         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1167           allocated memory
1168         * device/lib/pic16/libc/stdlib/memfree: do not count
1169           the block header as free memory
1170         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1171           simplified and added missing end-of-blocklist-marker
1172           (reported by Peter Onion, fixes #1252814)
1173         * (_mergeHeapBlock): fixed loop condition
1174         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1175           len==0, restructured code
1176         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1177           up a bit, reduced bitfield accesses, prevent endless loops
1178           in case of heap corruption
1179         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1180           "unreferenced arguments/must return a value" warnings
1181         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1182           replaced BAUDREG with SPBRG
1183         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1184           device/lib/pic16/debug/gstack/gstack.c: replaced
1185           _naked, _asm, _endasm with __naked, __asm, __endasm
1186
1187 2005-08-05 Raphael Neider <rneider AT web.de>
1188
1189         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1190           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1191
1192 2005-08-05 Borut Razem <borut.razem AT siol.net>
1193
1194         * device/lib/Makefile.in: added missing ';'
1195         * configure: removed ^M characters
1196
1197 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1198
1199         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1200           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1201           License
1202
1203 2005-08-04 Borut Razem <borut.razem AT siol.net>
1204
1205         * configure.in: pic16 libraries build 2nd try - enable running
1206           configure in device/lib/pic16
1207         * configure: regenerated from configure.in
1208         * device/lib/Makefile.in: create $(PORT)/bin directory
1209
1210 2005-08-03 Raphael Neider <rneider AT web.de>
1211
1212         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1213           to get/set values via pointers
1214         * (genUnpackBits,genPackBits): changed detection of
1215           ptr->bitfield vs. sym.bitfield, fixed access via generic
1216           pointers, removed dead (wrong) code for multibyte bitfields
1217         * (genNearPointerGet, genGenPointerGet): removed useless code,
1218           fixed bitfield detection, fixes #1250594
1219         * (genNearPointerSet): removed useless code
1220         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1221           and introduced macro pic16_emitpcode that conditionally emits
1222           the origin of the following pCode (useful for debugging SDCC)
1223         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1224         * (createDefmap): fixed handling of LFSR for --optimize-df
1225
1226 2005-08-02 Borut Razem <borut.razem AT siol.net>
1227
1228         * device/lib/Makefile.in: pic16 libraries build enabled since
1229           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1230
1231 2005-08-02 Raphael Neider <rneider AT web.de>
1232
1233         * src/pic16/gen.c (genPackBits): removed deprecated warning
1234         * (genGenPointerSet): fixed bitfield detection
1235
1236 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1237
1238         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1239
1240 2005-07-31 Raphael Neider <rneider AT web.de>
1241
1242         * device/lib/pic16/libdev/pic18f458.c,
1243           device/include/pic16/pic18f458.h: added missing T0CONbits
1244
1245 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1246
1247         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1248
1249 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1250
1251         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1252
1253 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1254
1255         * device/include/mcs51/at89c51ed2.h: added.
1256
1257 2005-07-23 Raphael Neider <rneider AT web.de>
1258
1259         * src/pic/gen.h: added emitpcode macro for debugging
1260         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1261           and replace by macro adding debug information on demand
1262         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1263         * (gencjne): tried to fix; replaced with correct (slower) code
1264         * (gen{Unp,P}ackBits): fixed single bit access
1265         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1266         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1267           previous instruction
1268         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1269           register has to be handled with care (forbidding movement
1270           of assignments/uses, removing assignments completely, ...)
1271         * (pCodeOptime2pCodes): make use of regIsSpecial
1272         * added lots of debugging output (commented out)
1273         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1274           from being reused as result UNLESS it is known to work
1275
1276 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * support/Util/dbuf.h: include <stddef.h> for size_t
1279         * .version: changed to version 2.5.2
1280
1281 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1282
1283         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1284
1285 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1286
1287         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1288           (genModOneByte): removed needless psha/pula
1289
1290 2005-07-22 Raphael Neider <rneider AT web.de>
1291
1292         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1293           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1294         * src/pic/gen.c (resolveIfx): do not "invent" labels
1295         * (genSkipc): changed to positive logic
1296         * (genSkipCond): removed as no longer needed
1297         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1298           backport from PIC16
1299         * (genLeftShift): check operands are in different registers
1300         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1301           INCF does not update CARRY...
1302         * src/pic/main.c: fixed _linkCmd
1303         * src/pic/pcode.c (unlinkpCode): added inactive code
1304         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1305           alive (do not assign result and operand overlapping registers)
1306
1307 2005-07-22 Raphael Neider <rneider AT web.de>
1308
1309         * src/pic/device.c (dump_sfr): replaced register declaration with
1310           call to emitSymbolToFile() to avoid duplicate symbols
1311         * (assignRelocatableRegisters): do not declare external symbols
1312         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1313           right (take size of type, not etype)
1314         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1315         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1316         * (packRegsForAccUse): disabled assignment of WREG as
1317           the result reg to prevent occurence of just fixed #1235003,
1318           fixes #1242954
1319         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1320           symbols (avoids duplicate symbols in .asm file)
1321         * (pic14emitRegularMap): use emitSymbolToFile()
1322         * src/pic/gen.c (aopOp): fixed spillLocation handling
1323         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1324         * (genDataPointerSet): removed unneccessary variables/output
1325
1326 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1327
1328         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1329         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1330
1331 2005-07-21 Raphael Neider <rneider AT web.de>
1332
1333         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1334           architecture cannot handle them efficiently, fixes bug #1235003
1335         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1336           check for empty sets before using them (fixes bug #1232190)
1337
1338 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1339
1340         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1341           (lnksect2): generate warnings for memory overlap
1342         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1343           constseg to set the name of these segments so you can instruct the linker
1344           to place them in banks
1345         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1346         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1347           added code_seg and const_seg to options
1348         * src/SDCCglue.c (emitMaps): use options.const_seg,
1349           (createInterruptVect): put interrupt vectors in segment HOME,
1350           (glue): put HOME before static segment and put the main glue in HOME,
1351           (glue): use options.code_seg
1352         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1353         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1354           these segments so you can instruct the linker to place them in banks
1355           (linkEdit): use code_loc for HOME segment which should be the first
1356           segment in code memory now
1357         * src/SDCCmem.c: fixed more stuff like bug 1238386
1358         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1359           (changePointer): don't change function pointers to code pointers for
1360           banked functions,
1361           (compareType): added exceptional check for banked function pointers
1362         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1363         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1364           after static in code memory
1365         * src/mcs51/gen.c: added aopLiteralLong prototype,
1366           (aopForSym): use getSize for functions,
1367           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1368           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1369           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1370           the segment,
1371           (genPcall): use call for literal function pointers and generate banked
1372           calls over the one trampoline so there's only one place for the user to
1373           modify according to his/hers hardware,
1374           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1375           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1376         * src/mcs51/main.c: added keyword banked,
1377           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1378         * support/Util/SDCCerr.c,
1379         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1380           needed for passing the bank and address to the trampoline
1381         * device/lib/mcs51/crtbank.asm: added for bankswitching
1382         * device/lib/mcs51/Makefile: added crtbank
1383
1384 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1385
1386         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1387           for fields at offset 0 of a struct or union as reported
1388           on 2005-07-07 in the developer mailing list.
1389
1390 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1391
1392         * src/SDCCmem.c: fixed bug 1238386
1393
1394 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1395
1396         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1397           (patch #1144962), added peephole 300, enabled 259.x
1398         * doc/sdccman.lyx: removed screenshot and provided link instead
1399
1400 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1401
1402         * doc/sdccman.lyx: added section about debugging with ddd
1403         * doc/figures/ddd_example.eps: screenshot of debugging session
1404
1405 2005-07-04 Raphael Neider <rneider AT web.de>
1406
1407         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1408           like CODE pointers, fixes #1115683
1409         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1410           call, fixes bugs #1232211, #1228110,
1411           fixed wrong casts to pCodeFlow from pCodeInstructions
1412
1413 2005-07-04 Raphael Neider <rneider AT web.de>
1414
1415         * src/pic/gen.c (popGet): changed assert to allow for
1416           bit operands
1417         * (popGetAddr): changed signature to provide
1418           an additional index, patched all call sites
1419         * (genCmpEq): handle literal-like operands correctly
1420         * (genAddrOf): added sanity checks on __code/__data pointers
1421         * (genAssign): added handling of symbols from __code section
1422         * (gencjne): do not generate code for comparisons whose result
1423           is neither stored nor used, fixes bug #1171114
1424         * (AccLsh, AccRsh): operate on operand instead of WREG
1425         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1426           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1427           by known count
1428         * rewrote complete shift-by-literal logic, commented unused
1429           functions out
1430         * (genConstPointerGet): get multiple bytes (if result size > 1),
1431           fixed handling of non-immediate addresses
1432         * (genPointerGet): handle CODE pointers like CONST pointers
1433         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1434         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1435           operand is to be treated as a literal or not
1436         * (mov2w,genPcall,genCmpEq),
1437           src/pic/genarith.c: use aop_isLitLike() to decide between
1438           literal/register contents
1439         * (addSign): added missing offset
1440         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1441           only emit comment in debug-mode,
1442           use {aop,op}_isLitLike throughout the file
1443         * src/pic/glue.c: fix initializers for pointers (work in progress)
1444         * src/pic/pcode.c (get_op): honor index on _const symbols
1445         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1446         * (dumppBlock): added pCode size estimation
1447         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1448           check for IS_SYMOP before OP_SYMBOL'ing
1449         * fixed indentation, compacted switch-statements
1450         * (allocReg): find free register and allocate it instead of
1451           allocating new registers all the time
1452         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1453           registers as its operands (necessary only for multibyte GETs)
1454
1455 2005-07-01 Raphael Neider <rneider AT web.de>
1456
1457         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1458           debugging .asm-output macros FENTRY + FEXIT
1459         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1460           way... I wonder...
1461         * (emitpComment): NEW, printf to pCode
1462         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1463           offset handling
1464         * (popGetAddr): NEW, variant of popGet to access an immediates
1465           high(er) bytes instead of the n'th byte of memory they reference,
1466           replaced popGet with popGetAddr where neccessary
1467         * (genDataPointerGet): reactivated and fixed implementation
1468         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1469           accesses
1470         * (genDataPointerSet): fixed multibyte assignments
1471         * (genpic14Code): fixed --i-code-in-asm handling
1472         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1473         * (genPlus): fixed index-out-of-bounds error
1474         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1475         * src/pic/ralloc.c: added debugging output macro FENTRY2
1476         * (spillThis): fixed indentation, enbraced for-body for clarity
1477         * (rematStr): commented out as now unused
1478         * (regTypeNum): commented out special spill case (overwrites
1479           arbitrary values)
1480         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1481
1482 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1483
1484         * doc/sdccman.lyx: documented sfr16/sfr32,
1485           added example for using storage class with function pointers
1486         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1487
1488 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1489
1490         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1491         * device/lib/_itoa.c,
1492         * device/lib/_ltoa.c: optimized codesize
1493         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1494           but don't know how to suppress the double warning.
1495         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1496         * support/Util/SDCCerr.c,
1497         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1498
1499 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1500
1501         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1502           fixed old K&R prototypes
1503         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1504         * device/lib/_gptrget.c,
1505         * device/lib/_gptrgetc.c,
1506         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1507           also new versions for small generic pointers and banked generic pointers
1508         * src/port.h: added const_name
1509         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1510         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1511         * src/SDCCcse.c (findPrevIc): check all associative operators
1512         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1513         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1514         * src/SDCCmem.c: updated comments,
1515           set far-space to 0 for pdata, results in optimized code
1516         * src/SDCCmem.h: added macro CONST_NAME
1517         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1518           moving the info into the highest bits, see also gptrget/gptrput
1519         * src/src.dsp: added sdcc.ico to project files
1520         * src/avr/gen.c (genCast): fixed bug 0x%d
1521         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1522         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1523           relation between ptr_type and DCL_TYPE,
1524           (genCast): fixed bug 0x%d
1525         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1526           (CODE)" for const_name
1527         * src/hc08/gen.c (genCast): fixed bug 0x%d
1528         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1529           (hc08_port): added "CONST (CODE)" for const_name
1530         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1531           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1532           between ptr_type and DCL_TYPE,
1533           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1534           operand* and took AOP() inside function so sfr-ness can be checked,
1535           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1536           new prototype,
1537           (genFunction, genEndFunction): optimized stack setup,
1538           (genMinus): optimized for literals with ending zeroes (in bytes),
1539           (genCast): fixed bug 0x%d
1540         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1541           (mcs51_port): added "CONST (CODE)" for const_name
1542         * src/mcs51/peeph.def: made rule 226 more generic
1543         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1544         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1545         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1546         * src/z80/main.c (z80_port): added NULL for const_name,
1547           (gbz80_port): added NULL for const_name
1548         * support/regression/tests/bug663539.c,
1549         * support/regression/tests/sfr16.c: new tests
1550
1551 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1552
1553         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1554
1555 2005-06-24 Raphael Neider <rneider AT web.de>
1556
1557         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1558           corrected typos...
1559         * device/include/pic16/signal.h: added USBIF
1560           and SIG_USB
1561
1562 2005-06-24 Raphael Neider <rneider AT web.de>
1563
1564         * device/lib/pic16/libdev/pic18f2455.c,
1565           device/include/pic16/pic18f2455.h: NEW
1566         * device/include/pic16/pic18fregs.h,
1567           device/lib/pic16/pics.all,
1568           src/pic16/device.c: added 18f2455
1569         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1570           device/include/pic16/{pic18f[68][567].h,usart.h}:
1571           replaced MULTIPLE_USARTS define with more relaible
1572           compatibility sfrs (for USART access)
1573
1574 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1575
1576         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1577           and the output asm file line is printed on two lines.
1578
1579 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1580
1581         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1582           BGT, BLE, BHI, and BLS instructions
1583         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1584           genCmpEq): removed
1585         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1586           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1587           fixes bug #1216342
1588         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1589
1590 2005-06-15 Raphael Neider <rneider AT web.de>
1591
1592         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1593         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1594         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1595           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1596           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1597
1598 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1599
1600         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1601           Marcel Telka in bug #1215704
1602
1603 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1604
1605         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1606           located in shared memory bank.
1607
1608 2005-05-31 Raphael Neider <rneider AT web.de>
1609
1610         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1611           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1612           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1613
1614 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1615
1616         * device/lib/_strncpy.c: fixed the fix
1617
1618 2005-05-26 Raphael Neider <rneider AT web.de>
1619
1620         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1621           initializers with \0, bug #1208187
1622         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1623           intializers with \0, bug #1208187
1624
1625 2005-05-26 Raphael Neider <rneider AT web.de>
1626
1627         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1628           initializers with \0, bug #1208187
1629         * src/pic16/main.c (_process_pragma): added sanity checks
1630           for stack position and size, emit warnings when appropriate
1631
1632 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1633
1634         * device/lib/_strncpy.c: fixed not filling with \0
1635
1636 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1637
1638         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1639           createFunction),
1640         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1641           compound_statement),
1642         * src/SDCCsymt.h,
1643         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1644
1645 2005-05-24 Raphael Neider <rneider AT web.de>
1646
1647         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1648
1649 2005-05-24 Raphael Neider <rneider AT web.de>
1650
1651         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1652           TRISE definitions, closes bug #1162453
1653
1654 2005-05-22 Raphael Neider <rneider AT web.de>
1655
1656         * src/pic16/main.c (_process_pragma): check for missing
1657           arguments to pragmas code and udata
1658         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1659           consistency fixes to match other headers (thanks to Jim Paris)
1660         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1661
1662 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1663
1664         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1665
1666 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1667
1668         * support/regression/tests/bug1198642.c: new test
1669         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1670         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1671         * support/scripts/resource.h,
1672         * support/scripts/resource.rc,
1673         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1674         * support/scripts/sdcc.ico: added 32x32 icon
1675
1676 2005-05-18 Raphael Neider <rneider AT web.de>
1677
1678         * device/lib/pic16/libdev/pic18f*.c,
1679         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1680           keywords to "__sfr" and "__at (X)"
1681         * device/include/pic16/pic18fregs.h: added pic18f4520
1682         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1683           #1203088 (MPLAB compatibility)
1684
1685 2005-05-17 Raphael Neider <rneider AT web.de>
1686
1687         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1688         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1689         * device/lib/pic16/pics.all: added new devices
1690         * src/pic16/device.c: added support for pic18f4520
1691
1692 2005-05-16 Raphael Neider <rneider AT web.de>
1693         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1694         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1695         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1696           convenience function for bit access
1697
1698 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1699
1700         * device/lib/printf_large.c: fixed bug 1193299
1701         * support/regression/tests/bug1057979.c: added test %3.3s
1702
1703 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1704
1705         * device/include/mcs51/8051.h,
1706         * device/include/mcs51/8052.h: made parseable with lint
1707         * device/include/mcs51/lint.h: added include file for (sp)lint
1708         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1709         * doc/cdbfileformat.lyx,
1710         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1711
1712 2005-05-14 Raphael Neider <rneider AT web.de>
1713
1714         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1715         * device/lib/pic16/libc/stdlib/itoa.c (new)
1716         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1717         * device/lib/pic16/libio/Makefile: exclude subdir according to
1718           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1719         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1720         * src/pic16/gen.c (genFunction): prevent annoying warning
1721         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1722           nameclashes on BeOS
1723         * support/cpp2/cppmain.c (cpp_output_string): new
1724         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1725           fixes bug 1116802
1726
1727 2005-05-13 Borut Razem <borut.razem AT siol.net>
1728
1729         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1730
1731 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1732
1733         * .version: changed to version 2.5.1; back to bleeding edge development
1734
1735 2005-05-11 Borut Razem <borut.razem AT siol.net>
1736
1737         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1738           generate PDF version 1.3 documents
1739
1740 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1741
1742         * .version: changed to version 2.5.0
1743
1744 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1745
1746         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1747
1748 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1749
1750         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1751         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1752         well as many smaller updates.
1753         * .version: changed to version 2.5.0-pre1
1754
1755 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1756
1757         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1758
1759 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1760
1761         * support/regression/tests/bug1185672.c: added
1762         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1763           bug 1185672
1764         * src/mcs51/gen.c (genCall): added comments, made it look safer
1765         * src/mcs51/gen.c (genEndFunction): simplified
1766
1767 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1768
1769         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1770
1771 2005-04-14 Borut Razem <borut.razem AT siol.net>
1772
1773         * fixed bug 1045046 - SIGSEGV with really simple code?:
1774           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1775           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1776
1777 2005-04-14 Borut Razem <borut.razem AT siol.net>
1778
1779         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1780           src/pic16/device.h: temporarily disabled experimental #inline pragma
1781           for 2.5.0 release
1782
1783 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1784
1785         * device/include/z80/stdio.h,
1786         * device/include/z80/string.h: removed these highly incomplete files so
1787           SDCC can use the default ones in device/include/
1788
1789 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1790
1791         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1792         gcc warning.
1793         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1794         fix sdcpp warnings.
1795
1796 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1797
1798         * device/include/malloc.h: removed redundant __reentrant prototypes
1799         * device/lib/_mullong.c: added working xstack variant in asm (C version
1800           doesn't pass regression tests)
1801         * device/lib/bpx.c: used __data and made bpx char for mcs51
1802         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1803           (createFunction): fixed bug with xstackPtr
1804         * src/SDCCcse.c: corrected comments
1805         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1806           (killDeadCode, eBBlockFromiCode): removed unused code
1807         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1808           corrected comments
1809         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1810           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1811           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1812           (genModOneByte): fixed warning in MSVC
1813         * src/mcs51/main.c (): added comments
1814         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1815
1816 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1817
1818         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1819
1820 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1821
1822         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1823
1824 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1825
1826         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1827         characters arrays of larger size than the declared one.
1828
1829 2005-04-10 Borut Razem <borut.razem AT siol.net>
1830
1831         * src/pic/gen.c (genInline),
1832           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1833           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1834           (findNextInstruction), (findPrevInstruction),
1835           (findInstructionUsingLabel),
1836           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1837         * src/pic/pcode.c (findLabel): added missing '\n'
1838         * src/src.dsp: added SDCCdwarf2.c to the project
1839
1840 2005-04-09 Borut Razem <borut.razem AT siol.net>
1841
1842         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1843
1844 2005-04-08 Raphael Neider <rneider AT web.de>
1845
1846         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1847           into the chain after a given one) and mergeDefmapSymbols (combine
1848           defmap entries for each symbol per pcode)
1849         * (createDefmap): have defmap entries merged in the end
1850         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1851           a symbol before replacing one access type's symbol, merge symbols in
1852           the end (replacement symbol might already have an entry)
1853         * (assignValnums): keep reference to written WREG intact
1854
1855 2005-04-08 Raphael Neider <rneider AT web.de>
1856
1857         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1858           Alpha)
1859
1860 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1861
1862         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1863         bytes
1864
1865 2005-04-07 Raphael Neider <rneider AT web.de>
1866
1867         * device/include/pic16/usart.h: added compatibility defines for
1868           devices with more than one USART
1869         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1870
1871 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1872
1873         * device/lib/Makefile.in: updated for port specific include
1874
1875 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1878
1879 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * device/include/8051.h,
1882         * device/include/8052.h,
1883         * device/include/at89S8252.h,
1884         * device/include/at89c55.h,
1885         * device/include/at89x051.h,
1886         * device/include/at89x51.h,
1887         * device/include/at89x52.h,
1888         * device/include/mcs51reg.h,
1889         * device/include/reg51.h,
1890         * device/include/reg764.h,
1891         * device/include/regc515c.h,
1892         * device/include/sab80515.h: (re)moved these 12 files
1893         * device/include/mcs51/8051.h,
1894         * device/include/mcs51/8052.h,
1895         * device/include/mcs51/at89S8252.h,
1896         * device/include/mcs51/at89c55.h,
1897         * device/include/mcs51/at89x051.h,
1898         * device/include/mcs51/at89x51.h,
1899         * device/include/mcs51/at89x52.h,
1900         * device/include/mcs51/mcs51reg.h,
1901         * device/include/mcs51/reg51.h,
1902         * device/include/mcs51/reg764.h,
1903         * device/include/mcs51/regc515c.h,
1904         * device/include/mcs51/sab80515.h: and added them here
1905
1906 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1907
1908         * device/include/stdarg.h: changed SDCC specific keywords to double
1909           underlined form.
1910         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1911           mcs51 and ds390.
1912         * device/include/hc08/mc68hc908gp32.h,
1913         * device/include/hc08/mc68hc908jb8.h,
1914         * device/include/hc08/mc68hc908jkjl.h,
1915         * device/include/hc08/mc68hc908qy.h: fixed comments
1916         * device/include/mcs51/README: updated
1917         * device/include/mcs51/c8051f120.h: added PINRSF
1918         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1919         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1920           amidst code. Also inline is not supported.
1921
1922 2005-04-06 Raphael Neider <rneider AT web.de>
1923
1924         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1925         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1926           callers stack/frame pointers
1927
1928 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1929
1930         * device/include/pic16/usart.h: added, missing in previous commit,
1931         * device/include/pic16/adc.h: fixed typo,
1932         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1933         commit,
1934         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1935         <p18fxxx.inc>
1936         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1937         uninitialized because a bug appears with gplink
1938         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1939         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1940         complains for unrecognised option
1941
1942 2005-04-05 Raphael Neider <rneider AT web.de>
1943
1944         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1945           structs as well (using memcpy)
1946         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1947           on ISRs (GOTO has no label)
1948         * src/pic16/device.h: added OF_OPTIMIZE_DF
1949         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1950           new data flow analysis/optimization
1951         * src/pic16/pcode.c: added (prototypes for and implementation of)
1952           dataflow analysis functions, fixed pCodeInstructions' inCond and
1953           outCond values, made RCALL a branch instruction
1954         * (pic16_unlinkpCode): keep C line if possible
1955         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1956           C line moved if possible
1957         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1958         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1959           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1960         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1961           new flow)
1962         * (pic16_getJumptabpCode): NEW, needed in...
1963         * (LinkFlow): fixed handling of jumptables, calls and conditional
1964           branches
1965         * (pic16_InsertCommentAfter): NEW
1966         * (pic16_pCodeReplace): made verbose and flow preserving
1967         * (AnalyzeFlow): added call to data flow analysis
1968         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1969         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1970         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1971
1972 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1973
1974         * src/SDCCast.c (decorateType): fixed bug #1105626
1975
1976 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1977
1978         * device/include/asm/pic16/features.h,
1979         * pic18f*.h headers,
1980         * device/include/pic16/adc.h,
1981         * device/include/pic16/delay.h,
1982         * device/include/pic16/i2c.h,
1983         * device/include/pic16/malloc.h,
1984         * device/include/pic16/stdio.h,
1985         * device/include/pic16/stdlib.h,
1986         * device/include/pic16/string.h,
1987         * device/lib/pic16/libc/stdio/printf_tiny.c,
1988         * device/lib/pic16/libc/stdio/printf_small.c,
1989         * device/lib/pic16/libc/stdio/strmgpsim.c,
1990         * device/lib/pic16/libc/stdio/strmmssp.c,
1991         * device/lib/pic16/libc/stdio/strmusart.c,
1992         * device/lib/pic16/libc/stdio/vfprintf.c,
1993         * device/lib/pic16/libc/stdlib/ltoa.c,
1994         * device/lib/pic16/libc/stdlib/putchar.c,
1995         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1996         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1997         * device/lib/pic16/libc/stdlib/memchrram.c,
1998         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1999         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2000         * device/lib/pic16/libio/adc/adcbusy.c,
2001         * device/lib/pic16/libio/adc/adcread.c,
2002         * device/lib/pic16/libio/adc/adcsetch.c,
2003         * device/lib/pic16/libio/usart/ubaud.c,
2004         * device/lib/pic16/libio/usart/ubusy.c,
2005         * device/lib/pic16/libio/usart/udrdy.c,
2006         * device/lib/pic16/libio/usart/uopen.c,
2007         * device/lib/pic16/libio/usart/uputc.c,
2008         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2009         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2010         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2011         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2012         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2013         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2014         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2015         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2016         specific keywords to double underlined form,
2017         * device/lib/pic16/libc/Makefile.rules,
2018         * device/lib/pic16/libsdcc/Makefile.rules,
2019         * device/lib/pic16/libm/Makefile,
2020         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2021         to compile with C standard set in Makefile.common
2022         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2023         rand.c and crc.c in compilation process,
2024         * device/lib/pic16/libsdcc/int/divuint.c,
2025         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2026         `c' from signed to unsigned,
2027         * device/lib/pic16/startup/crt0.c,
2028         * device/lib/pic16/startup/crt0i.c,
2029         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2030         keywords to double underlined form, bug fixes in _do_cinit function
2031         which prevented the correct initialization of the .idata segment,
2032         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2033         core to enter a infinite loop
2034         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2035
2036 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2037
2038         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2039
2040 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2041
2042         * device/include/Makefile.in: add support for hc08 subdirectory
2043         * device/include/hc08/: new subdirectory
2044         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2045         Lucas Loizaga, thanks!
2046         * device/include/hc08/mc68hc908qy.h,
2047         * device/include/hc08/mc68hc908gp32.h,
2048         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2049         their own directory. Changed internal macro names to use the compiler
2050         reserved namespace. Changed SDCC specific keywords to double
2051         underlined form.
2052         * device/include/math.h,
2053         * device/include/malloc.h,
2054         * device/include/stdarg.h,
2055         * device/include/stdbool.h
2056         * device/include/string.h,
2057         * device/include/tinibios.h,
2058         * device/include/ds400rom.h,
2059         * device/include/8051.h,
2060         * device/include/8052.h,
2061         * device/include/80c51xa.h,
2062         * device/include/at89c55.h,
2063         * device/include/at89S8252.h,
2064         * device/include/at89x51.h,
2065         * device/include/at89x52.h,
2066         * device/include/ds80c390.h,
2067         * device/include/reg764.h,
2068         * device/include/regc515c.h,
2069         * device/include/sab80515.h,
2070         * device/include/mcs51/c8051f000.h,
2071         * device/include/mcs51/c8051f018.h,
2072         * device/include/mcs51/c8051f020.h,
2073         * device/include/mcs51/c8051f040.h,
2074         * device/include/mcs51/c8051f060.h,
2075         * device/include/mcs51/c8051f120.h,
2076         * device/include/mcs51/c8051f300.h,
2077         * device/include/mcs51/c8051f310.h,
2078         * device/include/mcs51/c8051f320.h,
2079         * device/include/mcs51/c8051f330.h,
2080         * device/include/mcs51/c8051f350.h,
2081         * device/include/z180.h: Changed SDCC specific keywords to double
2082         underlined form.
2083
2084 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2085
2086         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2087         18F4455,
2088         * (pic16_assignConfigWordValue): disable testing of configuration
2089         register value with config mask,
2090         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2091         function with port->fun_prefix,
2092         * (genFunction): when generating a naked interrupt function never
2093         create an absolute segment placed in interrupt vector address, place
2094         the actual interrupt function at IVA instead, when an interrupt
2095         function is generated with unspecified interrupt then do not create
2096         the absolute section,
2097         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2098         code for generating a call to generic pointer get/put function with
2099         a call to function pic16_callGenericPointer(),
2100         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2101         the call to the generic pointer get/put functions with prefixing the
2102         function name with port->fun_prefix,
2103         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2104         * src/pic16/main.c (_process_pragma): prefix function with
2105         port->fun_prefix,
2106         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2107         calling assembler, old 18Fxxxx macro is deprecated,
2108         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2109         PC_ASMDIR in while condition,
2110         * (findInstruction): add PC_ASMDIR in while condition,
2111         * (buildCallTree): prefix main with port->fun_prefix,
2112         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2113         identifier for variable with banked access in instructions BTFSS,
2114         BTFSC, BCF, BSF, BTG
2115         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2116         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2117         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2118         perform optimization when enviroment variable NO_REG_OPT is set,
2119         * (insideLRBlock): NEW, return 1 if register is inside an
2120         INF_LOCALREGS block,
2121         * (RemoveRegFromLRBlock): remove a register that is completely
2122         eliminated by register optimization, but it is still left in local
2123         register store/restore in/from stack block,
2124         * (Remove2pcodes): after removing register, check to see if it
2125         should be removed from local register store/restore in/from stack
2126         block,
2127         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2128         DUMMY_READ_VOLATILE,
2129
2130         * device/include/pic16/adc.h: minor prototype modifications and
2131         update,
2132         * device/include/pic16/malloc.h: added GPL notice various
2133         modifications,
2134         * device/include/pic16/stdint.h: NEW, standard header for ints
2135         * device/include/pic16/delay.h: NEW, header for delay functions,
2136         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2137         delay1mtcy,
2138         * device/include/pic16/signal.h: NEW, header providing helper macros
2139         for implementing signal handlers,
2140         * device/include/pic16/stdio.h: added prototypes for functions,
2141         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2142         prototypes for stdin and stdout, added macro PUTCHAR to
2143         automatically implement putchar function prototype,
2144         * device/include/pic16/usart.h: modified and updated USART library,
2145         * device/lib/pic16/libio/adc/,
2146         * device/lib/pic16/libio/i2c: some modifications to improve library
2147         performance,
2148         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2149         family of functions,
2150         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2151         family of functions and other sources,
2152         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2153         of the PIC18Fxx[28] devices,
2154         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2155         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2156         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2157         _do_cinit function, because the previous failed when local variables
2158         where not placed in the same memory bank,
2159         * device/lib/pic16/libsdcc/char/: various modifications to improve
2160         library performance,
2161         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2162         information on the new functions of the c library and more...
2163
2164 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2165
2166         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2167
2168 2005-03-26 Raphael Neider <rneider AT web.de>
2169
2170         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2171           if condition == CARRY)
2172         * (genCmp): adapted to new genSkipc semantics
2173         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2174           on rIfx (genCmp was broken)
2175
2176 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2177
2178         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2179         * src/z80/main.c (_keywords[]),
2180         * src/SDCCglobal.h (struct options),
2181         * src/SDCC.y,
2182         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2183         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2184         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2185         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2186         always available in leading double underscore form. The C99 support is
2187         mostly missing, but it's a start.
2188         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2189         reserved identifier "__data".
2190
2191 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2192
2193         * src/mcs51/peeph.def: fixed bug 1170013
2194
2195 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2196
2197         * device/include/mcs51reg.h: fixed bug 842007
2198
2199 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2200
2201         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2202         last time.
2203
2204 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2205
2206         * src/port.h (struct PORT),
2207         * src/avr/ralloc.c (avr_assignRegisters),
2208         * src/avr/main.c,
2209         * src/ds390/ralloc.c (ds390_assignRegisters),
2210         * src/ds390/main.c,
2211         * src/hc08/ralloc.c (hc08_assignRegisters),
2212         * src/hc08/main.c,
2213         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2214         * src/mcs51/main.c,
2215         * src/pic/ralloc.c (pic14_assignRegisters),
2216         * src/pic/main.c,
2217         * src/pic16/ralloc.c (pic16_assignRegisters),
2218         * src/pic16/main.c,
2219         * src/xa51/ralloc.c (xa51_assignRegisters),
2220         * src/xa51/main.c,
2221         * src/z80/ralloc.c (z80_assignRegisters),
2222         * src/z80/ralloc.h,
2223         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2224         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2225         * src/SDCCcse.h,
2226         * src/SDCCdflow.c (computeDataFlow),
2227         * src/SDCCdflow.h,
2228         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2229         * src/SDCCloop.h,
2230         * src/SDCCcflow.c (*),
2231         * src/SDCCcflow.h,
2232         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2233         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2234         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2235         immedDom() returning wrong block; probably fixes bug #1160833)
2236
2237 2005-03-20 Borut Razem <borut.razem AT siol.net>
2238
2239         * support/scripts/inc2h.pl: WIN32 port
2240
2241 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2242
2243         * device/lib/makefile.in: added abs.c and labs.c
2244
2245 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2246
2247         * device/include/stdint.h: added
2248         * device/lib/abs.c: added
2249         * device/lib/labs.c: added
2250         * device/include/stdlib.h: added abs() and labs() prototypes
2251         * device/lib/libsdcc.lib: added abs and labs
2252         * device/include/float.h,
2253         * device/lib/_fsmul.c,
2254         * device/lib/printf_fast.c,
2255         * device/lib/printf_tiny.c: updated comments
2256
2257 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2258
2259         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2260         bug #1164313
2261
2262 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2263
2264         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2265         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2266
2267 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2268
2269         * device/lib/printf_large.c: removed inline assembly for portability and
2270           readability. Use printf_fast if speed or size are more important.
2271         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2272         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2273
2274 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2275
2276         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2277         prevent compiler warning
2278
2279 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2280
2281         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2282         moved to level 0 and declared as static. Also they are explicit
2283         placed in access bank. This was necessery because some times they
2284         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2285         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2286         optimizations. Currently only compare to unsigned char is implemented,
2287         * src/pic16/gen.c: added fReturnIdx array,
2288         * (struct resolvedIfx) is moved to gen.h and made public,
2289         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2290         * (aopForSym): added an optimization to directly store in stack of
2291         the operand of a SEND iCode,
2292         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2293         but as registers instead (AOP_REG) using the fReturnIdx array,
2294         * (pic16_freeAsmop): remove the freed register from the
2295         _G.sregsAlloc field,
2296         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2297         a compare of 'WREG',
2298         * (pic16_popGetTempRegCond): changed function prototype, now
2299         function takes also a bitVector argument v which holds the current
2300         set of registers that are allocated for stack access by aopForSym,
2301         registers allocated in aopForSym for accessing stack symbols are not
2302         any more part of the functions usedRegs field,
2303         * (genCall): some times aopOp is called for a stack variable to be
2304         send, aopForSym might perform the push, if this is true make sure
2305         that genCall doesn't push the variable twice by testing _G.resDirect,
2306         * (genFunction): changed testing for unspecified interrupt number
2307         from 256 to INTNO_UNSPEC,
2308         * modified selection scheme of frame pointer generation. Previously
2309         if function did use local registers a frame pointer was generated,
2310         now a frame pointer is generated only if function has arguments
2311         (that need PLUSW2 register access), or has stack arguments, or the
2312         compiler is not instructed to omit the frame pointer,
2313         * (genEndFunction): before restoring local registers that were saved
2314         in the function preamble, also restore the registers that *might*
2315         have been allocated for stack access,
2316         * (genRet): removed some old comments,
2317         * (genCmp, the active (RN's) version): added a call to the
2318         pic16_genCmp_special function to perform the compare with a more
2319         robust and optimized way,
2320         * (genInline): a feature has been added in inline code generation,
2321         which allows a wildcard variable substitution when writing inline
2322         assembly. Code is incomplete and experimental therefore undocumented,
2323         * (genCast): changed order of aopOp for result and right to allow
2324         aopForSym to directly load the result if possible,
2325         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2326         perform an optimized compare on some selected special occasions,
2327         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2328         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2329         generate an IVT any more,
2330         * src/pic16/main.c (pic16_optionsTable): added command line option
2331         --optimize-cmp,
2332         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2333         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2334         macros,
2335         * src/pic16/NOTES: Raphael Neider added in list of active developers
2336         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2337         jumptable_end to prevent bug #,
2338         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2339         inCond and outCond fields,
2340         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2341         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2342         turn off register spilling,
2343         * (packRegsForOneUse): synced with other ports' versions although it
2344         is not used currently,
2345         * (pic16_packRegisters): added an optimization while reading
2346         structure bitfields, some registers may be saved (malloc code is
2347         decreased by 80 bytes)
2348
2349 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2350
2351         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2352         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2353         this can be optimized more?
2354
2355 2005-03-10 Raphael Neider <rneider AT web.de>
2356
2357         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2358           genNearPointerGet): (hopefully) fixed access to bitfields via
2359           pointers (p->bitN = x; and x = p->bitN; failed)
2360
2361 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2362
2363         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2364
2365 2005-03-09 Raphael Neider <rneider AT web.de>
2366
2367         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2368
2369 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2370
2371         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2372         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2373           (regTypeNum): set REG_BIT type if necessary
2374         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2375         * support/regression/tests/critical.c: check bug 1144613
2376
2377 2005-03-02 Raphael Neider <rneider AT web.de>
2378
2379         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2380
2381 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2382
2383         * src/avr/ralloc.c (serialRegAssign),
2384         * src/ds390/ralloc.c (serialRegAssign),
2385         * src/hc08/ralloc.c (serialRegAssign),
2386         * src/mcs51/ralloc.c (serialRegAssign),
2387         * src/pic/ralloc.c (serialRegAssign),
2388         * src/pic16/ralloc.c (serialRegAssign),
2389         * src/xa51/ralloc.c (serialRegAssign),
2390         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2391
2392 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2393
2394         * src/SDCCast.c (decorateType): fixed bug 1124787
2395
2396 2005-02-20 Hubert Sack <sack AT digiplan.de>
2397         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2398
2399         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2400         patch #1121755
2401
2402 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2403
2404         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2405         to keep the correct label reference count when adding/removing references
2406         to labels. A peephole file using this is appended to patch #1144962.
2407
2408 2005-02-14 Raphael Neider <rneider AT web.de>
2409
2410         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2411         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2412         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2413           retrievals of result operand's value on assignment
2414
2415 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2416
2417         * device/include/pic16/string.h: modified prototype for memccpy()
2418         to memccpy(void *, void *, char, size_t)
2419         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2420         check whether to omit frame pointer or not,
2421         * (genInline): convert all occurences of "\n" to LF in inline
2422         assembler blocks, this helps formatting the inline text,
2423         * (pic16_loadFSR0): modified prototype,
2424         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2425         removed some 8051 legacy code,
2426         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2427         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2428         before allocating temporary registers in functions,
2429
2430 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2431
2432         * support/regression/tests/bitvars.c: corrected the "fix"
2433
2434 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2435
2436         * support/regression/tests/bitvars.c,
2437         * support/regression/tests/bitwise.c,
2438         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2439
2440 2005-02-10 Raphael Neider <rneider AT web.de>
2441
2442         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2443           different size for Alpha
2444         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2445
2446 2005-02-09 Raphael Neider <rneider AT web.de>
2447
2448         * src/SDCC.lex(doPragma) : save and restore warning options as well
2449           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2450         * have #pragma less_pedantic set the errorlevel to WARNING
2451           (fixes #1117001)
2452         * (cloneOptimize) : fixed wrong malloc's size
2453         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2454           facilitate correct handling of #pragma (save|restore)
2455
2456 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2457
2458         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2459
2460 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2461
2462         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2463
2464 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2465
2466         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2467
2468 2005-02-02 Raphael Neider <rneider AT web.de>
2469
2470         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2471         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2472         * (pic16_storeForReturn): fixed to allow returning function pointers
2473         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2474         * device/include/pic16/{stddef.h,stdbool.h}: added
2475
2476 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2477
2478         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2479
2480 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2481
2482         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2483         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2484          appeared to be required
2485
2486 2005-01-31 Borut Razem <borut.razem AT siol.net>
2487
2488         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2489           include/mcs51 and include/z80 directories to the package
2490
2491 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2492
2493         * src/hc08/gen.c (genFunction): fixed bug #1112752
2494
2495 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2496
2497         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2498
2499 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2500
2501         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2502
2503 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2504
2505         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2506
2507 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2508
2509         * device/include/c8051fxxx.h: removed these 6 files
2510         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2511
2512 2005-01-26 Raphael Neider <rneider AT web.de>
2513
2514         * src/pic16/gen.c (genAssign): fixed assignment from longs
2515           in codespace (were cut to three bytes)
2516         * (genDummyRead): implemented (except for CODESPACE...),
2517           fixed bug #1108575
2518         * src/pic16/glue.c (emitStatistics): beautified
2519         * device/lib/pic16/libm/Makefile: added include path
2520
2521 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2522
2523         * src/z80/gen.c (aopPut): fixed bug #1103902
2524
2525 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2526
2527         * device/lib/expf.c: fixed bug #1095792
2528
2529 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2530
2531         * device/lib/pic16/libm: added Math library sources
2532
2533 2005-01-24 Raphael Neider <rneider AT web.de>
2534
2535         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2536           to enable upcast to pCodeOpReg2 (there is no type tag to
2537           differenciate the two and pic16_popGet2p cast into PCOR2)
2538         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2539           (sizeof(sectNames) changed to sizeof(sectName))
2540           Both patches fix segfaults under MinGW.
2541
2542 2005-01-23 Raphael Neider <rneider AT web.de>
2543
2544         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2545           Safe_[mc]?alloc()'ed variables
2546         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2547           of (byte sized) temporaries (assign them to WREG for now)
2548         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2549           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2550           this might fix SIGSEGVs on MinGW...
2551         * src/SDCCopt.c (killDeadCode): restored original behaviour
2552           (volatile operands might get thrown away though)
2553
2554 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2555
2556         * src/pic16/gen.c: fixed bug #1106975,
2557         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2558         pointer update, INTCON is saved, global interrupts are disabled and
2559         restored after updateing TOS.
2560         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2561         * added function attribute 'shadowregs' to take advantage of shadow
2562         registers,
2563         * added function attribute 'wparam' as an alternative to the wparam
2564         pragma,
2565         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2566         user declares a non-ISR function as 'shadowregs',
2567         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2568
2569 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2570
2571         * .version: bumped version number to 2.4.8
2572         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2573         pic16 port,
2574         * device/lib/pic16/libio/i2c/: I2C module support library,
2575         * device/include/pic16/i2c.h: I2C support library header,
2576         * device/lib/pic16/libc/stdio/: standard IO support sources,
2577         * (printf_small.c): printf_small() source, supports float print,
2578         * (printf_tiny.c): printf_tiny() source, does not support floats,
2579         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2580         enable global optimizations for entire library source, other
2581         Makefiles in the source tree are also modified to reflect this,
2582         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2583         function,
2584         * doc/sdccman.lyx: updated to reflect new changes,
2585         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2586         sym->onStack if-case,
2587         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2588         sbit, idata, _idata, xdata, _xdata,
2589         * added pragma library, to link an external library, (see doc),
2590         * removed command line options, --pomit-config-words, --pomit-ivt,
2591         --pleave-reset-vector,
2592         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2593         when calling assembler to reflect memory model used, also define
2594         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2595         reflect stack model used,
2596         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2597         on stack return NULL,
2598
2599 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2600
2601         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2602           of the operands is volatile. Fixes #1020220
2603
2604 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2605
2606         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2607         * (OptimizeRegUsage): make sure that there is really no other flow where
2608           the first pCode is used
2609
2610 2005-01-22 Raphael Neider <rneider AT web.de>
2611
2612         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2613           to fix #1106967 (pCode->seq are not set up correctly)
2614
2615 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2616
2617         * src/SDCCglue.c (glue): make sure code area is declared before the
2618         static initialization area.
2619
2620 2005-01-21 Raphael Neider <rneider AT web.de>
2621
2622         * device/lib/Makefile.in: fixed test for pic16 install dir
2623         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2624           optimizations
2625         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2626           added --optimize-goto compiler switch and pragma wparam documentation
2627         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2628         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2629           and PRODH closing bug #1071770 (peephole optimizer)
2630
2631 2005-01-19 Raphael Neider <rneider AT web.de>
2632
2633         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2634           cmdLine buffers (used when calling sdcpp...) are large enough
2635           (MAX_PATH=256 truncates arguments leading to system halts when
2636           used in MinGW...)
2637         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2638         * (genUminus): rewritten to for efficiency
2639         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2640           used uninitialized in some cases)
2641         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2642           copy the third byte from the int -- now assumes 0x80 (data memory)
2643         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2644           operands (genAddLit expects the iCode's operands to swapped as
2645           well), fixed leftover bytes (crashed for short left operands)
2646         * (pic16_genMinusDec): performance improvements, removed false
2647           PIC14 emitSKPNCs
2648         * (pic16_genMinus): fixed to cope with differently sized operands
2649         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2650           for --obanksel > 1
2651         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2652         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2653           new banksel optimization
2654         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2655           analysis for temporary registers (segfaults...)
2656         * src/pic16/peeph.def: added rule
2657
2658 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2659
2660         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2661         which converts a float number to its ASCII representation
2662         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2663         functions to convert the fractional and integer part of a float to ASCII,
2664         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2665         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2666         ram
2667         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2668         _STATMEM macros,
2669         * device/include/pic16/adc.h: added GPL info,
2670         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2671         a pCodeOp as tested operand,
2672         * (genNearPointerGet): optimized bit testing, does not use
2673         intermediate register for bit value, test directly instead with
2674         BTFSS, BTFSC, works only for single bits,
2675         * (genpic16Code): dump the name of the iCode in the asm,
2676         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2677         renamed to pic16_decodeOp,
2678         * (serialRegAssign): do not allocate a temporary register for iCode
2679         sequences that test a single bit for 1/0
2680
2681 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2682
2683         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2684         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2685         access stack and frame pointers. They are initially assigned to
2686         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2687         accessing SFRs. Updated all occurences of modification of stack or
2688         frame pointer in gen.c and pcode.c,
2689         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2690         assigning of a literal value to pointers,
2691         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2692         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2693         selected
2694
2695 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2696
2697         * doc/sdccman.lyx: update documentation about stack pragma, added
2698         some info for stack memory models
2699
2700 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2701
2702         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2703
2704 2005-01-08 Raphael Neider <rneider AT web.de>
2705
2706         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2707           udata sections to fix bug #1097823
2708
2709 2005-01-05 Raphael Neider <rneider AT web.de>
2710
2711         * src/pic16/gen.c (genGenericShift): added handling of differently
2712           sized left operand and result
2713
2714 2005-01-04 Raphael Neider <rneider AT web.de>
2715
2716         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2717         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2718           to hold the condition bit)
2719         * added new version of genCmp (old code available via #define)
2720         * added new version of genShiftLeft/genShiftRight in a generic
2721           way, now supports shifting by negative values
2722         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2723           shiftCount (expected by genGenericShift)
2724         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2725         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2726           dump
2727         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2728           is an invalid literal too...)
2729
2730 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2731
2732         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2733         from Raphael Neider,
2734         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2735         for 8-bit literals. This fixes some literal operands which are sign
2736         extended to 16-bits ints when instruction needs only 8-bits.
2737
2738 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2739
2740         * device/lib/logf.c: added mcs51 assembly version
2741         * device/lib/expf.c: added mcs51 assembly version
2742         * device/lib/_logexpf.c: new shared asm code for expf and logf
2743         * device/include/math.h: add defines for assembly math library
2744         * device/lib/Makefile.in: build new _logexpf.c
2745         * device/lib/libfloat.lib: use new _logexpf.c
2746
2747 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2748
2749         * src/pic/device.c
2750         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2751           device types which have less than 0x7f registers.
2752
2753 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2754
2755         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2756
2757 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2758
2759         * device/lib/printf_fast.c: only build on supported arch.
2760         * device/lib/printf_tiny.c: only build on supported arch.
2761         * device/lib/printf_fast_f.c: only build if asm float lib
2762         * device/lib/_fsget1arg.c: only build if asm float lib
2763         * device/lib/_fsget2args.c: only build if asm float lib
2764         * device/lib/_fsnormalize.c: only build if asm float lib
2765         * device/lib/_fsreturnval.c: only build if asm float lib
2766         * device/lib/_fsrshift.c: only build if asm float lib
2767         * device/lib/_fsswapargs.c: only build if asm float lib
2768         * device/include/stdio.h: don't provide print_fast,
2769           print_fast_f, print_tiny prototypes if --xstack used
2770
2771 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2772
2773         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2774         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2775           to the SOURCES
2776
2777 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2778
2779         * device/lib/printf_fast_f.c: same as printf_fast, but
2780           with floating point enabled
2781         * device/lib/printf_fast.c: minor tweaks
2782         * device/include/stdio.h: add printf_fast_f
2783
2784 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2785
2786         * src/SDCCmain.c: make --float-reent default for mcs51
2787         * device/lib/_fsadd.c: added mcs51 assembly version
2788         * device/lib/_fssub.c: added mcs51 assembly version
2789         * device/lib/_fsmul.c: added mcs51 assembly version
2790         * device/lib/_fsdiv.c: added mcs51 assembly version
2791         * device/lib/_fseq.c: added mcs51 assembly version
2792         * device/lib/_fsneq.c: added mcs51 assembly version
2793         * device/lib/_fsgt.c: added mcs51 assembly version
2794         * device/lib/_fslt.c: added mcs51 assembly version
2795         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2796         * device/lib/Makefile.in: add _fscmp to build
2797         * device/lib/libfloat.lib: add _fscmp to build
2798
2799 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2800
2801         * device/lib/_fs2slong.c: added mcs51 assembly version
2802         * device/lib/_fs2sint.c: added mcs51 assembly version
2803         * device/lib/_fs2schar.c: added mcs51 assembly version
2804         * device/lib/_fs2ulong.c: added mcs51 assembly version
2805         * device/lib/_fs2uint.c: added mcs51 assembly version
2806         * device/lib/_fs2uchar.c: added mcs51 assembly version
2807         * device/lib/_slong2fs.c: added mcs51 assembly version
2808         * device/lib/_sint2fs.c: added mcs51 assembly version
2809         * device/lib/_schar2fs.c: added mcs51 assembly version
2810         * device/lib/_ulong2fs.c: added mcs51 assembly version
2811         * device/lib/_uint2fs.c: added mcs51 assembly version
2812         * device/lib/_uchar2fs.c: added mcs51 assembly version
2813         * device/include/float.h: added #define to select asm vs c
2814
2815 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2816
2817         * device/lib/printf_fast.c: improvements to float output
2818         * device/include/float.h: add defines for assembly float library
2819         * device/lib/_fsget1arg.c: receive 1 float arg
2820         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2821         * device/lib/_fsnormalize.c: normalize a float
2822         * device/lib/_fsreturnval.c: return float, various helper routines
2823         * device/lib/_fsrshift.c: right shift a float's mantissa
2824         * device/lib/_fsswapargs.c: swap 2 floats
2825         * device/lib/Makefile.in: build these 6 new files for mcs51
2826         * device/lib/libfloat.lib: add these 6 files to the library
2827
2828 2004-12-26 Borut Razem <borut.razem AT siol.net>
2829
2830         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2831           built by gcc 3.4.2
2832
2833 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2834
2835         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2836           and fully reentrant and register bank neutral.
2837         * device/lib/printf_fast.c: added float (not enabled by default),
2838           added compact/slower integer (also not enabled by default),
2839           improved size/speed of fast integer code, other minor changes
2840         * device/include/stdio.h, device/lib/Makefile.in,
2841           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2842
2843 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2844
2845         * src/pic16/pcode.c: declaring variables other than at the start of a
2846           block is not supported in C by VC6.
2847
2848 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2849
2850         * applied a previous patch from Raphael Neider that wasn't included
2851         in the previous commits, which fixes infinite loops within jumptable
2852         improvements,
2853         * made some fixes that previous patches introduced
2854
2855 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2856
2857         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2858         that fixes an issue with AOP_PCODE asmop's offset,
2859         * (pic16_popCopyReg): update instance field too,
2860         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2861         function of pic port,
2862         * (genCmp, genAnd, genAssign),
2863         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2864
2865 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2866
2867         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2868         variables initial values to idata section,
2869         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2870         variables in some functions. This utilizes parmBytes field of iCode
2871         structure to hold the offset of the variable in stack. (might be
2872         able to use the stack field too?)
2873         * applied patch from Raphael Neider # ### , # ###
2874         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2875         variable initial values in idata section,
2876         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2877         for static variables with initial value
2878         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2879         applied fix in while loop from Raphael Neider.
2880
2881 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2882
2883         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2884         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2885         * src/ds390/ralloc.c (serialRegAssign): spill bits
2886         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2887         * support/Util/SDCCerr.c,
2888         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2889         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2890         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2891
2892 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2893
2894         * device/include/sdcc-lib.h: inserted LGPL, added includes
2895           asm/ds390/features.h and asm/mcs51/features.h
2896         * device/include/asm/default/features.h,
2897         * device/include/asm/gbz80/features.h,
2898         * device/include/asm/z80/features.h: added empty _AUTOMEM
2899           and _STATMEM
2900         * device/include/asm/ds390/features.h,
2901         * device/include/asm/mcs51/features.h: added files with defines for
2902           _AUTOMEM and _STATMEM indicating automatic and static storage class
2903         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2904         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2905         * src/SDCCicode.c (geniCodeCast),
2906         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2907         * src/SDCCloop.c (loopInduction): removed unused variable lr
2908         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2909           to convertToFcall to include char modulo (RFE 1065037), added check
2910           if left operand is unsigned and use abs of literal value
2911         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2912           as it doesn't work after conversion from peephole.def to peephole.rul
2913         * src/mcs51/gen.c (toBoolean): added check for size,
2914           (genModOneByte): optimized code for signed char modulo a literal
2915           power of 2 (thanks to Hubert Sack),
2916           (genRRC): removed unnecessary "clr c",
2917           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2918         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2919           jump optimization,
2920           swapped rules 256.c and 256.d,
2921           extended 256.d by using new multiple checks (thanks Erik),
2922           added rules 256.e and 256.f,
2923           updated rule 261.a and 261.b to new generated code
2924         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2925
2926 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2927
2928         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2929           induction related bugs, including first part of bug #1074377
2930
2931 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2932
2933         * applied patch from bug-report #1076292,
2934         * applied patches for genAnd and Goto-optimizations for Raphael
2935         Neider,
2936         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2937         dump a less iCode information,
2938         * src/pic16/device.h (pic16_options_t): added field debgen,
2939         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2940         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2941         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2942         puclic,
2943         * (various functions): added macros FENTRY and FENTRY2 to functions,
2944         to emit function prologue,
2945         * (various functions): fixed indentation,
2946         * (genNearPointerGet): fixed loading of FSR0,
2947         * (genPackBits): applied patch from Raphael Neider to fix updating
2948         of FSR0 and touching only the modified bits,
2949         * src/pic16/genarith.c (various functions): added macros FENTRY to
2950         emit function prologue in comments,
2951         * src/pic16/pcode.h: added functions debugf2, debugf3,
2952         * src/pic16/ralloc.c: partial fix for packForPush caused
2953         segmentation fault,
2954
2955 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2956
2957         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2958           <stsp AT users.sourceforge.net> with reversed byte order
2959         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2960
2961 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2962
2963         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2964           bug #1074377
2965         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2966         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2967
2968 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2969
2970         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2971
2972 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2973
2974         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2975           conditions,
2976           (setFromConditionArgs): friendly operand parser for peephole rules,
2977           (operandBaseName, operandsNotRelated): new peephole condition
2978           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2979           architecture specific register naming into account, handles n-way
2980           comparisons, and supports quoted literals
2981         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2982
2983 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2984
2985         * src/mcs51/peeph.def: fixed bug #1076940
2986
2987 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2988
2989         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2990
2991 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2992
2993         Adding support for replacing ljmps with sjmps in jumptables
2994         generated for switch statements. For now you need to set the
2995         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2996         Now 4 algorithms for mcs51 jumptable generation are used:
2997         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2998         addresses loaded pc-relative for up to 112 cases and stack-pushing
2999         target addresses loaded with offset from dptr for up to 256 cases.
3000
3001         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3002         * src/mcs51/main.c: adapted constants for switch table generation
3003         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3004
3005 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3006
3007         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3008         * support/regression/tests/bug1057979.c: added test for bug 1073386
3009
3010 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3011
3012         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3013         compilers
3014
3015 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3016
3017         * src/pic16/device.h,
3018         * src/pic16/genarith.c,
3019         * src/pic16/glue.c,
3020         * src/pic16/main.c,
3021         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3022
3023 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3024
3025         Large cummulative patch for pic16 port.
3026         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3027         to call when a stack overflow occurs,
3028         * (malloc.h): added CVS Id tag,
3029         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3030         variable,
3031         * added libc directory. The current version of LibC contains string
3032         functions, ctype functions and macros and some functions of the
3033         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3034         be extensively tested in the future. Standard disclaimer here.
3035         Library is not automatically build yet. But one can build it by
3036         invoking 'make' inside the libc directory.
3037         * added ADC library under libio. Preliminary version yet.
3038
3039         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3040         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3041         aopForRemat() now and not by pic16_aopOp(),
3042         * (pic16_popGetTempReg): removed warning messgae when allocating
3043         temporary registers, its a buggy feature and will be removed,
3044         * (pic16_popGet): set register instance field in AOP_CRY,
3045         * (pic16_outBitC): fixed for results in size greater than 1,
3046         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3047         * (pic16_storeForReturn): optimized return of 0,
3048         * (genCmp): experimental code for new genCmp which uses PIC18's
3049         special compare&skip instructions. Initial tests fail some times
3050         with variables grater than 1 byte in size, so new code is disabled,
3051         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3052         a single bit,
3053         * (genCast): began a fix to optimize the casting of a bit to another
3054         bit, now assigning a bitfield to another bitfield will fail, sorry,
3055         * src/pic16/main.c: disabled the use of lr-support feature,
3056         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3057         * added some function prototypes, added function _debugf prototype,
3058         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3059         bits with offset (case PO_GPR_BIT),
3060         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3061         command line,
3062         * (isBankInstruction): modified to return 0 for no banking instruction,
3063         and 1 for banking instruction,
3064         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3065         caused stop processing pCodes after a inline assembly block,
3066         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3067         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3068         registers when it shouldn't,
3069         * src/pic16/ralloc.c (allocReg): add preliminary support for
3070         supporting a limited set of temporary registers,
3071
3072 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3073
3074         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3075           genDataPointerSet): ensure assignments always copy in MSB to LSB
3076           order,
3077           (loadRegFromAop): recognize CLRH optimization,
3078           (genFunction): optimize RECEIVE iCodes in reentrant functions
3079
3080 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3081
3082         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3083           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3084           selected.
3085         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3086         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3087           contiguous with data
3088
3089 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3090
3091         * device/lib/_gptrget.c (_gptrget),
3092         * device/lib/_gptrgetc.c (_gptrgetc),
3093         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3094           instead of sjmp to ret
3095         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3096           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3097
3098 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3099
3100         * .version: bumped version to 2.4.7
3101         * device/lib/_gptrget.c (_gptrget): is now _naked
3102         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3103         * device/lib/_gptrput.c (_gptrput): is now _naked
3104         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3105           (createFunction): fixed xstack
3106         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3107         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3108           or bit either,
3109           (geniCodeCritical): store original interrupt state in an iTemp bit
3110           var unless stack-auto
3111         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3112         * src/SDCCmain.c (setIncludePath): added include/target to search path
3113         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3114         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3115           prototype,
3116           (processFuncArgs): put bit vars in bit area
3117         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3118           unsaveRBank): fixed xstack,
3119           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3120           (genFunction, genEndFunction): fixed xstack,
3121           (genAssign): optimization don't walk backwards through mem
3122         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3123         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3124         * support/regression/Makefile: also make library (for stack-auto) when
3125           making "all" and added "test-mcs51-xstack-auto"
3126         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3127         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3128         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3129         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3130         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3131           make-library by MAKE_LIBRARY
3132         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3133           regression tests for xstack
3134         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3135         * support/regression/tests/critical.c: test for critical on mcs51
3136
3137 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3138
3139         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3140           built version of sdcc instead of installed version
3141
3142 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3143
3144         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3145         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3146           vprintf.c now
3147         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3148         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3149           WARNING: remove device/lib/build/z80/printf.o by hand when
3150           updating from previous build!
3151         * device/lib/z80/printf.c: updated comment
3152         * support/regression/tests/bug1057979.c: test all ports now
3153         * support/regression/tests/bug1065458.c: file added
3154
3155 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3156
3157         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3158           *_start and *_end symbols for static functions
3159
3160 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3161
3162         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3163           and search crt0.o in all library paths,
3164           (setIncludePath): proper handling of --nostdinc,
3165           (setLibPath): proper handling of --nostdlib
3166         * support/regression/Makefile,
3167         * support/regression/ports/ds390/spec.mk,
3168         * support/regression/ports/gbz80/spec.mk,
3169         * support/regression/ports/hc08/spec.mk,
3170         * support/regression/ports/mcs51/spec.mk,
3171         * support/regression/ports/mcs51-large/spec.mk,
3172         * support/regression/ports/mcs51-stack-auto/spec.mk,
3173         * support/regression/ports/z80/spec.mk: use include and lib files from
3174           built version of sdcc instead of installed version
3175         * doc/sdccman.lyx: fixed typo in --nostdinc
3176
3177 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3178
3179         * src/pic/pcode.c,
3180         * src/pic/device.c,
3181         * src/pic/ralloc.c,
3182         * src/pic/gen.c : added support to generate code for struct bit fields.
3183
3184 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3185
3186         * as/xa51/xa_version.h,
3187         * device/include/errno.h,
3188         * device/include/regc515c.h,
3189         * device/lib/_itoa.c,
3190         * device/lib/_ltoa.c,
3191         * device/lib/ser_ir_cts_rts.c,
3192         * sim/ucsim/xa.src/glob.cc,
3193         * sim/ucsim/xa.src/inst_gen.cc,
3194         * sim/ucsim/xa.src/xa_bit.cc,
3195         * sim/ucsim/xa.src/xa_sfr.cc,
3196         * sim/ucsim/z80.src/inst_dd.cc,
3197         * sim/ucsim/z80.src/inst_fdcb.cc,
3198         * support/scripts/keil2sdcc.pl,
3199         * src/pic16/pic16.dsp,
3200         * src/pic16/pic16a.dsp: corrected cvs line endings
3201         * device/lib/printf_large.c: fixed bug 1057979
3202         * src/pic16/gen.c: fixed non-C standard code
3203         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3204         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3205         * support/regression/ports/mcs51/support.c: reload T1 asap
3206         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3207           pdata use and clear idata startup behaviour
3208         * support/regression/tests/bug1057979.c: added
3209
3210 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3211
3212         * device/examples/ds390/ow390/ad26.h,
3213         * device/examples/ds390/ow390/cnt1d.h,
3214         * device/examples/ds390/ow390/crcutil.c,
3215         * device/examples/ds390/ow390/ownet.h,
3216         * device/examples/ds390/ow390/owsesu.c,
3217         * device/examples/ds390/ow390/swt12.h,
3218         * device/examples/ds390/ow390/swtoper.c,
3219         * device/examples/ds390/ow390/temp10.h,
3220         * device/examples/ds390/ow390/thermodl.c,
3221         * device/examples/ds390/tinitalk/tinitalk.dsp,
3222         * device/examples/ds390/tinitalk/tinitalk.dsw,
3223         * device/examples/mcs51/clock/hw.h,
3224         * device/examples/mcs51/simple2/go.bat,
3225         * device/examples/serialcomm/windows/serial.h,
3226         * device/examples/xa51/dummy.c,
3227         * device/examples/xa51/hello.c,
3228         * device/include/80c51xa.h,
3229         * device/include/at89x051.h: corrected cvs line endings
3230
3231 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3232
3233         * src/pic16/main.c (options): added command line --gstack, to trace
3234         stack over/under flows,
3235         * added pragma 'wparam' to allow passing first byte of function
3236         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3237         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3238         call to __gstack_test function and sets up the symbol as extern,
3239         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3240         * popaop): added call to pic16_testStackOverflow,
3241         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3242         wparamList list,
3243         * (genCall, genPcall): now all parameters are passed via stack
3244         except in functions that are pass to wparam pragma in which WREG is
3245         used too,
3246         * (genPcall): REENTRANT flag is checked to see if variable prototype
3247         contains reentrant keyword, don't call a non-reentrant function, via
3248         a reentrant function pointer or vice versa, functions are never
3249         passed via WREG,
3250         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3251         D.Winkler,
3252         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3253         SIGSEGV when accessing a NULL register stucture,
3254         * (pic16_printGPointerType): modified to handle UPPER modifier for
3255         function initializers, changed prototype of function to simpler one,
3256         * (pic16_printIvalFuncPtr): check to see if function is already
3257         added in externs list,
3258         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3259         optimized a move from W to SFR with a move to the same register
3260         later after a CALL,
3261         * device/lib/pic16/debug: NEW directory, contains debug features
3262         which are enabled when linking with libdebug.lib, currently command
3263         line option --gstack enables stack pointer tracing for over/under
3264         flow, corresponding sources are in debug/gstack
3265
3266 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3267
3268         * doc/sdccman.lyx: updated SDCC version,
3269         * (PIC16 port): update list of command line options,
3270         * src/pic16/device.h (structure pic16_options_t): added field gstack
3271         to enable stack overflow tracing on push/pops,
3272         * src/pic16/device.c (statistics structure): added statistics
3273         structure,
3274         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3275         pic16_dump_int_registers): increase statistics counters for each
3276         * variable which is encountered
3277         * (pic16_dump_usection): emit each .udata variable to its own udata
3278         section,
3279         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3280         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3281         parameters via stack, otherwise use old scheme,
3282         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3283         assembler output file,
3284         * src/pic16/main.c: added command line options --gstack to enable
3285         push/pop tracing for stack overflow,
3286         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3287         instructions): added size of each instruction,
3288         * (pic16_countInstruction): estimate size of instructions in
3289         the_pFile list, inline assembly blocks are not counted,
3290         * (pic16_FixRegisterBanking): trace previous register usage, when
3291         banksel optimizations is greater than 0, don't emit a redudant
3292         banksel directive,
3293
3294 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3295
3296         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3297         * src/pic16/ralloc.c : applied same fix for pic16.
3298         * src/pic/gen.c : tidied it up a little.
3299
3300 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3301
3302         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3303         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3304
3305 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3306
3307         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3308
3309 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3310
3311         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3312         non-reentrant function __modsint in the interrupt function (thus
3313         corrupting math operations during serial I/O)
3314         * device/lib/ser_ir.c: as above, changed buffersize
3315         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3316         256.c,d for zeroing
3317         * doc/Makefile: added option -t for rsync
3318
3319 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3320
3321         * src/SDCCast.h (struct ast),
3322         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3323
3324 2004-10-20 Borut Razem <borut.razem AT siol.net>
3325
3326         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3327         package
3328
3329 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3330
3331         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3332         makefile targets,
3333         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3334         support functions to replace long sequences of MOVFF's from access
3335         bank registers to stack and vice versa,
3336         * src/pic16/device.h: added new field opt_flags, where optimization
3337         flags can be set to enable certain features,
3338         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3339         * pBlock, (genFunction, genEndFunction): surroung loop for
3340         saving/loading used registers in stack with PC_INFO pCodes,
3341         INF_LREGS. Code in between can then be optimized by pCode optimizer
3342         to support function calls,
3343         * (genDataPointerSet): fixed bug which loaded float fields in
3344         structures with corrupt data,
3345         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3346         in a standard way debug info on stderr. Feature used for developing
3347         and debugging only,
3348         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3349         obsolete chunks of code,
3350         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3351         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3352         * pic16/src/pcode.c (pic16_newpCodeInfo,
3353         * (pic16_newpCodeOpLocalRegs),
3354         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3355         feature,
3356         * (pic16_pCodeConstString): printing of the initial value of a
3357         symbol as a comment is inhibited since parsing was already done by
3358         copyStr and output is corrupt,
3359         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3360
3361 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3362
3363         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3364
3365 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3366
3367         * as/mcs51/lkarea.c: removed old K&R style,
3368           (lnksect): changed check on boundary error,
3369           (lnksect2): changed check on boundary error,
3370           (lnksect2): extend XSTK to end of page if size = 1
3371         * as/mcs51/lkmain.c: removed old K&R style,
3372           (Areas51): create l_IRAM symbol
3373         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3374         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3375           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3376         * device/lib/_mullong.c: added version to be compiled with xstack
3377         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3378         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3379         * device/lib/mcs51/crtxstack.asm: fixed comment
3380         * src/SDCCglue.c: maxInterrupts defaults to 0,
3381           (emitMaps): added pdata,
3382           (createInterruptVect): (re)moved default,
3383           (glue): added pdata,
3384           (glue): moved __start__xstack to XSTK with default size 1
3385         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3386           and options.float_rent when options.stackAuto is set,
3387           (linkEdit): only write XDATA_NAME if provided on command line
3388         * src/SDCCmem.h,
3389         * src/SDCCmem.c: added pdata
3390         * src/port.h: added pdata_name to PORT
3391         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3392           (saveRegisters, unsaveRegisters): removed usage of B,
3393           (genMinus): fixed accumulator clash,
3394           (genJumpTab): added comment, this needs another look
3395         * src/mcs51/gen.c: added check for "B in use" paranoia,
3396           added pushB() and popB()
3397         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3398           chance
3399         * src/avr/main.c,
3400         * src/ds390/main.c,
3401         * src/hc08/main.c,
3402         * src/mcs51/main.c,
3403         * src/pic/main.c,
3404         * src/pic16/main.c,
3405         * src/xa51/main.c,
3406         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3407           added PSEG (PAG,XDATA) or NULL to port specifier
3408         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3409         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3410           (_mcs51_genInitStartup): removed __start__xstack equ,
3411           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3412         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3413         * src/z80/gen.c (_rleAppend): fixed warnings
3414         * support/regression/tests/zeropad.c: added pdata test
3415         * .version: bumped to 2.4.6
3416
3417 2004-10-17 Borut Razem <borut.razem AT siol.net>
3418
3419         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3420         as a part of nightly build
3421
3422 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3423
3424         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3425         WREG holds the first byte function parameters,
3426         * (aopForSym): take special case for symbols which are in FARSPACE
3427         but in CODESPACE too,
3428         * (assignResultValue): modified to take into account _G.useWreg,
3429         * (genCall): don't use wreg for parameter passing when function is
3430         declared as reentrant, too, added optimization INCF to stack
3431         pointer when stack parameter count is 1,
3432         * (genFunction, genEndFunction): refurnished and fixed to not using
3433         wreg for passing parameters when function has varargs or is
3434         reentrant, fixed bug with symbol name compare for generating
3435         functions in absolute address,
3436         * (pic16_storeForReturn): refurnished,
3437         * (genCmp): began writing a new version of the function, not ready
3438         yet, therefore it is disabled,
3439         * (genAssign): do not read code memory when assigning a function to
3440         a pointer function,
3441         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3442         array of characters, not pointer,
3443         * (pic16initialComments): in debug mode emit an .ident directive for
3444         the assembler,
3445         * (_process_pragma): emit a new warning type (internal to pic16)
3446         when setting stack to default length, emit a similar warning when
3447         placing a function at absolute address and address is not word aligned
3448         * (_pic16_parseOptions): added 'return TRUE' statement,
3449         * (_pic16_linkEdit): if compiling a source, then add the source's
3450         file object, first in the list of objects to link,
3451
3452 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3453
3454         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3455         * src/pic/main.c : removed VC warning.
3456         * src/pic/gen.c : changed comment.
3457
3458 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3459
3460         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3461         reference to a deprecated symbol _GPTRREG was causing failure to
3462         link. Thanks G. M. Gallant for the info.
3463
3464 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3465
3466         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3467         comments for Bugs item #954788.
3468
3469 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3470
3471         * src/pic16/device.c (pic16_dump_gsection,
3472         * pic16_groupRegistersInSection): handle symbols declared to be in
3473         access bank differently,
3474         * src/pic16/gen.c (struct _G): added field resDirect,
3475         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3476         send values read from stack directly to result and don't allocate
3477         temporary values,
3478         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3479         same registers,
3480         * (pic16_sameRegsOfs): NEW,
3481         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3482         free because they were not allocated from temporary pool,
3483         * pic16_popRegFromString): workaround to fix a problem with
3484         allocating variables twice or never,
3485         * (genGenPointerGet): using PRODL instead of FSR0H,
3486         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3487         instead of FSR0H,
3488         * (genAssign): take advantage of the _G.resDirect flag,
3489         * (genCast): around line 11844, use mov2f instead of directly
3490         MOVFF'ing between operands to account for literal values,
3491         * src/pic16/genutils.c: some new debug functions for gpsim have been
3492         added,
3493         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3494         float with integer part only,
3495         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3496         place variables in access bank
3497         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3498         updated sources to reflect recent changes in gen.c
3499
3500 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3501
3502         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3503         sources that searched for headers in installation path, now the
3504         device/include/pic16 is used,
3505         * src/pic16/glue.c (pic16glue),
3506         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3507         .line directives if not in debug mode, this suppresses assembler's
3508         warnings for ignored directives
3509
3510 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3511
3512         * src/port.h: made reset_regparms prototype void parameter explicit.
3513         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3514         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3515         * doc/sdccman.lyx: documented warning disabling and how to use
3516           printf_large to make it print floats.
3517         * device/include/stdbool.h: NEW
3518         * device/lib/_atof.c,
3519         * device/lib/_divuint.c,
3520         * device/lib/_divulong.c,
3521         * device/lib/expf.c,
3522         * device/lib/printf_large.c,
3523         * device/lib/sincosf.c,
3524         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3525         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3526           a completely reentrant lib.
3527
3528 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3529
3530         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3531         * device/include/pic16/stdio.h: fixed bug with colon
3532
3533 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3534
3535         * device/include/pic16/stdio.h,
3536         * device/include/pic16/stdlib.h,
3537         * device/include/pic16/math.h: NEW
3538         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3539         declared as _naked to reduce overhead
3540         * device/lib/Makefile.in (target port-specific-objects-pic16):
3541         changed * to *.* so to ignore the CVS directory,
3542         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3543         stacked variables back in stack,
3544         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3545         corruption
3546
3547 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3548
3549         * .version: bumped version number to 2.4.5
3550         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3551         * support/Util/SDCCerr.c (messages structure): added entry for
3552         W_POSSBUG2
3553
3554         Large cumulative patch for pic16 port and libraries.
3555         * device/include/pic16/sdcc-lib.h,
3556         * device/include/pic16/stdarg.h,
3557         * device/include/asm/pic16/features.h,
3558         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3559         * device/include/pic16/float.h: changes reentrant keyword with
3560         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3561         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3562         updated target build-libraries to include objects from gptr,
3563         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3564         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3565         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3566         all function headings,
3567         * src/SDCCmain.c: added global parameter userIncDirsSet,
3568         * (parseCmdLine): when option -I is encountered add directory to
3569         userIncDirsSet too,
3570         * src/version.awk: added space between control and long,
3571         * src/pic16/NOTES: added some notes for the port,
3572         * src/pic16/gen.c: added prototype for mov2fp function,
3573         * (fReturnpic16[]): properly named return value registers,
3574         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3575         * (aopForSym): added code to handle symbols with onStack flag set,
3576         symbols onStack are allocated PTRSIZE bytes,
3577         * (aopFreeAsmop): handles special case where asmops are stack objects,
3578         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3579         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3580         added argument lock to trace flaws in allocating temporary registers
3581         when developing port,
3582         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3583         * (pic16_popRegFromString): reenabled allocating a direct register
3584         from string,
3585         * (assignResultValue): various beautifications,
3586         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3587         referenced function argument,
3588         * (genIpush): reenabled to allow stacked arguments, handles only
3589         ic->parmPush iCodes,
3590         * (genCall, genPcall): major changes to allow for variable argument
3591         functions, fixed a bug with falsely restoring stack pointer after
3592         returning from call,
3593         * (genFunction): pending code for critical function,
3594         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3595         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3596         * (genNearPointerGet): fixed bug with indirect reading, was always
3597         reading from INDF0
3598         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3599         pointers,
3600         * (genAddrOf): rewrote code to take address of a stacked function parameter
3601         * (genCast): fixed casting to generic pointer type,
3602         * src/pic16/gen.h: added AOP_STA,
3603         * (struct asmop): added field stk,
3604         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3605         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3606         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3607         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3608         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3609         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3610         generic pointers,
3611         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3612         and library paths,
3613         * (pic16_port structure): generic pointer size is set to 3,
3614         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3615         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3616         compiler warning,
3617         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3618         operand is an iTemp,
3619
3620 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3621
3622         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3623         * debugger/mcs51/simi.c: addapt new syntax of s51
3624
3625 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3626
3627         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3628         * src/pic16/pcode.c: commented out some calls to free() in order to
3629         fix bug #989576,
3630
3631 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/SDCCicode.h,
3634         * src/SDCCicode.c (isiCodeInFunctionCall),
3635         * src/avr/ralloc.c (selectSpil),
3636         * src/pic/ralloc.c (selectSpil),
3637         * src/pic16/ralloc.c (selectSpil),
3638         * src/ds390/ralloc.c (selectSpil),
3639         * src/hc08/ralloc.c (selectSpil),
3640         * src/xa51/ralloc.c (selectSpil),
3641         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3642         stack in the middle of a function call sequence (fixes bug #1020268)
3643         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3644         costs associated with the minimum switch case.
3645
3646 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3647
3648         * src/SDCC.lex: fixed bug #1030549
3649
3650 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3651
3652         * src/SDCCcse.h (struct cseDef),
3653         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3654         over a function call if the CSE is derived from a symbol whose
3655         address has been taken (fixes bug #1029883)
3656         * support/regression/tests/bug-1029883: a new regression test for
3657         this bug
3658
3659 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3660
3661         * src/hc08/gen.c (emitinline): fixed bug #1029778
3662         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3663         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3664         and starts toward RFE #905167)
3665
3666 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3667
3668         * src/pic16/gen.c (mov2f): New function to move an operand to
3669         another without considering if it is a literal or a register,
3670         * (pic16_sameRegs): don't check if they are both AOP_REG,
3671         * (AccRsh): removed andmask=0 lines,
3672         * (genLeftShift): duplicated to be improved in future versions,
3673         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3674         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3675         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3676         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3677         * (insertBankSwitch): fixed inserting banksel directives algorithm
3678         for instructions that follow a skip instruction, this fixes a report
3679         for broken subtraction code generation,
3680         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3681         iCode is a left op, just in case result and right share the same
3682         registers
3683
3684 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * src/hc08/main.c,
3687         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3688         preservation of HX
3689         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3690         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3691         on 2004-09-12; it was buggy
3692
3693 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3694
3695         * src/SDCCsymt.h: removed RESULT_CHECK
3696         * src/SDCCast.c,
3697         * src/SDCCglue.c,
3698         * src/SDCCval.c,
3699         * src/pic/glue.c,
3700         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3701
3702 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3703
3704         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3705         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3706         configuration values no more rejected by compiler, they are assigned
3707         to configuration registers with a warning message instead,
3708         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3709         the for-loop so last conf register is emitted too,
3710         * (_pic16_initPaths): link library libsdcc.lib by default,
3711         * (_hasNativeMulFor): modified test for multiplication according to
3712         Raphael Neider's remarks. Integer multiplication is also done with
3713         support functions,
3714         * device/include/pic16/pic18fregs.h: corrected type error in while
3715         testing and including 18f6720 header file
3716
3717 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3718
3719         * src/pic16/device.h (pic16_options): removed field use_crt,
3720         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3721         until an optimization to handle single bits is added,
3722         * (pic16_loadFSR0): moved before genUnpackBits,
3723         * (genAnd): some white lines removed,
3724         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3725         leave_reset flags in pic16_options when using crt modules,
3726
3727 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3728
3729         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3730           for bugs 898889 & 979599. Also used some safer print instructions.
3731
3732 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3733
3734         * src/pic16/device.h (pic16_options_t): added field use_crt,
3735         crt_name, no_crt,
3736         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3737         catch a probable future bug,
3738         * src/pic16/gen.c: aopIdx function commented out,
3739         * (genAssign): commented out old code which used aopIdx,
3740         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3741         code, added if conditionals to take into account the --use-crt
3742         command line options,
3743         * src/pic16/main.c (pic16_optionsTable): added new command line
3744         options, --use-crt= and --no-crt,
3745         * (_pic16_linkEdit): now the proper crt object is added in the
3746         linker command line except than when --no-crt is specified,
3747         * src/pic16/pcode.c,
3748         * src/pic16/pcode.h: added some structures and functions for a new
3749         optimization scheme to compansate for instruction overhead between
3750         same iCodes, this scheme is currently under development and is not
3751         working in any way,
3752         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3753         to && operator,
3754         * device/lib/pic16/startup/crt0i.c,
3755         * device/lib/pic16/startup/crt0iz.c: added global char variable
3756         __uflags to force the generation of an idata section
3757
3758 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3759
3760         * doc/Makefile,
3761         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3762         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3763
3764 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3765
3766         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3767         Frieder) and clarified the default code optimization mode
3768
3769 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3770
3771         * src/SDCC.lex (doPragma, process_pragma),
3772         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3773         "opt_code_size", and "opt_code_balanced"
3774         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3775         regrouped options by category, added support for category headers
3776         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3777         and "--opt-code-size"
3778         * doc/sdccman.lyx: documented these new options and pragmas
3779         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3780         preference into account
3781
3782 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3783
3784         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3785           geniCodePreDec): Fixed bug 904237 by generating a warning
3786         * src/SDCCerr.h,
3787         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3788
3789 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3790
3791         * src/pic/device.c : When no max ram set validate full memory range.
3792         * src/pic/pcode.c,
3793         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3794
3795 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3796
3797         * device/lib/_gptrget.c,
3798         * device/lib/_gptrput.c: updated comment
3799         * device/lib/calloc.c,
3800         * device/lib/free.c,
3801         * device/lib/malloc.c,
3802         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3803         * src/SDCCcse.c (cseBBlock),
3804         * src/SDCCicode.c (printOperand, geniCodeArray),
3805         * src/SDCCicode.h (struct operand): fixed bug 868103
3806         * support/regression/tests/bug-868103.c: added
3807         * src/SDCCast.c (searchLitOp),
3808         * src/SDCCcse.h (struct cseDef),
3809         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3810         * src/SDCCicode.h (struct operand),
3811         * src/SDCCsymt.h (struct sym_link),
3812         * src/avr/gen.c (hasInc),
3813         * src/ds390/gen.c (hasInc),
3814         * src/hc08/gen.c (genPlusIncr, hasInc),
3815         * src/mcs51/gen.c (hasInc),
3816         * src/pic16/glue.c (pic16_printIvalChar),
3817         * src/pic16/ralloc.c (regWithIdx),
3818         * src/xa51/gen.c (hasInc) : removed warnings
3819         * src/SDCCast.c (createBlock): added comment ???
3820         * src/hc08/ralloc.c: updated comments
3821
3822 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3823
3824         * doc/sdccman.lyx: updated section on switch statements, added
3825         section about semaphore locking
3826         * doc/Makefile: added option -info for latex2html
3827         * device/lib/_gptrget.c,
3828         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3829
3830 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3831
3832         * src/pic/device.h,
3833         * src/pic/device.c,
3834         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3835          maxram is less than 0x100.
3836
3837 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3838
3839         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3840
3841 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/port.h,
3844         * src/mcs51/main.c,
3845         * src/ds390/main.c,
3846         * src/z80/main.c,
3847         * src/hc08/main.c,
3848         * src/pic/main.c,
3849         * src/pic16/main.c,
3850         * src/avr/main.c,
3851         * src/xa51/main.c
3852         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3853         a jump table is the best form for a switch statement, including
3854         automatic insertion of missing cases to make the case range
3855         continuous. Developed in collaboration with Frieder Ferlemann.
3856
3857 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3858
3859         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3860         accumulator result if it needs sign extension
3861
3862 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3863
3864         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3865
3866 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3867
3868         * device/lib/gbz80/printf.c,
3869         * device/lib/z80/printf.c: removed define for NULL
3870
3871 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3872
3873         * as/xa51/xa_link.c,
3874         * device/examples/ds390/ow390/ad26.c,
3875         * device/examples/ds390/ow390/cnt1d.c,
3876         * device/examples/ds390/ow390/counter.c,
3877         * device/examples/ds390/ow390/ds2480.h,
3878         * device/examples/ds390/ow390/ds2480ut.c,
3879         * device/examples/ds390/ow390/findtype.c,
3880         * device/examples/ds390/ow390/gethumd.c,
3881         * device/examples/ds390/ow390/owllu.c,
3882         * device/examples/ds390/ow390/ownetu.c,
3883         * device/examples/ds390/ow390/swt12.c,
3884         * device/examples/ds390/ow390/swtloop.c,
3885         * device/examples/ds390/ow390/temp.c,
3886         * device/examples/ds390/ow390/temp10.c,
3887         * device/examples/ds390/ow390/thermo21.c,
3888         * device/examples/ds390/ow390/tinilnk.c,
3889         * device/examples/ds390/ow390/tstfind.c,
3890         * device/examples/serialcomm/windows/serial.cpp,
3891         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3892         * device/include/reg51.h: fixed line endings for cvs
3893
3894 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3895
3896         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3897         packRegsForAccUse, packRegisters): new accumulator register
3898         packing algorithm
3899         * support/regression/ports/hc08/support.c (_putchar): suppress
3900         warning of unused variable
3901         * src/SDCCicode.c: added SWAP entry to codeTable
3902
3903 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3904
3905         * device/lib/sprintf.c: forgot to add this file before previous commit
3906
3907 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3908
3909         * src/pic16/gen.c (genPackBits): added operand right in function
3910         parameters, load result directly if p_type is POINTER (that is
3911         called by genNearPointerSet)
3912         * (genUnPackBits): added operand left in function parameters,
3913         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3914         FSR0 if accessing bitfields,
3915
3916 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3917
3918         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3919           _print_format; updated printf, sprintf, vsprintf
3920         * device/include/asm/default/features.h: corrected comment/define
3921         * device/lib/Makefile.in: added sprintf.c
3922         * device/lib/libsdcc.lib: added sprintf module
3923         * device/lib/printf_large.c,
3924         * device/lib/vprintf.c,
3925         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3926           into these 3 files
3927         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3928         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3929         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3930           hc08 test
3931         * support/regression/tests/zeropad.c: define idata as data for hc08
3932
3933 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3936         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3937         labels are referenced at least once (even if a reference is not found)
3938         * src/hc08/gen.c (emitcode): set isComment flag for comments
3939         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3940         loads), rules 6a..6b (optimize jumps to return)
3941
3942 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3943
3944         * device/lib/acosf.c (acosf),
3945         * device/lib/asinf.c (asinf),
3946         * device/lib/atanf.c (atanf),
3947         * device/lib/ceilf.c (ceilf),
3948         * device/lib/cosf.c (cosf),
3949         * device/lib/coshf.c (coshf),
3950         * device/lib/cotf.c (cotf),
3951         * device/lib/fabsf.c (fabsf),
3952         * device/lib/floorf.c (floorf),
3953         * device/lib/log10f.c (log10f),
3954         * device/lib/logf.c (logf),
3955         * device/lib/sinf.c (sinf),
3956         * device/lib/sinhf.c (sinhf),
3957         * device/lib/sqrtf.c (sqrtf),
3958         * device/lib/tanf.c (tanf),
3959         * device/lib/tanhf.c (tanhf),
3960         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3961         replaced all instances of "reentrant" in the library functions
3962         defined in math.h with this macro.
3963         * support/regression/tests/float_trans.c: reenabled test for hc08
3964
3965 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3966
3967         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3968         erroneously deleted
3969
3970 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3973         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3974         multi-byte volatile operands are used
3975         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3976         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3977         initialization to area GSINIT0 so that it would always precede
3978         any static initializers in GSINIT
3979         * support/regression/tests/zeropad.c: fixed idata define for hc08
3980         * support/regression/tests/bug-927659.c,
3981         * support/regression/tests/float_trans.c: disabled tests for hc08
3982         pending missing library routines
3983         * .version: increased version number to 2.4.4 - hc08 port now passes
3984         regression tests
3985
3986
3987 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3988
3989         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3990         * Makefile.common.in,
3991         * as/Makefile,
3992         * as/hc08/Makefile.in,
3993         * as/mcs51/Makefile.in,
3994         * as/z80/Makefile.in,
3995         * debugger/mcs51/Makefile.in,
3996         * device/include/Makefile.in,
3997         * device/lib/Makefile.in,
3998         * doc/Makefile,
3999         * link/Makefile,
4000         * link/z80/Makefile.in,
4001         * packihx/Makefile.in,
4002         * sim/ucsim/main_in.mk,
4003         * sim/ucsim/avr.src/Makefile.in,
4004         * sim/ucsim/doc/Makefile.in,
4005         * sim/ucsim/gui.src/serio.src/Makefile.in,
4006         * sim/ucsim/hc08.src/Makefile.in,
4007         * sim/ucsim/s51.src/Makefile.in,
4008         * sim/ucsim/xa.src/Makefile.in,
4009         * sim/ucsim/z80.src/Makefile.in,
4010         * src/Makefile.in,
4011         * support/cpp2/Makefile.in,
4012         * support/librarian/Makefile,
4013         * support/makebin/Makefile: added DESTDIR to the install path proposed
4014         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4015         * doc/sdccman.lyx: added DESTDIR documentation
4016
4017 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4018
4019         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4020         instruction for interrupt handlers, use fast returns when returning
4021         from high priority interrupts
4022
4023 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4024
4025         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4026         code generation
4027         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4028         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4029         bugs, ported much of Bernhard's code from mcs51
4030         * src/mcs51/gen.c (genSend),
4031         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4032         than one when calling a reentrant function
4033         * device/lib/_mullong.c: defined an alternate struct layout for big
4034         endian ports (hc08)
4035
4036 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4037
4038         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4039         test
4040
4041 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4042
4043         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4044         are sane and complete before asking the port its prefered parameter
4045         passing method (fixes bug #1017633)
4046         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4047         and _ret3
4048
4049 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4050
4051         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4052         problem in bitfields >= 8 bits.
4053
4054 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4055
4056         * src/SDCCsymt.c: undid changes that were not meant to be committed
4057
4058 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4059
4060         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4061
4062 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4063
4064         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4065           copied and wrong bit got inverted
4066
4067 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4068
4069         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4070         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4071         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4072         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4073         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4074         assignments to bitfields at known addresses
4075         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4076         reads from bitfields at known addresses
4077         * src/hc08/ralloc.c (packRegisters),
4078         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4079         genhc08Code): optimize pointer get values used as conditionals
4080         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4081         and branch
4082
4083 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4084
4085         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4086         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4087         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4088         as conditionals
4089
4090 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4091
4092         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4093
4094 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4095
4096         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4097         related problems
4098
4099 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4100
4101         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4102
4103 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4104
4105         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4106         mcs51 port
4107
4108 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4109
4110         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4111
4112 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4113
4114         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4115         cases use more compact code.
4116
4117 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4118
4119         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4120
4121 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4122
4123         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4124
4125 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4126
4127         * src/SDCCsymt.h,
4128         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4129         parameter of changePointer() from symbol* to sym_link*
4130         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4131         * src/SDCCsymt.c (compareType): void* type is castable to other
4132         pointers, but not necesarily an exact match.
4133         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4134         is no longer blindly treated as an exact match.
4135         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4136
4137 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4138
4139         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4140
4141 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4142
4143         * src/pic/gen.c,
4144         * src/pic/pcode.c,
4145         * src/pic/ralloc.h,
4146         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4147
4148 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4149
4150         * src/pic/device.c,
4151         * src/pic/device.h,
4152         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4153
4154 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4155
4156         * src/mcs51/gen.c (emitcode): fixed bug #992819
4157
4158 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4159
4160         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4161           there's no need to make it worse
4162
4163 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4164
4165         * src/mcs51/ralloc.c (deassignLR),
4166         * src/ds390/ralloc.c (deassignLR),
4167         * src/hc08/ralloc.c (deassignLR),
4168         * src/z80/ralloc.c (deassignLR),
4169         * src/pic/ralloc.c (deassignLR),
4170         * src/pic16/ralloc.c (deassignLR),
4171         * src/avr/ralloc.c (deassignLR),
4172         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4173         rlivePoint): fixed another part of bug #971834
4174
4175 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * src/z80/main.c: enabled "critical" keyword
4178         * src/z80/mappings.i,
4179         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4180         functions (fixes bug #979646)
4181         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4182
4183 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4184
4185         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4186           such as c:\mydir.
4187
4188 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4189
4190         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4191           doesn't disable too much optimizations
4192
4193 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4194
4195         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4196
4197 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4198
4199         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4200
4201 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4202
4203         * src/pic/gen.c tidied up tabs
4204         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4205         * src/pic/main.c tidied up tabs
4206         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4207         * src/pic/pcoderegs.c tidied up tabs
4208         * src/pic/ralloc.c tidied up tabs
4209
4210 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4211
4212         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4213         to S_FIXED for pic16 port and when symbol is not in level 0,
4214         allocate for S_REGISTER storage class and pic16 port, too,
4215         * src/pic16/device.h: prototype for checkSym,
4216         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4217         * (pic16_assignConfigWordValue): test the value and the mask to
4218         validate that the value is suitable for the configuration word,
4219         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4220         collect extern declared symbols, don't emit symbol twice, check
4221         first if symbol is in publics set first,
4222         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4223         * added command line '--fstack' which enables an experimental
4224         feature for stack access, too buggy to be used yet...
4225         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4226         * (pic16_allocDirReg): when register has storage class S_REGISTER
4227         allocate in pic16_dynAccessRegs,
4228         * device/include/pic16/pic18f????.h: modified configuration word
4229         naming convention, words started as CONFIG0H but should be CONFIG1H
4230
4231 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4232
4233         * device/include/mcs51reg.h: fixed bug 970993
4234
4235 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4236
4237         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4238         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4239         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4240         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4241         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4242         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4243           error/warning numbers,
4244           added function setWarningDisabled()
4245         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4246         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4247           _memcmp.c _memmove.c calloc.c realloc.c free.c
4248         * support/regression/tests/malloc.c: added tests for new functionality
4249         * support/regression/tests/zeropad.c: added tests for truncated initializers
4250           and initialized char arrays starting with '\x0'
4251         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4252
4253 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4254
4255         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4256
4257 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4258
4259         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4260         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4261         peephole 177.e. Thanks to anonymous
4262
4263 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4264
4265         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4266         function isn't used in the source but referenced as a
4267         variable initializer then declare it as extern in .asm file
4268
4269 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4270
4271         * .version: increased version number to 2.4.3
4272
4273         Adding version extension according to ChangeLog CVS revision
4274         * src/Makefile.in (target all): added dependency 'version.h'
4275         * (rule version.h): added rule to create version.h from ChangeLog,
4276         * (rule dep): added dependency version.h,
4277         * src/version.awk: AWK script to create version.h
4278         * src/SDCCdwarf2.c (dwWriteModule),
4279         * src/SDCCglue.c (initialComments),
4280         * src/SDCCmain.c (printVersionInfo): modified to write after
4281         version string the version extension number,
4282         * src/SDCCutil.c: included "version.h"
4283         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4284         number,
4285         * src/SDCCutil.h: added prototype for getBuildNumber
4286
4287         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4288         includeDirsSet, too,
4289         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4290         const char [] is found in function prototype...
4291
4292         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4293         moving to WREG with source is already in WREG,
4294         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4295         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4296         * (aopForSym): stack'ed symbols are partially supported, added
4297         if-clause to support symbols in FARSPACE,
4298         * (sameRegs): added test for AOP_ACC to see if registers are same,
4299         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4300         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4301         * (pic16_popRegFromString): will not allocate a new register if it
4302         doesn't find one by name, bug may have introduced...
4303         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4304         * (genIpush): revived to use pic16 port's stack,
4305         * (genAddrOf): added incomplete case for stack'ed operand,
4306         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4307         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4308         can handle multibyte operands,
4309         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4310         * (pic16initialComments): added message for MPLAB compatibility
4311         mode enabled,
4312         * src/pic16/main.h: prototype for pic16_mplab_comp,
4313         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4314         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4315         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4316         because of increased complexity of procedure,
4317         * (_process_pragma): stack pragma changed to format 'stack pos len',
4318         emit symbol '_stack_end' to conform with gplink,
4319         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4320         to search for register,
4321         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4322         PO_GPR_REGISTER,
4323         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4324         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4325         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4326         case for PO_GPR_REGISTER,
4327         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4328         dies, the new era is ahead !...
4329         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4330         pic16_dynInternalRegs,
4331         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4332         * (pic16_allocDirReg): minor optimizations and bug fixes,
4333         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4334
4335         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4336         load stack and frame pointer with address of 'stack_end' symbol
4337
4338 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4339
4340         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4341         without source code but only variable initializers
4342
4343 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4344
4345         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4346         external are not declared as extern to reduce overhead while linking
4347
4348 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4349
4350         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4351
4352 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4353
4354         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4355           Yee Keat for the patch
4356         * src/SDCCast.c (decorateType): fixed bug #979599
4357         * src/ds390/gen.h: removed local fReturnSizeDS390
4358         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4359         * src/ds390/gen.c (genAnd, genOr, genXor),
4360         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4361
4362 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4363
4364         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4365         add relFilesSet to $3, manipulate $2 to handle linking of object
4366         files without source files in command line,
4367         * device/include/pic16 (all headers): added ID location macros,
4368         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4369         entries for ID location bytes,
4370         * (pic16_assignIdByteValue): NEW,
4371         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4372         added field dumpcalltree to pic16_options_t,
4373         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4374         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4375         emitting rFalseIfx label after check_carry label,
4376         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4377         pic16_emitDIRegs), NEW
4378         * (pic16glue): dump .calltree file when option --calltree found,
4379         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4380         * (_pic16_genAssemblerPreamble): emit ID locations after
4381         configuration registers,
4382         * (pic16_linkCmd): modifications of the link command,
4383         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4384         * (pic16_pCodeInitRegisters): don't init stack registers,
4385         * (pic16_findPrevInstruction): fixed bug,
4386         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4387         bug with immediate registers,
4388         * (buildCallTree): traces stack push and pop,
4389         * (pct2): dump also stack usage for each function,
4390         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4391         * (pic16_allocDirReg): various modifications,
4392         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4393         fixed to 1,
4394
4395 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4396
4397         * src/pic16/pcode.c: removed buggy double colon
4398
4399 2004-07-01 Borut Razem <borut.razem AT siol.net>
4400
4401         * support/scripts/sdcc.nsi: added include/pic16 to setup
4402
4403 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4404
4405         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4406         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4407         target 'clean',
4408         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4409         specific command line arguments. Also added sample lkr script
4410         for placing a variable at a specific memory bank.
4411         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4412         at a specific memory bank,
4413         * (pic16_dump_isection): fixed bug which caused string literals to
4414         be omitted when dumping idata section,
4415         * (pic16_groupRegistersInSection): added code to handle registers
4416         in specific memory banks,
4417         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4418         public, all references are renamed too,
4419         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4420         AOP_DPTR2,
4421         * (pic16_storeForReturn): added case to handle when dest is WREG,
4422         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4423         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4424         pic16_rel_udata, check to see if that register is marked as being
4425         a member of a specific memory bank,
4426         * (pic16_printIvalCharPtr): added code to add string literals either
4427         to code or the idata sections,
4428         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4429         also accept the 'udata' pragma,
4430         * src/pic16/main.h: new structure types sectName and sectSym
4431         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4432         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4433         * (pic16_findPrevInstruction): fixed, it returned nothing,
4434         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4435         instruction combinations,
4436         * (pic16_FixRegisterBanking): heavily reorganised,
4437         * (pic16_AnalyzeBanking): if generating banksel directives is
4438         disabled, then don't call FixRegisterBanking at all,
4439         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4440         completely removed,
4441         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4442
4443 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4444
4445         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4446         Phuah Yee Keat <yk.phuah AT nestac.com>
4447
4448 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4449
4450         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4451         correctly the IVT even if it is relocated to some other location
4452
4453 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4454
4455         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4456         * device/include/pic16/pic18f2220.h: NEW,
4457         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4458         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4459         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4460         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4461         nodefaultlibs, ivt_loc is the location of the interrupt vector
4462         table, and nodefaultlibs signs that default libraries should not be
4463         linked in link stage,
4464         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4465         according to --ivt-loc argument,
4466         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4467         when pragma stack is found,
4468
4469 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4470
4471         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4472         256 (range check), 257 (do while), 258.a-f (bit banging
4473         f.e. on 3-wire SPI bus)
4474
4475 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4476
4477         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4478         variables used exclusively within a loop
4479
4480 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4481
4482         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4483
4484 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4485
4486         * src/SDCClrange.c (computeClash): fixed bug #971834
4487
4488 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4489
4490         * src/mcs51/gen.c (genCmp): fixed bug #975903
4491         * src/hc08/gen.c (operandsEqu),
4492         * src/ds390/gen.c (operandsEqu),
4493         * src/z80/gen.c (operandsEqu),
4494         * src/pic/gen.c (operandsEqu),
4495         * src/pic16/gen.c (operandsEqu),
4496         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4497         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4498
4499 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4500
4501         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4502
4503 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4504
4505         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4506         default case in switch statement,
4507         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4508         to eliminate problem with initialisation of pointers, but problem
4509         still exists,
4510         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4511         * (emitStaticSegment): removed various lines emitting debug info,
4512         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4513         added processor registers for utilizing EEPROM,
4514         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4515         configurable and set 8
4516
4517 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4518
4519         * .version: increased version number to 2.4.2,
4520
4521         Cumulative patch for pic16 port
4522         * src/pic16/device.c: changed scheme to dump initial values for
4523         variables in idata segment, all print_idata* functions were removed,
4524         now the pic16_printIval* will be called,
4525         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4526         * _pic16_printPointerType, pic16_printPointerType,
4527         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4528         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4529         NEW, similar to the respective functions in SDCCglue.c,
4530         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4531         way, emitting hex bytes,
4532         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4533
4534 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4535
4536         * src/avr/ralloc.c (serialRegAssign),
4537         * src/xa51/ralloc.c (serialRegAssign),
4538         * src/pic/ralloc.c (serialRegAssign),
4539         * src/pic16/ralloc.c (serialRegAssign),
4540         * src/hc08/ralloc.c (serialRegAssign),
4541         * src/z80/ralloc.c (serialRegAssign),
4542         * src/ds390/ralloc.c (serialRegAssign),
4543         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4544
4545 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4546
4547         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4548         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4549
4550 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4551
4552         Cumulative patch for pic16 port:
4553         * src/pic16/device.h (typedef PIC16_device) modified fields for
4554         defining microcontrollers,
4555         * src/pic16/device.c: added new info for all devices in Pics16 array,
4556         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4557         to be optimised out by the pCode optimiser,
4558         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4559         specially, bug reported by G.M. Gallant,
4560         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4561         as force'd so that cannot be optimised out by pCode optimiser,
4562         * src/pic16/pcode.c,
4563         * src/pic16/pcodepeeph.c,
4564         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4565         they are disabled by default, but can be enabled explicit with
4566         command argument --denable-peeps, for testing,
4567         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4568         --pomit-ivt in COMPILE_FLAGS
4569
4570 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4571
4572         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4573           compilation on MSVC
4574
4575 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4576
4577         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4578
4579 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4580
4581         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4582         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4583
4584 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4585
4586         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4587         would only assign 0x300001 register.
4588
4589 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4590
4591         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4592         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4593
4594 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4595
4596         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4597         for ds80c400
4598         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4599         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4600         added peephole 254 (left shift), 255 (jump table)
4601
4602 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4603
4604         * device/lib/Makefile.in: removed comment line with model-pic16,
4605         * (target port-specific-objects-pic16): the libraries and objects
4606         are copied to the build directory form the device/lib/pic16/bin
4607         directory
4608
4609         Cumulative patch concerning pic16 port:
4610         * library directory has been re-organized,
4611         * added support for PIC18F1220,
4612         * added headers and library sources for chips 18f1220,18f6520,
4613         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4614
4615         * configuration registers setting has changed, now each supported
4616         device has a complete description of the registers it uses,
4617         * all initialisations are moved to idata sections, these section
4618         can be absolute or relocatable,
4619         * fixed initialisation of codespace variables,
4620         * fixed warning about PCLATU and gpsim,
4621         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4622         * (genAssign): use table reads when assigning from variables in codespace,
4623         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4624         char/int variables placed in codespace,
4625         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4626         registers set in .asm file, no need for --pomit-config-words anymore,
4627         * (pic16glue): some 8051 legacy segments are commented out
4628         (to be removed completely),
4629         * added support for alternative assembler and linker with --asm=
4630         and --link= command line arguments,
4631         * peepholes are disabled automatically in the port, no need to
4632         specify on command line,
4633         * port supports natively char/int/long multiplication, but converts
4634         all divisions to support functions,
4635         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4636         to the file set in variable $2,
4637         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4638         strings in ASCII format and not in hex,
4639         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4640         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4641         allocate proper register if iCodes aren't temporary,
4642
4643 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4644
4645         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4646
4647 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4648
4649         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4650         is commented out
4651
4652 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4653
4654         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4655         computed address is reused
4656         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4657         multi-byte bitfields
4658
4659 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4660
4661         * src/z80/gen.c: (genArrayInit): must check for pointers too
4662
4663 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4664
4665         * support/regression/tests/zeropad.c: never meant to commit the
4666           nestedstruct test: removed, added check for GCC version
4667
4668 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4669
4670         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4671         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4672         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4673           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4674           bugs 928906 and 954082 half-empty initializers
4675         * src/SDCCsymt.h,
4676         * src/SDCCsymt.c (getAllocSize): added for above fix
4677         * src/z80/gen.c (genArrayInit): fixed bug 741044
4678         * support/regression/tests/zeropad.c: added tests
4679
4680 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4681
4682         * src/pic16/device.c (pic16_dump_section): corrected bug which
4683         caused some symbols of the libraries to be misplaced
4684
4685 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4686
4687         * src/pic16/glue.c,
4688         * src/pic16/ralloc.h,
4689         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4690         to fix conflict with pic port
4691
4692 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4693
4694         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4695         externs configuration variables,
4696         * src/pic16/ralloc.h,
4697         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4698         prototype in header, commented out some debug messages
4699
4700 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4701
4702         * src/pic16/glue.c,
4703         * src/pic16/main.c,
4704         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4705         for gpasm COFF object generation. Thanks to D. Hawkins for
4706         his patch info
4707
4708 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4709
4710         * src/ds390/main.c,
4711         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4712         Brock for spotting this)
4713         * src/ds390/gen.c (genEndFunction),
4714         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4715         interrupt handler and critical. Disable push/pop optimizations when
4716         peephole optimizations disabled.
4717
4718 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4719
4720         Updated pic16 library sources and headers.
4721         * device/lib/pic16/pic18f*/ ,
4722         * device/include/pic16/*.h: modified to handle structured SFR
4723         definitions
4724
4725 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4726
4727         * src/port.h (PORT structure): added hook initPaths, now each
4728         port can declare its own default search paths,
4729         which can been seen with the --print-search-dirs option,
4730         see pic16 port for example,
4731         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4732         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4733         * (doPrintSearchDirs): NEW, replaces in a central manner the
4734         printing of search dirs which was split in set*Paths functions,
4735         * (main): added call to port->initPaths and doPrintSearchDirs,
4736         * src/avr/main.c,
4737         * src/ds390/main.c,
4738         * src/hc08/main.c,
4739         * src/izt/i186.c,
4740         * src/izt/tlcs900h.c,
4741         * src/mcs51/main.c,
4742         * src/pic/main.c,
4743         * src/pic16/main.c: modified port structures to reflect addition of
4744         initPaths hook,
4745
4746         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4747         * (pic16_dump_section): for registers in same address reserve memory once,
4748         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4749         to no_banksel,
4750         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4751         result is greater in size than right or left,
4752         * (pic16_genUMult8X8_8): there are some cases where the result can
4753         be 16 bits size, so handle these,
4754         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4755         * (pic16_outBitC): modified to emit pcodes,
4756         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4757         or not,
4758         * (genDivOneByte): implemented algorithm to divide 8-bits,
4759         * (genCmp): uncommented goto, but issues still exist,
4760         * (genAnd): fixed a bug with variables >8bits,
4761         * (genPackBits): optimization added that uses BCF/BSF to change a
4762         single bit,
4763         * (genAssign): fixed bug when assigning floating point literals,
4764         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4765         __sdcc_gsinit_startup label,
4766         * src/pic16/main.c (_pic16_init): removed search directory
4767         initialisations,
4768         * (_pic16_initPaths): NEW, used to initialise search directories,
4769         * (_hasNativeMulFor): support functions for all except char/int
4770         multiplication, and char division,
4771         * (PIC16_port struct): modified entry for native mul support,
4772         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4773         no_banksel option,
4774         * (buildCallTree): call to register_usage is ifdef'ed out,
4775
4776 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4777
4778         * device/include/string.h: applied Stas Sergeev's patch to make this
4779         header file compatible with the preprocessor -Wundef option
4780         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4781         failure (fixes bug #941458)
4782
4783 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4784
4785         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4786         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4787         that the variable, not the function, should be static
4788         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4789         to be consistent with non-literal case
4790
4791 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4792
4793         * src/SDCCast.c (isConformingBody): fixed bug #949967
4794         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4795         convilong): fixed bug #952086
4796
4797 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/SDCCmem.c (allocVariables): fixed bug #955321
4800
4801 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4802
4803         * src/hc08/main.c (_hc08_genAssemblerEnd),
4804         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4805         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4806         completely eliminated the use of a temporary file
4807         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4808         when more than one file linked
4809         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4810
4811 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4812
4813         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4814         which fixes bug #543481
4815         * support/regression/tests/bug-751703.c: fixed comments left from a
4816         cut and paste error
4817         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4818         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4819         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4820         scopes
4821         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4822         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4823         are now changed to underscores in moduleName
4824
4825 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4826
4827         * as/mcs51/lkmem.c: better fix for bug #954173
4828
4829 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4830         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4831
4832         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4833         * device/include/c8051f000.h,
4834         * device/include/c8051f120.h,
4835         * device/include/c8051f300.h,
4836         * device/include/c8051f310.h,
4837         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4838         PWM16) and detab'ed
4839
4840 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4841
4842         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4843         and mailing lists, doc'ed --no-peep-comments, removed reference
4844         to knoppix (newest version has no LyX/LaTeX), other minor changes
4845         * src/SDCCglue.c (glue): save 2 bytes stack space with
4846         option --main-return. The ljmp could probably be avoided too
4847
4848 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4849
4850         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4851
4852 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4853
4854         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4855         * src/SDCCopt.c (isLocalWithoutDef),
4856         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4857         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4858         (credit to Maarten Brock for patch #949363, on which this is based)
4859         * support/regression/tests/bug-751703.c: some test cases of extern used
4860         within inner scopes.
4861
4862 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4863
4864         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4865         SPEC_STRUCT
4866         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4867         struct definitions
4868         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4869         dwWriteLabel): fix to create valid debugger symbols even when
4870         the module name has non-alphanumeric symbols in it
4871         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4872         when a variable's allocation has been optimized away
4873
4874
4875 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4876
4877         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4878         * src/hc08/main.c,
4879         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4880         * src/mcs51/main.c,
4881         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4882         * src/ds390/main.c,
4883         * src/z80/gen.c (z80_emitDebuggerSymbol),
4884         * src/z80/main.c,
4885         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4886         * src/pic/main.c,
4887         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4888         * src/pic16/main.c,
4889         * src/avr/gen.c (avr_emitDebuggerSymbol),
4890         * src/avr/main.c,
4891         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4892         * src/xa51/main.c,
4893         * src/SDCCdebug.c (emitDebuggerSymbol),
4894         * src/SDCCdebug.h,
4895         * src/port.h: added a debugger struct to the port struct. Added a
4896         callback for defining debugger symbols
4897
4898         * src/SDCCast.c (createLabel),
4899         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4900         with isitmp = 1
4901         * src/SDCCicode.h,
4902         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4903         iCode back to the ast for the function
4904
4905         * src/hc08/ralloc.c (hc08_assignRegisters),
4906         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4907         unneeded fields from the regs struct.
4908         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4909         pushReg() & pullReg() functions instead of emitcode()
4910
4911         * src/hc08/gen.c (genLabel, genhc08Code),
4912         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4913
4914         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4915         debugger hooks
4916
4917         * src/hc08/gen.c (genEndFunction, genhc08Code),
4918         * src/hc08/gen.h,
4919         * src/mcs51/gen.c (genEndFunction, gen51Code),
4920         * src/mcs51/gen.h,
4921         * src/ds390/gen.c (genEndFunction, gen390Code),
4922         * src/ds390/gen.h,
4923         * src/z80/gen.c (genEndFunction, genZ80Code),
4924         * src/z80/gen.h,
4925         * src/z80/z80.h,
4926         * src/pic/gen.c (genEndFunction, genpic14Code),
4927         * src/pic/gen.h,
4928         * src/pic16/gen.c (genEndFunction, genpic16Code),
4929         * src/pic16/gen.h,
4930         * src/avr/gen.c (genEndFunction, genAVRCode),
4931         * src/avr/gen.h,
4932         * src/xa51/gen.c (genEndFunction, genXA51Code),
4933         * src/xa51/gen.h,
4934         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4935         specific code to cdbFile.c and out of the backend code generators
4936
4937         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4938         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4939         starting address is now 0
4940
4941         * as/hc08/asm.h,
4942         * as/hc08/m08pst.c,
4943         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4944         assembler directive for DWARF support
4945         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4946
4947         * src/src.dsp,
4948         * src/Makefile.in,
4949         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4950
4951 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4952
4953         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4954         and inappropriate peephole optimization in jump tables
4955
4956 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4957
4958         * as/hc08/m08pst.c,
4959         * src/SDCCglue.c: sdccopt works for the hc08 port now
4960
4961 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4962
4963         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4964
4965 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4966
4967         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4968
4969 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4970
4971         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4972         rules
4973         * src/SDCCmain.c,
4974         * src/SDCCglobl.h,
4975         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4976         comments from the peephole optimizer replacement rules
4977         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4978         symbols
4979         * src/SDCCcse.c (updateSpillLocation),
4980         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4981         equivalents
4982         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4983         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4984         objects far pointers
4985
4986 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4987
4988         * src/SDCCsymt.h: a missing part of my last change
4989         * src/pic/ralloc.c (regTypeNum),
4990         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4991
4992 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4993
4994         * src/SDCCicode.h,
4995         * src/SDCCicode.c (aggrToPtrDclType),
4996         * src/SDCCptropt.h,
4997         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4998         ptrPseudoSymConvert),
4999         * src/pic/ralloc.c (regTypeNum),
5000         * src/pic16/ralloc.c (regTypeNum),
5001         * src/hc08/ralloc.c (regTypeNum),
5002         * src/ds390/ralloc.c (regTypeNum),
5003         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5004         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5005
5006 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5007
5008         * link/z80/lkmain.c (afile),
5009         * as/hc08/lkmain.c (afile),
5010         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5011         prevent a pointer problem when a filename has no directory and
5012         no extension specified.
5013
5014 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5015
5016         * link/z80/lkmain.c (afile): allow periods in directory names
5017         * link/z80/lkmain.c (afile),
5018         * as/mcs51/lkmain.c (afile),
5019         * as/hc08/lkmain.c (afile): allow linker script file to have an
5020         extension other than ".lnk"
5021         * link/z80/lklex.c (getfid),
5022         * link/z80/lkmain.c (parse),
5023         * as/mcs51/lklex.c (getfid),
5024         * as/mcs51/lkmain.c (parse),
5025         * as/hc08/lklex.c (getfid),
5026         * as/hc08/lkmain.c (parse): Support comments in the linker script
5027         file on lines by themselves and after filenames
5028
5029 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5030
5031         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5032
5033 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5034
5035         * src/z80/peeph-z80.def: removed some peephole rules that don't
5036         work with multibyte arithmetic (fixed bug #937126)
5037         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5038         to registers and not global variables
5039         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5040         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5041         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5042         checking for assignments not internally generated (fixed bug #931895)
5043         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5044         structure member (fixed bug #930072)
5045
5046 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/SDCCmain.c (linkEdit),
5049         * src/hc08/main.c (_hc08_parseOptions),
5050         * as/hc08/Makefile.in,
5051         * as/hc08/aslink.h,
5052         * as/hc08/asm.h,
5053         * as/hc08/m08pst.c,
5054         * as/hc08/lkrloc.c (relr, rele),
5055         * as/hc08/lkarea.c (lnkarea)
5056         * as/hc08/lkmain.c (afile, parse),
5057         * as/hc08/lkelf.c: support for ELF output
5058         * as/hc08/lks19.c (s19),
5059         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5060
5061 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5062
5063         * as/mcs51/lkihx.c: Fixed bug #899105.
5064
5065 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5066
5067         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5068         .dsp files from Unix to DOS.
5069
5070 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5071
5072         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5073         function pointers; we have been compliant for several months now.
5074         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5075         change that was accidently commented out
5076         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5077         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5078         bug #922319
5079
5080 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5081
5082         * src/hc08/gen.c: output of all of the internal debugging information
5083         is now controlled by the D() macro; it is disabled by default
5084
5085 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5086
5087         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5088         harder to keep the same registers during a CAST iCode
5089         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5090         long via int can be done in a single cast, if the signedness is
5091         correct.
5092         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5093         putchar() in tinibios.c in ds390's library
5094
5095 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5096
5097         * src/SDCCast.c (decorateType): fixed bug #898889,
5098         cast result of a literal complement too
5099         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5100         fixed check for bitfields
5101
5102 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5103
5104         * src/SDCCicode.c (geniCodeLogic): made it static,
5105         (geniCodeLogicAndOr): added in order to fix bug #905492,
5106         (ast2iCode): fixed bug #905492
5107         * support/regression/tests/bug-905492.c: added
5108         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5109         (processParms): fixed bug #927659: don't copy parms, this will clear
5110         decorated flag
5111         * support/regression/tests/bug-927659.c: added
5112
5113 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5114
5115         * src/SDCCast.c (addCast): don't cast float to char
5116         * device/lib/libsdcc.lib: added _memmove
5117
5118 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5119
5120         * device/lib/large/Makefile: fixed parallel execution by
5121         replacing `make` by `$(MAKE)`
5122
5123 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5124
5125         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5126         offsets (fixes bug #923936)
5127
5128 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5129
5130         * device/lib/small/Makefile: fixed parallel execution by
5131         replacing `make` by `$(MAKE)`
5132
5133 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5134
5135         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5136
5137 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5138
5139         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5140         * src/regression/Makefile: Regression test was not running.
5141
5142 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5143
5144         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5145         complement if possible
5146         * src/SDCCval.c (valComplement),
5147         * src/SDCCicode.c (operandOperation): fixed complement of literal
5148         * support/regression/tests/onebyte.c (testComplement): added
5149
5150 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5151
5152         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5153         return an optimized tree; actually replace actParm with the new tree
5154         * src/SDCCast.h: added some parantheses to remove side effects
5155         * support/regression/tests/bug-920866.c
5156
5157 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5158         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5159         Bit operands were not being handled properly in the pic14 port.
5160         (now src/regression/add.c passes again).
5161
5162 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5163
5164         * src/SDCC.y (labeled_statement): case and default no longer require
5165         a following statement (RFE #893037)
5166
5167 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5168
5169         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5170         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5171         disabled (fixes bug #916294)
5172         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5173         "mov a,acc"; patch provided by Lenny Story
5174         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5175
5176 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5177
5178         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5179         functions
5180         * src/ds390/gen.c (genFunction, genEndFunction),
5181         * src/ds390/ralloc.c (ds390_assignRegisters),
5182         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5183         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5184         pushed if there are parameters passed on the stack. Also, a cleaner
5185         way to decide if r0/r1 should be pushed/popped. (Together they fix
5186         bug #918693)
5187
5188 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5189
5190         * doc/sdccman.lyx,
5191         * device/lib/mcs51/crtpagesfr.asm,
5192         * device/lib/mcs51/crtxinit.asm,
5193         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5194         to avoid confusion with Si Lab's SFRPAGE register.
5195
5196 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/SDCCglue.c (emitMaps): allow public sfr variables
5199         * src/SDCCglue.c (initialComments): include compiler build date
5200         with compiler version and put the timestamp of the generated
5201         assembly file on a serperate line to be less confusing.
5202         * src/port.h: added genInitStartup hook
5203         * src/avr/main.c,
5204         * src/ds390/main.c,
5205         * src/hc08/main.c,
5206         * src/pic/main.c,
5207         * src/pic16/main.c,
5208         * src/xa51/main.c,
5209         * src/z80/main.c: genInitStartup initialize as NULL (default to
5210         historical behaviour)
5211         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5212         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5213         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5214         library instead of hard coding it into the compiler.
5215         * support/regression/ports/mcs51-stack-auto/spec.mk,
5216         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5217         * device/lib/mcs51/Makefile,
5218         * device/lib/small/Makefile,
5219         * device/lib/large/Makefile,
5220         * device/lib/mcs51/crtpagesfr.asm,
5221         * device/lib/mcs51/crtstart.asm,
5222         * device/lib/mcs51/crtxclear.asm,
5223         * device/lib/mcs51/crtxinit.asm,
5224         * device/lib/mcs51/crtclear.asm,
5225         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5226         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5227         and into user configurable files.
5228         * device/lib/clean.mk: clean mcs51 directory too
5229         * support/regression/tests/longlit.c: added static to T1 declaration
5230         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5231         accesses in the initialization code
5232
5233 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5234
5235         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5236         OSCTRIMVAL as noted in bug #916008
5237
5238 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5239
5240         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5241         in loops with multiple exits (reported as incorrect registers
5242         used by Martin Helmling in Sdcc-user list)
5243
5244 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5245
5246         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5247         made ds390 register extensions look less like error messages
5248
5249 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5250
5251         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5252         reported by Adam Wozniak in Sdcc-user list
5253
5254 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5255
5256         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5257         arithmetic optimizations, added debug output
5258
5259 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5260
5261         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5262         * sdcc.spec: updated and split sdcc into 3 rpms
5263         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5264         needed for literals of LEFT_OP and '+'
5265         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5266         introduced RESULT_TYPE_NOPROM
5267         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5268         left shift
5269         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5270         limited promotion to int only for '*'
5271         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5272
5273 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5274
5275         * src/pic16/gen.c (genSkip),
5276         (genc16bit2lit), (gencjneshort): commented out
5277         (is_LitOp): new helper function, checks operand type
5278         (genCmpEq): rewritten
5279
5280 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5281
5282         * support/regression/tests/bug-908454.c: added
5283
5284 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5285
5286         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5287         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5288         (geniCodeCast): cosmetic, don't preserve bit storage class
5289         (geniCodeLeftShift): added promotion
5290         (geniCodeLogic): fixed regression
5291         * src/SDCCsymt.c (computeTypeOr): accept bits too
5292         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5293
5294 2004-03-07  Borut Razem <borut.razem AT siol.net>
5295
5296         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5297
5298 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5299
5300         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5301         version of pic16_genPackRegisters which does not check if ic is a
5302         CAST operator,
5303         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5304         function cause string1.c regression test fails
5305
5306 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5307
5308         * sim/ucsim/configure.in,
5309         * sim/ucsim/configure,
5310         * sim/ucsim/doc/Makefile.in: use docdir
5311         * src/SDCC.y: fixed sbit atrributes
5312         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5313         * src/SDCCast.c (decorateType): |^& need special promotion handling
5314         * src/SDCCast.h,
5315         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5316         * src/SDCCsymt.h (computeType),
5317         * src/SDCCicode.c: computeType() needs op
5318         * src/SDCCsymt.c (checkTypeSanity),
5319         * doc/sddman.lyx: "plain" bitfields are unsigned
5320         * src/SDCCsymt.c (computeTypeOr): added
5321         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5322         |^& ops
5323         * src/SDCCval.c (val*): computeType() needs op
5324         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5325         * support/regression/tests/onebyte.c: added tests for |^&
5326
5327 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5328
5329         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5330         for writing icode into asm output.
5331
5332 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5333
5334         * src/pic16/device.c: added some debug lines enabled
5335         with macro DEBUG_CHECK,
5336         * src/pic16/genarith.c: more debug in genPlus,
5337         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5338         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5339         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5340         * (aopForSym): onStack symbols are re-placed in data memspace,
5341         and onStack flag is cleared,
5342         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5343         copy temporary pcodeop,
5344         * (genPcall): added warning for not updating PCLATU,
5345         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5346         always true for pic16 port,
5347         * (genMultOneWord): NEW, supports integer multiplication,
5348         * (genMult): modified to call genMultOneWord,
5349         * (ifxForOp): added warning when return NULL,
5350         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5351         flag is set before call to operandFromSymbol for implicit
5352         added structures,
5353         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5354         options.intlong_rent are set by default,
5355         * (_hasNativeMulFor): modified to allow port generation of integer
5356         multiplication,
5357         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5358         set regtype to REG_SFR for all registers, restricting seting the
5359         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5360
5361 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5362
5363         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5364         more than 500 times in the regression tests
5365
5366 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5367
5368         * support/Util/SDCCerr.h,
5369         * support/Util/SDCCerr.c,
5370         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5371         enumerator_list),
5372         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5373         for symbol conflicts.
5374         * support/valdiags/tests/enum.c,
5375         * support/valdiags/tests/tentdecl.c,
5376         * support/valdiags/tests/struct.c: expect possible error messages
5377         referring to original symbol definitions.
5378         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5379         * src/SDCCsymt.h,
5380         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5381
5382 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5383
5384         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5385
5386 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5387
5388         * src/pic16/ralloc.c (newReg): fixed bug #908929
5389
5390 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5391
5392         * src/ds390/gen.c: added missing #include "main.h"
5393
5394 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5395
5396         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5397         checking if symbol is already in set,
5398         * src/pic16/device.h: prototype for checkAddSym,
5399         * src/pic16/gen.c: (_G): added entry interruptvector,
5400         * (assignResultValue): removed some commented out lines,
5401         * (genFunction): check for ISR via sym->type, absolute section for
5402         interrupt code is created via a new pBlock, the goto instruction is
5403         placed now correctly at the interrupt vector position, changed all
5404         references from ivec to _G.interruptvector,
5405         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5406         is the interrupt is a high priority one, same for return from ISR,
5407         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5408         externs to calls of checkAddSym,
5409         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5410         pic16_pcode_verbose flag is set,
5411         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5412         * src/pic16/pcoderegs.c: message about how many registers are saved
5413         will only be emitted if pic16_pcode_verbose flag is set,
5414
5415 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/ds390/ralloc.h,
5418         * src/ds390/ralloc.c (ds390_regWithIdx),
5419         * src/ds390/gen.c (emitcode),
5420         * src/ds390/main.h,
5421         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5422         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5423         ds390operandCompare, getRegsRead, getRegsWritten,
5424         initializeAsmLineNode): customized instruction size calculation for
5425         ds390, started basis for some register optimizations
5426         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5427         corresponding assembly output
5428         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5429         missing push/pop of r0/r1. Optimized push/pops
5430
5431 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * src/mcs51/main.c (instructionSize): fixed ACALL size
5434         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5435
5436 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5437
5438         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5439         the sorting of rlist with NULL elements
5440         * (print_idataType, print_idata): NEW to create idata sections
5441         * src/pic16/device.h: idataSymSet new variable
5442         * src/pic16/gen.c (genFunction): fixed some bugs in string
5443         comparing, improved the absolute section creation for ISRs,
5444         added FSR0L/FSR0H in registers that are saved in an ISR,
5445         * (genInline): fixed the processing of inline snippets,
5446         now they undergo no process by the peephole optimizer
5447         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5448         are placed in idataSymSet,
5449         * (pic16emitStaticSeg): extern symbols are added in externs,
5450         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5451         switching when aboslute variables are placed in access bank memory
5452         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5453         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5454         commented out with #if,
5455         * (pic16_packRegisters): reintroduce the check for CAST because some
5456         symbols are not correctly handled,
5457         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5458         pCodeInstruction instead of pCode,
5459         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5460         pCodeAsmDir definition,
5461         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5462         directive, then the argument directive is emitted without the leading
5463         tab, hack for inline labels which must be in the first column,
5464         * (compareLabel,pic16_findNextInstruction),
5465         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5466         * (insertBankSwitch): modified for the new pCodeAsmDir,
5467
5468 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5469         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5470
5471         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5472         instance,
5473         * (pushSide): commented out with #if,
5474         * (assignResultValue): fixed some typos in saving
5475         registers,
5476         * (genPcall): FIXED and sync'ed with genCall,
5477         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5478         * (genNearPointerGet): fixed to handle some more cases,
5479         implementation scheme via table reads,
5480         * (genConstPointerGet): modified to access code memory correct,
5481         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5482         and improved to handle some cases
5483         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5484         instead of "RETLW" for init data
5485         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5486         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5487         variables are placed in access bank memory (<0x80 and >=0xf80),
5488         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5489         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5490         TBLWT_POSTDEC,TBLWT_PREINC
5491         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5492         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5493         directives
5494         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5495         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5496         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5497         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5498
5499 2004-02-29  Borut Razem <borut.razem AT siol.net>
5500
5501         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5502         support/Util/findme.h, support/Util/system.h: enhance binary relative
5503         search for lib and include by using findProgramPath()
5504
5505 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5506
5507         * src/SDCCpeeph.h,
5508         * src/SDCCpeeph.c (pcDistance),
5509         * src/port.h,
5510         * src/mcs51/ralloc.h,
5511         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5512         * src/mcs51/main.h,
5513         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5514         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5515         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5516         size calculation port specific, started basis for some register
5517         optimizations
5518         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5519         missing push/pop of r0/r1. Optimized push/pops
5520         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5521         * device/lib/_modsint.c (_modsint),
5522         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5523         and stack version so regression tests pass
5524
5525 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5526
5527         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5528         * src/SDCCast.c (decorateType): catch another small optimization
5529         with '?' operator
5530         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5531         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5532         modified to finally use computeType() all over SDCC,
5533         see Feature Request #877103
5534         * src/SDCCval.h: cosmetic
5535         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5536         valCompare(); regression tested in muldiv.c
5537         * support/regression/tests/muldiv.c (testMod): mod sign follows
5538         dividend only
5539
5540 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5541
5542         * src/SDCCast.c (decorateType): fixed bug #902362
5543         * doc/INSTALL.txt: fixed install instructions for win32
5544
5545 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5546
5547         * device/include/Makefile.in (install): fixed by replacing spaces
5548         by tabs
5549         * doc/README.txt,
5550         * doc/INSTALL.txt: updated for release
5551         * doc/sdccman.lyx: added warning for --xstack being buggy
5552
5553 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5554
5555         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5556         to eliminate build warnings.
5557         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5558
5559 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5560            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5561
5562         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5563         removed -penable-stack, added comment for stack pragma, added
5564         warning for not initializing the stack/frame registers, removed
5565         comment at interrupts section
5566
5567         Stack is made permanent, there is no ability to disable stack usage.
5568         * src/pic16/device.h,
5569         * src/pic16/device.c: removed all references to USE_STACK macro,
5570         * src/pic16/device.c (pic16_dump_section): when no elements in
5571         rlist, free rlist before return,
5572         * (pic16_dump_int_registers): NEW, internal registers are a new set
5573         of general purpose registers reused by each function,
5574         * (checkAddReg): returns 1 if registers is added to set,
5575         * (pic16_groupRegistersInSection): when a registers is of type
5576         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5577         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5578         SRCASECMP macro is moved here from device.c
5579         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5580         PO_PCLATU, PO_PRODL, PO_PRODH,
5581         * (pic16_pCodeOpType, genMinus,
5582         changed compares to "a" register, with AOP_ACC,
5583         * (pic16_genPlus): fixed some bugs and indented properly,
5584         * (pic16_addSign): changed size to size+offset in the MOVWF
5585         instruction,
5586         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5587         multiply 8-bit operand by literal, result is 8-bit,
5588         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5589         multiply 2 8-bit operand, result is 8-bit,
5590         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5591         genUMult8X*_16,
5592         * src/pic16/gen.c: changed accUse to contain WREG only,
5593         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5594         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5595         true, do not use immediate addressing any more unless sym is a
5596         pointer in codespace,
5597         * (aopForRemat): do not use immediate addressing when symbol not in
5598         codespace and when symbol's address is requested,
5599         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5600         accUse size (= 1),
5601         * (aopGet): added case for AOP_ACC and don't return "accumulator
5602         bug" but WREG instead,
5603         * (popGetTempReg): pushes contents of temporary register in stack,
5604         * (popReleaseTempReg): pops contents of temporary register from
5605         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5606         * (pic16_popGet): separated case AOP_ACC to return register WREG
5607         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5608         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5609         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5610         the use of immediate pointers to certain cases only.
5611
5612         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5613         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5614         * (assignResultValue, genCall, genRet): modified to use the new
5615         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5616         genPcall is still broken,
5617         * (genFunction): added code to create 'A' type pBlocks when
5618         interrupt functions are generated, code not extensively tested yet,
5619         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5620         * (genEndFunction): modified so ISRs pop stored registers from stack,
5621         * (genMultOneByte): cleanup,
5622         * (AccRsh): added flag andmask, to and result with appropriate mask,
5623         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5624         * (genDataPointerGet): fixed and reenabled its use,
5625         * (genNearDataPointerGet): bugs fixed,
5626         * (genDataPointerSet): bugs fixed,
5627         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5628         pic16_DumpSymbol, pic16_DumpOp,
5629         * src/pic16/genutils.h: function prototypes for the above functions,
5630         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5631         pointers,
5632         * (pic16emitRegularMap): many many many improvements, but needs a
5633         major cleanup,
5634         * src/pic16/main.c: enable_stack in pic16_options is removed,
5635         * (_pic16_parseOptions): removed command line options -penable-stack,
5636         * (_process_pragma): emit stack symbol only when stack pragma is
5637         processed,
5638         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5639         redirected to FSR0L/FSR0H pair,
5640         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5641         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5642         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5643         for immediates,
5644         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5645         * (dumpPicOptype): NEW,
5646         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5647         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5648         with movff instruction,
5649         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5650         added pic16_int_regs, some packRegsFor* functions are commented out,
5651         because produce errors,
5652         * src/pic16/NOTES: minor modifications
5653
5654 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5655
5656         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5657         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5658         --pack-iram.
5659         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5660         * as/mcs51/lkaomf51.c: fixed bug #895763
5661
5662 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5663
5664         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5665
5666 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5667
5668         * doc/sdccman.lyx: added details about the HC08 storage classes and
5669         interrupts, fixed the register usage info for z80 & gbz80
5670
5671 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         * doc/sdccman.lyx: added more pic16 port documentation
5674         * device/include/pic16/: added header pic18fregs.h
5675
5676 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5677
5678         * doc/sdccman.lyx: added Vangelis' contribution
5679
5680 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5681
5682         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5683         extend to the next CALL or PCALL, not just to the next CALL.
5684
5685 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5686
5687         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5688
5689 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5690
5691         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5692         bug #895752 and a better fix for bug #716790
5693
5694 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5695
5696         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5697
5698 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5699
5700         * doc/sdccman.lyx: minor changes, minor changed
5701
5702 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5703
5704         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5705         which can't handle SDCC_NEWONEBYTEOPS,
5706         (geniCodeMultiply): removed conversion from mult to shift for pic14
5707         and pic16
5708
5709 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5710
5711         * src/hc08/gen.h,
5712         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5713         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5714         thus fixing bug #895406
5715
5716 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5717
5718         * device/lib/_modsint.c,
5719         * device/lib/_modslong.c: sign follows divisor only
5720         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5721         signs or signedness can be ignored
5722         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5723         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5724         added optimization for IFX,
5725         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5726         arguments;
5727         reenabled optimization for IFX, which was removed on 2004-01-11
5728         * src/SDCCast.h: added return type IFX
5729         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5730         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5731         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5732         SDCC_OLDONEBYTEOPS selects the old behaviour
5733         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5734         changed again and commented promotion rule
5735         * src/SDCCval.c (valDiv): promotion no longer necessary
5736         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5737         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5738         rewritten
5739         * support/regression/tests/onebyte.c: added
5740
5741 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5742
5743         * gen.c (genInline): reverted to old code for assemnling inline
5744         code because of bug reported James Chadd
5745
5746 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5747
5748         * ralloc.h: missing declarations from previous patch,
5749         seems that patch for ralloc.h was never applied, fixed
5750
5751 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5752            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5753
5754         * pcode.c,
5755         * pcode.h,
5756         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5757         indirect addressing. Marked FSR0 as deprecated
5758         * gen.c (pointerCode): commented out, not needed now
5759         (pic16_popGet2p): new MOVFF helper function
5760         (genGenPointerGet),
5761         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5762         (shiftRLong): removed duplicate debugging info
5763
5764 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5765
5766         * src/ds390/gen.c (genNearPointerGet),
5767         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5768         optimization with bits, but not bitfields.
5769         * src/ds390/ralloc.c (packRegisters),
5770         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5771
5772 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5773
5774         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5775
5776 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5777
5778         * src/SDCCsymt.h,
5779         * src/SDCCicode.c (operandFromSymbol),
5780         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5781         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5782         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5783         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5784         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5785         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5786         bug #892038
5787         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5788         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5789         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5790         * src/SDCCsymt.c (newSymbol),
5791         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5792         enumerator_list),
5793         * src/SDCCval.h,
5794         * src/SDCCval.c (newiList): fixed bug #885705
5795
5796 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5797
5798         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5799         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5800
5801 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5802
5803         * device/include/c8051f120.h,
5804         * device/include/c8051f300.h,
5805         * device/include/c8051f310.h: added/updated header files for Silicon
5806         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5807         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5808         in new section Submitting patches
5809
5810 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5811
5812         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5813         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5814         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5815         genGenPointerSet),
5816         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5817         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5818         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5819         genGenPointerSet),
5820         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5821         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5822         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5823         genGenPointerSet),
5824         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5825         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5826         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5827         genGenPointerSet): fixed bug #892400
5828         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5829         to eliminate build warnings.
5830         * src/SDCCast.c (processParms),
5831         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5832         fixed bug 751859
5833         * support/valdiag/valdiag.py: added GCC to the list of defines active
5834         when compiling with gcc
5835
5836 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * support/Util/SDCCerr.h,
5839         * support/Util/SDCCerr.c,
5840         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5841         with an incomplete type (fixed bug #883734)
5842         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5843
5844 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5845
5846         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5847
5848 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5849
5850         * src/SDCCast.c (decorateType),
5851         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5852         function pointer implementation
5853         * support/regression/tests/funptrs.c: added tests to verify both forms
5854         of function pointers work correctly. Added tests to verify parameters
5855         are passed in the correct order.
5856
5857 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5858
5859         * device.c (regCompare): registers are sorted by ascending
5860         address and increasing size,
5861         * main.c (_pic16_finaliseOptions): removed the declaration
5862         of compiler macro MCU. Now a macro of the format pic18fxxxx
5863         will be defined from the command line
5864
5865 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5866             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5867
5868         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5869         PCOP_RLCF was overwritten!
5870         * gen.c (genSkip): commented out calls to pic16_emitcode,
5871         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5872         * (genlshTwo),
5873         * (genRRC): added debugging info,
5874         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5875         overwritten while shifting,
5876         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5877         overwritten while shifting,
5878         * (AccLsh),
5879         * (AccRsh),
5880         * (shiftLLeftOrResult),
5881         * (shiftRLeftOrResult),
5882         * (shiftRLong),
5883         * (shiftLLong): Implemented with pic16_emitpcode
5884         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5885         * (genLeftShift): Fixed bug, operand for shift by variable always
5886         was "and"ed with 0x0f,
5887         * (genLeftShiftLiteral),
5888         * (genrshTwo),
5889         * (genRightShiftLiteral): added debugging info,
5890         * (genrshFour): added comment,
5891         * (genRightShift): determined signedness from operand "left"
5892         instead of "result"
5893
5894 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * src/SDCCicode.c (geniCodeParms),
5897         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5898         function pointers, fixed function pointer bugs #861242 and #861896
5899
5900 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5901
5902         * device/include/c8051f000.h,
5903         * device/include/c8051f120.h,
5904         * device/include/c8051f300.h: added header files for Silicon
5905         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5906
5907 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5908
5909         * src/SDCCast.c (processParams): added new type flow and restructured
5910         (gatherAutoInit): added new type flow
5911         (addCast): cosmetic changes
5912         (getLeftResultType): added new type flow for array indices, patch
5913         provided by Stas, see FR #877103
5914         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5915         array index patch by Stas
5916         * src/SDCCast.h: added prototype getResultTypeFromType()
5917         * src/SDCCval.h,
5918         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5919         * src/pic/glue.c (pic14emitStaticSeg),
5920         * src/pic16/glue.c (pic16emitStaticSeg),
5921         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5922         for initialization of symbols
5923         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5924         * support/Util/SDCCerr.h:
5925         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5926         * .version: bumped version number to 2.3.8
5927         * device/include/Makefile.in (install),
5928         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5929         avoid warnings
5930
5931 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5932
5933         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5934         Slade Rich fixed an optimization bug
5935         * src/pic/pcodepeep.c,
5936         * src/pic/pcoderegs.c
5937         * doc/Makefile (install): added test for directory
5938
5939 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5940
5941         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5942         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5943         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5944         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5945         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5946         * as/mcs51/asexpr.c (term),
5947         * as/hc08/asexpr.c (term): fixed bug #887146
5948
5949 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         * src/z80/gen.c (genMult): handle single byte result product
5952         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5953         DUMMY_READ_VOLATILE (fixed bug #886367)
5954
5955 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5956
5957         * support/regression/tests/libmullong.c: fixed logic, on little endian
5958         hosts we ended without a mullong_wrapper()
5959
5960 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5963         virus/worm forged address usage.
5964
5965 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5966
5967         Fixed promotion, it should be done on AST level:
5968         * src/SDCCast.c (addCast): added promotion to int
5969         (decorateType): updated call to upCast()
5970         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5971         usualUnaryConversions()
5972
5973 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5974
5975         * support/regression/tests/literalop.c (mulWrapper): Added a
5976         wrapper to remove integer overflow warnings.
5977
5978         * support/regression/tests/float_trans.c: Made work on host.
5979
5980         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5981         location of sz80.
5982
5983         * support/regression/generate-cases.py (main): Changed from inline
5984         to a main method.
5985
5986         * doc/Makefile (install): Changed to depth first to get rid of
5987         missing directory install warning.
5988
5989         * as/Makefile (install-doc): Made work on Mac.
5990
5991 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5992
5993         * src/SDCCast.c: added an additional type flow in decorateType() of
5994         opposite direction, see feature request #860006; it's enabled at runtime
5995         by setting the environment variable SDCC_NEWTYPEFLOW
5996         * src/SDCCast.h: changed prototype of decorateType()
5997         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5998         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5999         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6000         see feature request #877103
6001         * src/SDCCval.c: updated call of decorateType()
6002         (valBitwise): fixed bug #882876
6003         (valMinus): added promotion
6004         (valLogicAndOr): result is unsigned
6005         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6006         * src/SDCCsymt.c (computeType),
6007         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6008         must not cause an unsigned operation
6009         * src/pic/glue (pic14emitRegularMap),
6010         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6011
6012 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6013
6014         * src/pic/pcode.c (PCodeID): commented out left over debug code
6015
6016 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6017
6018         * support/valdiag/tests/overflow.c: added shift tests
6019         * src/pic/device.c,
6020         * src/pic/gen.c,
6021         * src/pic/gen.h,
6022         * src/pic/glue.c,
6023         * src/pic/main.c,
6024         * src/pic/pcode.c,
6025         * src/pic/pcode.h,
6026         * src/pic/pcodepeep.c,
6027         * src/pic/pcoderegs.c,
6028         * src/pic/ralloc.c,
6029         * src/pic/ralloc.h: applied patch from Slade Rich;
6030         added support for multiple code pages and multiple RAM banks on the
6031         PIC 14 port. The ASM files now no longer simply assume all the
6032         code / RAM are in the same page / bank. This means the linker can
6033         safely allocate code/RAM of separate ASM files to different pages/banks.
6034         * doc/sdccman.lyx: added Slade's tips
6035         * src/mcs51/peeph.def: fixed bug #880768
6036
6037 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6038
6039         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6040         * src/SDCCast.c (decorateType): fixed bug #880197
6041
6042 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6043
6044         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6045         getopt.h.
6046
6047         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6048         strtof is not part of C89 and isn't included with Mac OS X.
6049
6050 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6051
6052         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6053         shiftL2Left2Result): fixed bug #879326
6054         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6055         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6056         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6057         address fetch for clr instruction
6058         * device/lib/hc08/_mulint.c: created optimized assembly version
6059         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6060
6061 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6062
6063         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6064         proposed in FR #877103
6065
6066 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6067
6068         * src/SDCCval.c (cheapestVal): added missing checks
6069         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6070         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6071
6072 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6073
6074         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6075         equal operands
6076
6077 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6078
6079         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6080         loaded with the linker search paths (-L arguments) and the libraries
6081         to be linked with the current source (-l arguments). Changes
6082         currently will affect only the pic16 port.
6083         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6084         include path the port specific paths and port specific libraries,
6085         * gplink command now contains the $3 argument,
6086         * src/pic16/device.h,
6087         * src/pic16/device.c,: structure PIC_device is made public and
6088         renamed to PIC16_device, the same for variable Pics which is renamed
6089         to Pics16. Updated all references to them.
6090         * src/pic16/glue.c (pic16glue): corrected bug with code
6091         initialization which bypassed the variable initializations block.
6092
6093         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6094         COMPILE_FLAGS and added the --nostdinc option
6095
6096 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * device/include/mc68hc908jb8.h: Register defs for another member
6099         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6100
6101 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6102
6103         Documenting changes from previous commits.
6104         * configure.in (version 1.56),
6105         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6106         when generating output files to configure the pic16 library,
6107         but now I've commented it out, since gputils aren't installed in the
6108         SF compile farm, so library won't compile
6109
6110         * device/lib/Makefile.in (version 1.56): initially I've added in
6111         target 'all' the prerequestive 'model-pic16' so it compiled the
6112         pic16 library, but now I've commented it out for the same reasons
6113         above,
6114         * added targets 'model-pic16' and 'objects-pic16' to compile the
6115         library
6116         * added target 'port-specific-objects-pic16' to handle the
6117         generated libraries and copy them into the build/ directory
6118         * added target 'clean-intermediate-pic16' to clean intermediate
6119         files into pic16 directory
6120         * in target 'installdirs' added line to create directory pic16 in
6121         the installation path
6122
6123         * device/include/Makefile.in (version 1.11): in target 'install'
6124         added lines to copy all header files to installation path,
6125         * in target 'installdirs' added line create directory for pic16
6126         headers in the installation path
6127
6128 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6129
6130         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6131          a function call
6132
6133 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6134
6135         * configure,
6136         * device/lib/configure.in,
6137         * device/lib/configure: fixed for autoconf 2.57
6138
6139 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6142         option so that it actually works. Made it specific to the z80, since
6143         the gbz80 doesn't have these kinds of I/O ports.
6144
6145 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         * device/include/z180.h,
6148         * device/lib/_memcpy.c,
6149         * device/lib/_memmove.c,
6150         * device/lib/_mulint.c,
6151         * device/lib/ser_ir.c,
6152         * device/lib/ser_ir_cts_rts.c,
6153         * device/lib/_strcmp.c,
6154         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6155         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6156         portmode; added deprecation warning for bank= and protmode= forms.
6157         Also, guard against buffer overflow.
6158         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6159
6160 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6161
6162         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6163         changed interrupt vector table generation to only emit declared vectors.
6164         * device/include/Makefile.in: added missing backslash
6165         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6166
6167 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6168
6169         Mainly changes to support compilation of the device libraries
6170         * src/pic16/device.c: stack is allocated via symbol and not
6171         via literal number. The symbol is placed in the corresponding
6172         position of the data ram
6173         * (pic16_dump_section): relocatable and absolute uninitialized
6174         data are now emitted in sorted order to reduce section naming,
6175         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6176         weren't marked as being in the access bank,
6177
6178 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6179
6180         Added portion of GNU PIC Library under the directory
6181         device/include/pic16 and device/lib/pic16. These files
6182         contain the declarations of SFRs for the PIC18Fxx2 devices.
6183         The directory is initialized via configure from toplevel.
6184
6185 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6186
6187         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6188         the spilllocations to be compared correctly
6189
6190 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6191
6192         * src/SDCCast.c (decorateType): fixed bug introduced today
6193
6194 2004-01-12  Borut Razem <borut.razem AT siol.net>
6195
6196         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6197         doc/sdccman.lyx: upper case pragmas are deprecated
6198
6199 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6200
6201         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6202         in simpler and even better code
6203
6204 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6205
6206         * src/SDCCicode.c (operandOperation): fixed bug #874819
6207         * src/SDCCast.c (decorateType): fixed
6208         char foo (unsigned long ul) { return ul > 0; }
6209
6210 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6211
6212         * doc/sdccman.lyx: Moved and added some sections, small changes
6213         all over. Telling LaTeX to be less strict with word spacing
6214         to better keep the right margin. Changed some notes about
6215         maintainance of the ports in section 3.2.1 - is it OK like this?
6216
6217 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6218
6219         SDCC source changes:
6220         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6221         convilong): modified to inform the pic16 port that builtin functions
6222         are external
6223
6224         PIC16 PORT specific changes:
6225         * src/pic16/device.c pic16_dump_equates() added,
6226         processor registers declared internally by the port are emitted in
6227         the translation as equates,
6228         * src/pic16/gen.c: inline code is passed unprocessed to the
6229         translation,
6230         * (pic16_popGetLit2): fnuction modified to take second operand as
6231         pCodeOp pointer and not as literal,
6232         * (popRegFromIdx): prefixed with pic16_,
6233         * (pic16_popCombine2): modified to receive already allocated pCode
6234         operands,
6235         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6236         * (genFunction): initializes local stack frame and pushes on stack
6237         all the registers used by this function,
6238         * (genEndFunction): restores all registers from stack and restores
6239         stack frame,
6240         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6241         improvements,
6242         * (pic16glue): changed the program startup sequence,
6243         * added new dbName code 'A' for functions placed in absolute section
6244         * src/pic16/main.c: added function attribute _naked,
6245         * added pragma 'code' to place a fnuction at an absolute address,
6246         * added command line arguments --debug-ralloc and --pcode-verbose,
6247         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6248         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6249         * (pic16_newpCodeOpLit2): modified to take the second operand as
6250         pCodeOp pointer,
6251         * (pic16_printpBlock): modified to emit each function in a separate
6252         section,
6253         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6254         UPPER for immediate operands,
6255         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6256         instruction,
6257         * src/pic16/peeph.def: all peepholes with movff are commented out,
6258         because there is a problem in the pcode peep optimizer,
6259         * src/pic16/ralloc.c: the register allocator can now reuse local
6260         function symbols for another function. This saves register usage.
6261         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6262
6263         Added file src/pic16/NOTES with information about program writing on
6264         the current port version.
6265
6266 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6267
6268         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6269         and peephole 252 (array access)
6270
6271 2004-01-09  Borut Razem <borut.razem AT siol.net>
6272
6273         * src/SDCCmain.c : fixed #872250: -l command line defined library
6274           files are scanned before standard library files
6275
6276 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6277
6278         * src/SDCCast.c (decorateType): fixed bug #874046
6279
6280 2004-01-09  Borut Razem <borut.razem AT siol.net>
6281
6282         * support/scripts/sdcc.nsi: remove previous installation
6283
6284 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6285
6286         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6287         bytes for last interrupt vector (mcs51)
6288         * sdcc.spec: fixed typo
6289
6290 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6293         gen51Code): more efficient parameter receive for --model-large
6294         ("bug" #845294)
6295
6296 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6297
6298         * src/ds390/main.c,
6299         * src/z80/main.c: added missed needLinkerScript flags (more than
6300         one port structure defined in these file)
6301         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6302         bug #795325
6303
6304 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6305
6306         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6307         * src/port.h: added flag needLinkerScript in port->linker
6308         structure to inform whether to create a .lnk file or not,
6309         * src/avr/main.c,
6310         * src/ds390/main.c,
6311         * src/hc08/main.c,
6312         * src/mcs51/main.c,
6313         * src/pic/main.c,
6314         * src/pic16/main.c,
6315         * src/xa51/main.c,
6316         * src/z80/main.c: changed appropriately to configure
6317         needLinkerScript flag
6318         * src/pic/gen.c,
6319         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6320         * src/pic/glue.c: added variable udata_section_name to
6321         override default uninitialized data segment definition for
6322         devices only with SHAREBANK memory (reported from Erik Epetrich)
6323         * (pic14emitOverlay): modified to emit a commented overlay segment
6324         directive when no overlay data exist
6325         * (picglue): modified to emit uninitialized data segment
6326         according to udata_section_name
6327         * src/pic/main.c (_pic14_parseOptions): added command line
6328         options --udata-section-name=[name] to override default
6329         udata definition name
6330         * modified _linkCmd and _asmCmd to include compiler passed
6331         arguments via -W option
6332         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6333         object file from '.rel' to '.o' in port->linker structure,
6334         changed size of fptr from 2 to 3 in port structure
6335
6336 2004-01-07  Borut Razem <borut.razem AT siol.net>
6337
6338         * support/scripts/sdcc.nsi: update PATH
6339         * support/scripts/sdcc.ico: craeted
6340
6341 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6342
6343         * device/include/Makefile.in: fix install
6344         * doc/Makefile: fix install
6345
6346 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6349         in bug #860505
6350         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6351         how the function variable allocation summary is displayed; also
6352         include information about variables allocated to the overlay
6353         segment
6354
6355 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6356
6357         * as/mcs51/lkmain.c: Help about -Y option
6358         * as/mcs51/lkarea.c: Fixed gcc warnings
6359
6360 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6361
6362         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6363         fixed warning
6364         * support/valdiag/tests/overflow.c: added
6365         * src/SDCCast.c (decorateType),
6366         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6367         LEFT_OP (left shift)
6368
6369 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6370
6371         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6372         (default behaviour).
6373
6374 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6375
6376         A python script to validate compiler diagnostic messages. It can be
6377         used to verify that sdcc complains about bad c source code and
6378         gives a good location of the error.
6379         * support/valdiag/Makefile,
6380         * support/valdiag/valdiag.py,
6381         * support/valdiag/tests/*
6382
6383 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6384
6385         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6386         * src/SDCCsymt.c (newEnumType),
6387         * src/SDCCsymt.h
6388         * support/Util/SDCCerr.c,
6389         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6390         enum related bugs.
6391         * support/regression/tests/enum.c: added test for enum values that
6392         require at least 2 bytes of storage.
6393
6394 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6395
6396         * src/common.h: added ifndef/define/endif macros
6397         around the header file.
6398         Bug reported from Jesus Calvino-Fraga
6399
6400 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6401
6402         * sdcc.spec: updated
6403         * device/include/Makefile.in: don't install CVS directories
6404         * device/lib/Makefile.in: added removal of CVS directories after install
6405         * doc/Makefile: fixed install, added local_icons
6406         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6407         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6408         * src/ds390/gen.c (genRightShift): fixed bug #870788
6409         * src/SDCCast.c (decorateType): fixed bug #870781
6410
6411 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6412
6413         PIC16 port related changes:
6414         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6415         added variable stackPos,
6416
6417         * gen.c: genCall, assignResultValue: added support for
6418         pushing/retrieving function parameters to/from stack,
6419         genFunction,genEndFunction: setup stack frame for the
6420         generated function,
6421         genAddrOf: will be changed according to bug 863624
6422
6423         * added files genutils.c and genutils.h which contain gen*
6424         debugged and optimised functions extracted from gen.c
6425
6426         * glue.c: added variable 'externs' which holds extern symbols,
6427         pic16emitRegularMap: is modified to properly handle relocatable
6428          symbols under the new scheme,
6429         pic16createInterruptVect: is modified
6430         pic16printPublics: is modified to emit 'global' assembler directives,
6431         added pic16_printExterns to print extern symbols,
6432         pic16glue: initializes stack/frame pointer in the beginning of
6433         the assembly output. Temporary hack, will be corrected later,
6434         because gplink yet does not support stack and SDCC does not
6435         yet support a type of crt0.o object to create the final binary.
6436
6437         * Removed many lines that contain 8051 legacy code.
6438         * The code is finally placed under a 'code' directive.
6439         * Added port specific options.
6440
6441         * _process_pragma: simplified since now we do not need *special*
6442         include file to define SFR registers. But a separate header
6443         will be needed. This will be developed later.
6444         * _pic16_parseOptions: added, parses port specific options:
6445         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6446         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6447         --preplace-udata-with=
6448
6449         * _pic16_setDefaultOptions: modified to initialize section names,
6450         but hack is temporarly out of order since it needs improvement.
6451         * _pic16_genAssemblerPreamble: configuration words are emitted by
6452         their address instead of their name. This part is incomplete and
6453         supports only the 18Fxx2 devices. Other devices will emit an error
6454         during assembly since they do not contain the same set of config
6455         registers
6456         * _pic16_genIVT: is modified,
6457
6458         * pcode.c: added definitions for some hardware registers that are needed
6459         for stack support
6460         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6461         All PCI entries are updated. Now LFSR is supported.
6462         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6463         * added pic16_newpCodeOpLit2 to support instructions with
6464         two literal arguments
6465         * pic16_pCode2str: corrected code that emits assembler instructions
6466         with two literal operands and those that have an access bit modifier
6467         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6468         this fixes a bug which caused some labels to be lost, when an
6469         assembler directive was added, i.e. banksel,
6470         * pic16_FixRegisterBanking: improved logic that causes the insertion
6471         of bank switching,
6472         * InlineFunction: functions that are called once, are not any more
6473         inlined. This can be a port option in the future,
6474
6475         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6476
6477         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6478         hold the corresponding uninitialized symbols,
6479         * pic16_allocProcessorRegister: registers have explicit marked the
6480         accessBank field,
6481         * pic16_allocInternalRegister: registers are explicit marked as
6482         not used,
6483         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6484         processing list, so bit registers were lost,
6485         *
6486
6487         * ralloc.h: added field 'accessBank' and original symbol operand
6488         in register definition,
6489         * removed the field isMapped from register definition,
6490
6491         ** Several functions have been removed from various sources:
6492         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6493         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6494         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6495         pic16_assignRelocatableRegisters
6496
6497         ** others have been introduced:
6498         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6499         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6500
6501 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6502
6503         * support/scripts/inc2h.pl: changed definition of BIT_AT
6504         to emit 'sbit at' instead of 'bit at'. This was a request.
6505
6506         PIC16 port related preliminary changes:
6507         * gen.c: prefixed function popRegFromString with
6508         pic16_ and all references to it corrected
6509         * pcode.c: all pic16_pc_* hardware registers prefixed
6510         with underscore (_),
6511         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6512         * ralloc.c: newReg(): when register is REG_SFR then
6513         set address to rIdx,
6514         pic16_allocProcessorRegister(): marks register wasUsed=0
6515         pic16_writeUsedRegs(): added a call to assign processor
6516         registers via pic16_assignFixedRegisters
6517
6518 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6519
6520         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6521         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6522         variables in unused register banks.  Also the SSEG is placed
6523         wherever there is enough space for it, and IDATA can be anywhere
6524         in internal RAM.  For now compile using -Wl-Y[stack_size].
6525         The mem file is different for this option as well, since it
6526         makes no sense of talking about DSEG lenght.
6527
6528 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6529
6530         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6531         in certain cases, e.g. when ROM assignment, patch provided
6532         from Albert den Haan.
6533
6534 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6535
6536         Many signedness and type propagation fixes:
6537         * src/SDCCicode.c: made geniCodeCast() static
6538         replaced SPEC_ by IS_ (cosmetic)
6539         (operandOperation): fixed div and mod operation
6540         (usualBinaryConversions): added support for promotion of char
6541         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6542         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6543         (geniCodeAdd): an array index will stay unsigned, even if promoted
6544         from char to int
6545         (geniCodeArray): ditto
6546         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6547         * src/SDCCsymt.c (computeType): added more support for char;
6548         promotion of char is selectable by promoteCharToInt, fixed signedness
6549         for all cases
6550         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6551         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6552         * src/SDCCval (val*): replaced signedness calculation by
6553         computeType()
6554         rearranged if-branches (cosmetic)
6555         (valShift): added warning W_SHIFT_CHANGED
6556         (valCompare): fixed problem with different types
6557         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6558         * support/regression/tests/literalop.c: added many cases
6559         * support/regression/tests/ast_constant_folding.c: changed finally to
6560         'unsigned int'
6561         * .version: new year, new version: 2.3.7
6562         * src/SDCCmain.c (main): applied patch #866468
6563         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6564         provided by Scott Bronson
6565         * doc/sdccman.lyx: updated documentation for sdcdb
6566         updated and added chapter tips
6567
6568 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6569
6570         * src/SDCCsymt.h: missing from yesterday's commits
6571
6572 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/SDCC.y (struct_or_union_specifier),
6575         * support/Util/SDCCerr.c,
6576         * support/Util/SDCCerr.h: verify that struct & union tags are used
6577         as declared.
6578
6579 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         * src/SDCCglobl.h: missing from yesterday's commits
6582
6583 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6584
6585         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6586         sft_attributes, struct_declaration, parameter_declaration,
6587         type_name, start_block, declaration_list),
6588         * src/SDCC.lex (check_type): support redefinition of typedef names
6589
6590 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6591
6592         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6593         aligned xdata arrays. Erik helped me with the if clause.
6594
6595 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6596
6597         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6598         warning
6599
6600 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/SDCCast.h,
6603         * src/SDCCast.c (newAst_),
6604         * src/SDCCicode.h,
6605         * src/SDCCicode.c (ast2iCode, newiCode),
6606         * src/SDCCglobl.h,
6607         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6608         expr, statement, expression_statement, selection_statement,
6609         iteration_statement, expr_opt, jump_statement): foundation for tracking
6610         sequence points
6611         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6612         point code too)
6613
6614 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * support/Util/SDCCerr.c,
6617         * src/SDCCast.h,
6618         * src/SDCCast.c (createCase, createDefault, decorateType),
6619         * src/SDCClabel.c (labelUnreach),
6620         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6621         to error messages.
6622         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6623         (with thanks to Stas Sergeev)
6624         * device/include/time.h,
6625         * device/lib/time.c (CheckTime): suppress unreachable code warning
6626
6627 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * src/SDCCast.c (createIvalCharPtr),
6630         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6631         bug #753752)
6632         * support/regression/tests/nullstring.c: tests for these two bugs
6633
6634 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6635
6636         * support/Util/SDCCerr.h,
6637         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6638         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6639         about storage class and 'at' used inside struct or union
6640         * src/SDCCBBlock.c (iCodeFromeBBlock),
6641         * src/SDCCcse.c (ifxOptimize),
6642         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6643         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6644         printIval, emitStaticSeg, emitOverlay),
6645         * src/SDCClabel.c (deleteIfx),
6646         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6647         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6648         gatherAutoInit, processParms),
6649         * support/Util/SDCCerr.h,
6650         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6651         reporting for post-parse errors.
6652
6653 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6654
6655         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6656         implicit casts via union; they don't work on big endian systems
6657         (possible fix for bug #861138)
6658
6659 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6660
6661         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6662         * src/mcs51/main.c: fixed the fix for bug #737001
6663
6664 2003-12-15  Borut Razem <borut.razem AT siol.net>
6665
6666         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6667
6668 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6669
6670         * support/makebin/makebin.c: put output in binary mode
6671
6672 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6673
6674         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6675         xdata and data memory on startup. Set the environment variable
6676         SDCC_NOGENRAMCLEAR to disable this.
6677         * src/mcs51/peephole.def,
6678         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6679         (allows non-interrupt and interrupt code to safely compete for a resource
6680         without the non-interrupt code having to disable interrupts)
6681
6682 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6683
6684         * src/SDCCicode.c (geniCodeAdd),
6685         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6686         with valFromType if type might be a pointer and host is big endian).
6687         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6688         types, not just integer types.
6689         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6690         multiply defined with mismatching "at" address.
6691
6692 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6695         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6696         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6697         with embedded nulls (fixed bug #753752)
6698
6699 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6700
6701         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6702         Apparently this did not see much testing (endless loop)
6703
6704 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6707
6708 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6711         gracefully handle NULL memmap pointers
6712
6713 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6714
6715         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6716         instead of deleting the iCode when an operand is volatile
6717         * src/z80/gen.c (genDummyRead),
6718         * src/mcs51/gen.c (genDummyRead),
6719         * src/ds390/gen.c (genDummyRead),
6720         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6721         not just IC_RIGHT
6722         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6723         * src/SDCC.y: fixed bug #850420
6724
6725 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6726
6727         Applied z80 i/o port patch from Peter Townson and fixed some operators
6728         to better handle operands in A register.
6729         * device/include/z180.h
6730         * src/SDCC.y
6731         * src/SDCCglue.c
6732         * src/z80/gen.c
6733         * src/z80/gen.h
6734         * src/z80/main.c
6735         * src/z80/peeph-z80.def
6736         * src/z80/peeph.def
6737         * src/z80/z80.h
6738
6739 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6740
6741         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6742
6743 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6744
6745         * device/lib/hc08/_mullong.c: Removed extra #endif
6746
6747 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * sim/ucsim/hc08.src/inst.cc,
6750         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6751         carries from x to h
6752         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6753         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6754         * device/include/stdarg.h: fixed varargs for hc08
6755         * device/lib/Makefile.in,
6756         * device/lib/hc08/Makefile,
6757         * device/lib/hc08/_mulint.c,
6758         * device/lib/hc08/_mullong.c: fixed some endian problems
6759
6760 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6761
6762         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6763         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6764         * device/lib/_gptrget.c,
6765         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6766
6767 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6770         * src/SDCCast.c (astErrors): fixed bug #846007
6771         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6772
6773 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/SDCCast.c (decorateType): disabled a transformation I added in
6776         revision 1.188 (access to fields of a structure at an absolute address);
6777         it breaks with bitfields, extern declarations, and gcse analysis.
6778         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6779         could be assigned through a pointer, so don't complain.
6780         * src/SDCCast.c (astErrors),
6781         * src/SDCCast.h,
6782         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6783
6784 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6785
6786         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6787         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6788         output of __config directives, since gpasm now supports them
6789         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6790         pre-processor macro, i.e. -DMCU=p18f452
6791         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6792         and modified to handle 'cast' icode similarly to '=' icode
6793         * src/pic16/device.h (typedef struct PIC_device): added field
6794         'extMIface' to indicate that chip has external memory interface
6795         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6796         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6797         18F8720
6798
6799 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6800
6801         * src/SDCC.y (pointer): fixed bug #846006
6802         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6803         * src/SDCCast.c (decorateType): fixed bug #846009
6804         * src/ds390/peeph.def,
6805         * src/ds390/gen.c (genAnd, genOr),
6806         * src/mcs51/peeph.def,
6807         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6808
6809 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6810
6811         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6812         * src/SDCCdflow.c
6813         * src/SDCCcse.c
6814         * src/SDCCcse.h
6815         * src/SDCCBBlock.h
6816         * src/SDCCBBlock.c
6817
6818 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6819
6820         fixed bug #845089
6821         * src/SDCCbitv.h,
6822         * src/SDCCbitv.c: added function to free a bitvector
6823         * src/SDCClrange.h,
6824         * src/SDCClrange.c: added function to recompute the liveranges
6825         * src/avr/ralloc.c,
6826         * src/ds390/ralloc.c,
6827         * src/hc08/ralloc.c,
6828         * src/mcs51/ralloc.c,
6829         * src/pic/ralloc.c,
6830         * src/pic16/ralloc.c,
6831         * src/xa51/ralloc.c,
6832         * src/z80/ralloc.c: recompute the liveranges after register packing
6833
6834 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6835
6836         * src/SDCCloop.c (newInduction): fixed bug #845630
6837
6838 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6839
6840         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6841         inadvertantly left behind from my 2003-11-12 change
6842
6843 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6844
6845         Updated headers I neglected to commit yesterday.
6846         * src/SDCClrange.h,
6847         * src/SDCCicode.h
6848
6849 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6850
6851         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6852         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6853         * src/SDCCopt.c (eBBlockFromiCode),
6854         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6855         the creation of the key hash table from the sequencing so it can be used
6856         earlier (for some GCSE bug fixes still pending)
6857
6858 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6859
6860         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6861         * support/regression/tests/addsub.c: testing genPlus shortcut
6862
6863 2003-11-15  Borut Razem <borut.razem AT siol.net>
6864
6865         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6866
6867 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6870         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6871         ordering is immaterial.
6872         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6873
6874 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6877         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6878         (SIGSEV) of bug #840381
6879         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6880         unlink new file before rename if new and old filenames are the same)
6881
6882 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6883
6884         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6885         uninitialized variables) for the mcs51. Set environment variable
6886         SDCC_GENRAMCLEAR to test.
6887         xdata initialization slightly shorter
6888
6889 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         * src/SDCCsymt.h,
6892         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6893         #838241 & 780691 (basicly the same bug)
6894         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6895         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6896
6897 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6898
6899         * src/SDCCmain.c (linkEdit): "fix" #834252
6900
6901 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6904         * src/SDCCast.h,
6905         * src/SDCC.y: fixed bug #819403
6906
6907 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6908
6909         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6910         the reentrant attribute.
6911         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6912         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6913         simulation
6914         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6915         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6916         erroneously reduced to a literal.
6917         * src/hc08/ralloc.c (packRegisters, rematStr),
6918         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6919         some cases
6920
6921 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6922
6923         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6924         * doc/sdccman.lyx: changed from 'article' to 'book'
6925         * doc/Makefile: readded test_suite_spec and cdbfileformat
6926
6927 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6928
6929         * device/include/stdlib.h: include malloc.h to comply with ANSI
6930         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6931
6932 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6933
6934         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6935         * doc/clean.mk: also remove *.out files
6936         * doc/sdccman.lyx: some additions, larger top/bottom margins
6937
6938 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * src/SDCC.y: fixed bug #837365
6941         * support/regression/tests/bitopcse.c
6942         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6943         a symbol (might be valop instead)
6944         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6945         * device/lib/clean.mk: added hc08 to the cleaning list
6946
6947 2003-11-04  Borut Razem <borut.razem AT siol.net>
6948
6949         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6950           made 2003-11-04
6951         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6952           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6953           malloc is declared in standard stdlib.h
6954
6955 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         * device/lib/hc08/Makefile: need to clean .rel not .o files
6958         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6959
6960 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6961
6962         * src/port.h,
6963         * src/hc08/main.c,
6964         * src/mcs51/main.c,
6965         * src/ds390/main.c,
6966         * src/z80/main.c,
6967         * src/avr/main.c,
6968         * src/pic/main.c,
6969         * src/pic16/main.c,
6970         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6971         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6972         tests (which uses the port's oclsExpense function)
6973         * src/SDCC.y,
6974         * src/SDCCast.c,
6975         * src/SDCCicode.c,
6976         * src/hc08/gen.c,
6977         * src/ds390/gen.c,
6978         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6979
6980 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         * src/SDCCcse.c (ifxOptimize),
6983         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6984         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6985         deleting the IFX iCode.
6986         * src/hc08/ralloc.c: reduced unneeded slocs
6987         * src/hc08/gen.c: fixed bug in asmopToBoolean
6988
6989 2003-11-04  Borut Razem <borut.razem AT siol.net>
6990
6991         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6992           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6993           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6994           transferred to configure
6995
6996 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         Use headers defined in the C[++] standards:
6999         * sim/ucsim/gui.src/serio.src/fileio.cc
7000         * sim/ucsim/gui.src/serio.src/frontend.cc
7001         * sim/ucsim/gui.src/serio.src/main.cc
7002         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7003         * support/Util/NewAlloc.c
7004         * as/hc08/lklibr.c
7005         * as/mcs51/lklibr.c
7006         * as/z80/aslist.c
7007         * as/z80/assym.c
7008
7009 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7010
7011         * Added MSVC projects for hc08 assembler and linker:
7012         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7013         /as/hc08/link_hc08.dsp
7014
7015 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7016
7017         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7018
7019 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7020
7021         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7022
7023 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7024
7025         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7026
7027 2003-10-31  Borut Razem <borut.razem AT siol.net>
7028
7029         * support/cpp2/cpplib.h,
7030           support/cpp2/cpplib.c,
7031           support/cpp2/cpplex.c,
7032           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7033           to switch _asm block preprocessing on / off. Default is
7034           #pragma preproc_asm +
7035
7036 2003-10-31  Borut Razem <borut.razem AT siol.net>
7037
7038         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7039           when outputting comment blocks (when executed with -C option) and
7040           _asm (SDCPP specific) blocks
7041
7042 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7045
7046 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7047
7048         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7049
7050 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7053         * src/SDCCast.c (decorateType): fixed bug #832664
7054
7055 2003-10-31  Borut Razem <borut.razem AT siol.net>
7056
7057         * support\cpp2\cpplex.c: fixed for SDCPP:
7058           comments(when executed with -C option) and _asm blocks
7059           were included even if they where in skipped #if block.
7060           Applied solution from GCC cpp 3.3.2
7061
7062 2003-10-31  Borut Razem <borut.razem AT siol.net>
7063
7064         * src/SDCC.lex: sdcc now understands both formats:
7065           '# <line_number> <file_name>' and
7066           '#line <line_number> <file_name>'
7067         * support/cpp2/cppmain.c: sdcpp now generates the standard
7068           '# <line_number> <file_name>' instead of former
7069           '#line <line_number> <file_name>'
7070
7071 2003-10-30  Borut Razem <borut.razem AT siol.net>
7072
7073         * support/cpp2/cpphash.h,
7074         * support/cpp2/cpplib.h
7075         * support/cpp2/cpplex.c,
7076         * support/cpp2/cppmain.c,
7077         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7078
7079 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7080
7081         Fixed a number of problems revealed by bug #827883.
7082         * src/SDCCloop.c (loopInvariants): Spill location of the
7083         result operand should be recomputed if extracted from
7084         a loop. Also, don't extract assignments of an iTemp
7085         from a literal.
7086         * src/SDCCast.c (isConformingBody): loop reversal should
7087         not occur if the control variable is involved with a
7088         relational operator.
7089
7090 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7091
7092         * .version: bumped to 2.3.6 to reflect the big improvements
7093         made by Erik and Klaus. Thanks!
7094
7095 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7096
7097         Replaced the livrange code.
7098         * src/SDCClrange.c: added new LR code
7099         * src/SDCCloop.c,
7100         * src/SDCCBBlock.h: removed remainig parts from old LR code
7101         * src/ds390/ralloc.c,
7102         * src/ds390/gen.c: minor fixes to make it work with new code
7103
7104 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7105
7106         * as/hc08/asm.h,
7107         * as/hc08/lkrloc.c,
7108         * src/hc08/gen.c,
7109         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7110         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7111         (tweaked fix for bug #818696)
7112
7113 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7114
7115         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7116
7117 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7118
7119         * src/SDCCmain.c,
7120         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7121         * src/mcs51/gen.c (gencjneshort),
7122         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7123         more efficient (per Scott Bronson's suggestion)
7124
7125 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7126
7127         Extended the semantics of the critical keyword to include
7128         individual statements. See RFE #827755 and #799831
7129         * src/SDCC.y
7130         * src/SDCCicode.c
7131         * src/SDCCopt.c
7132         * src/SDCCast.c
7133         * support/Util/SDCCerr.c
7134         * support/Util/SDCCerr.h
7135         * src/mcs51/gen.c
7136         * src/ds390/gen.c
7137         * src/hc08/gen.c
7138
7139 2003-10-19  Borut Razem <borut.razem AT siol.net>
7140
7141         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7142
7143 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7146         Fixed bug #818696
7147         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7148         and predecrement operand is displayed
7149
7150 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7151
7152         * src/SDCCval.c (valMinus): fixed bug #826041
7153
7154 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7155
7156         Some hc08 related updates that I missed earlier
7157         * sim/ucsim/stypes.h
7158         * support/regression/ports/hc08/spec.mk
7159
7160 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7161
7162         New target "hc08" for the Motorola 68hc08 family of micros
7163
7164         * configure
7165         * configure.in
7166         * Makefile
7167         * src/hc08/*
7168         * src/SDCCmain.c
7169         * src/port.h
7170         * sim/ucsim/hc08.src/*
7171         * sim/ucsim/configure.in
7172         * src/ucsim/configure
7173         * sim/ucsim/packages_in.mk
7174         * as/hc08/*
7175         * as/Makefile
7176         * device/include/mc68hc908qy.h
7177         * device/lib/hc08/*
7178         * device/lib/Makefile.in
7179         * support/regression/ports/hc08/*
7180         * support/regression/Makefile
7181
7182 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7183
7184         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7185         regression test
7186         * src/ds390/gen.c (genCast): fixed bug #821957
7187
7188 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7189
7190         * device/lib/logf.c: "fixed" overlay bug
7191         * support/regression/ports/host/spec.mk: added m library
7192         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7193         * support/regression/tests/float_trans: added (for Eric)
7194
7195 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * src/mcs51/gen.c (genCpl): fixed bug
7198         http://sf.net/mailarchive/message.php?msg_id=6263915
7199
7200 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7201
7202         * src/SDCCast.c (decorateType): added extended constant folding
7203         * src/SDCCsymt.c (computeType): cleanup
7204         * src/SDCCval.c (valShift): minor optimization
7205         * support/regression/tests/ast_constant_folding.c: added
7206
7207 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7208
7209         * src/SDCCmain.c: removed some unintended changes
7210
7211 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7212
7213         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7214         * src/z80/gen.c: fixed part of bug #817589
7215         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7216
7217 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7218
7219         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7220         * src/SDCCcflow.c
7221         * src/SDCCcse.c
7222         * src/SDCCdflow.c
7223         * src/SDCClabel.c
7224         * src/SDCClrange.c
7225         * src/SDCCmem.c
7226         * src/SDCCopt.c
7227         * src/SDCCpeeph.c
7228         * src/SDCCset.c
7229         * src/avr/ralloc.c
7230         * src/ds390/ralloc.c
7231         * src/izt/ralloc.c
7232         * src/mcs51/ralloc.c
7233         * src/pic/ralloc.c
7234         * src/pic16/ralloc.c
7235         * src/xa51/ralloc.c
7236         * src/z80/ralloc.c
7237         * src/z80/gen.c: removed unused label "release:"
7238
7239 2003-10-06  Borut Razem <borut.razem AT siol.net>
7240
7241         * src/SDCC.lex: removed definition of unused variables
7242           save_optimize and save_options
7243
7244 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7245
7246         * clean.mk: removed '=' in "-maxdepth=1"
7247         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7248         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7249
7250 2003-10-06  Borut Razem <borut.razem AT siol.net>
7251
7252         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7253           my_unput() replaced by unput()
7254
7255 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7256
7257         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7258         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7259         type-punned pointer will break strict-aliasing rules"
7260         Old LR behaviour is again default; Klaus' LR can be choosen by
7261         defining the environment variable LRKLAUS
7262         * src/SDCCBBlock.h
7263         * src/SDCCloop.c
7264         * src/SDCClrange.c
7265         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7266         * clean.mk: fixed removal of files in bin/CVS/
7267         * device/lib/clean.mk: fixed removal of directories small and large
7268         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7269         * src/SDCCicode.c,
7270         * src/SDCCval.c: removed superflous test for pedantic
7271
7272 2003-10-05  Borut Razem <borut.razem AT siol.net>
7273
7274         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7275           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7276           message "unmatched #pragma SAVE and #pragma RESTORE"
7277
7278 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7279
7280         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7281           assembly, critical functions, atomic, nojtbound)
7282
7283 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7284
7285         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7286         * src/SDCCBBlock.h
7287         * src/SDCCloop.c
7288         * src/SDCCloop.h
7289         * src/SDCClrange.c
7290
7291 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7292
7293         * src/z80/gen.h,
7294         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7295         * src/mcs51/gen.h
7296         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7297         * src/ds390/gen.h
7298         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7299         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7300         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7301
7302 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7303
7304         * src/z80/gen.c (genRet): fixed bug #524753
7305         * src/z80/gen.c (genCast): fixed internal error on cast from
7306         pointer to long
7307         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7308         fix for bug #477835 to the z80
7309         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7310         for tracking iCodes in the peephole optimizer for z80
7311
7312 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7313
7314         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7315         the other part of bug #814548
7316         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7317
7318 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7319
7320         * src/SDCCcse.c: fixed part of bug #814548
7321
7322 2003-09-28  Borut Razem <borut.razem AT siol.net>
7323
7324         * src/asm.c: rewrite of printILine() to use temporary file instead
7325           a pipe
7326         * src/xa51/main.c: commented out declaration of int rewinds
7327
7328 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7329
7330         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7331
7332 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7333
7334         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7335         * src/asm.c (printILine): Fixed bug #811015
7336
7337 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7338
7339         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7340         freeing.
7341
7342 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7343
7344         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7345         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7346         to correctly handle general case of AOP_PAIRPTR
7347         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7348
7349 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7350
7351         * src/mcs51/ralloc.c (fillGaps),
7352         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7353         register positioning bug)
7354
7355 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7358
7359 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7360
7361         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7362         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7363         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7364         (ralloc doesn't intentionally do this now, but perhaps later)
7365         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7366         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7367         register positioning bugs (Fixed bug #762602 and #795325)
7368         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7369         (Fixed bug #808779)
7370         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7371         lines that --i-code-in-asm generates
7372
7373 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7374
7375         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7376         trying to fclose a FILE* that was already closed.
7377
7378 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7379
7380         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7381         of const struct should be treated as if const themselves)
7382
7383 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7386
7387 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7388
7389         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7390         Unix (/n) and DOS (/r/n) line terminations.
7391
7392 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7393
7394         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7395         bug #613775
7396
7397 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7398
7399         * src/mcs51/gen.c (genFunction, genEndFunction),
7400         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7401         and restore of EA so that stack offsets to parameters are
7402         correct when using both critical and reentrant/stack-auto.
7403         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7404         size (can be triggered in error if sloc is shared between
7405         different sized objects)
7406         * device/include/float.h: fixed macros to explicitly use
7407         unsigned long where needed
7408
7409 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7410
7411         Feature req. 799831: added code to allow nesting of critical functions
7412         * src/mcs51/gen.c (genFunction, genEndFunction)
7413         * src/ds390/gen.c (genFunction, genEndFunction)
7414
7415 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7416
7417         * src/SDCCsymt.c (sclsFromPtr),
7418         * src/SDCCsymt.h,
7419         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7420         support for standard C idiom of memory mapped variables; for
7421         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7422         to xdata int at 0x1234 tempvar = 1.
7423         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7424         provided by Akiya ISHIDA
7425
7426 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7429         * src/SDCCval.c (constVal): added reduction from int to char
7430         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7431         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7432         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7433         to ignore the sign
7434         * support/regression/tests/shifts.c: fixed
7435
7436 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7437
7438         * src/z80/gen.c (genXor): Fixed bug #805445
7439
7440 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7441
7442         Fixed bug #621531 (const & volatile confusion in the type chain).
7443         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7444         refer to the const or volatile state of the pointer itself.
7445
7446         * src/SDCCast.c
7447         * src/SDCCglue.c
7448         * src/SDCCicode.c
7449         * src/SDCCsymt.c
7450         * src/SDCCval.c
7451         * src/SDCC.y
7452         * src/SDCCsymt.h
7453         * src/pic/gen.c
7454         * src/pic/ralloc.c
7455         * src/pic16/gen.c
7456         * src/pic16/ralloc.c
7457         * support/regression/tests/const.c
7458
7459 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7460
7461         When checking for duplicated modules, use absolute paths
7462         instead of relative paths.  Files changed:
7463
7464         * as/mcs51/lklib.c
7465         * link/z80/lklib.c
7466
7467 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7470
7471 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7472
7473         * device/include/string.h: added size_t typedef, changed
7474         prototypes to use size_t, eliminated separate reentrant and
7475         non-reentrant declarations, added _memmove declaration
7476         * device/lib/_memcpy.c: changed to use size_t instead of int,
7477         changed /4 to >>2 to avoid division library call
7478         * device/lib/_memcmp.c,
7479         * device/lib/_memset.c,
7480         * device/lib/_strncat.c,
7481         * device/lib/_strncpy.c,
7482         * device/lib/_strncmp.c: changed to use size_t instead of int
7483         * device/lib/_memmove.c: new file (fixed bug #772294)
7484         * device/lib/Makefile.in: added _memmove.c
7485         * device/lib/z80/asm_strings.s: fixed bug #772290
7486         * support/regression/tests/bitfields.c: attempt to fix host assertion
7487         failure on amd64-unknown-linux2.2
7488
7489 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7490
7491         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7492         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7493         * as/z80/asmain.c (main): fixed bug #801766
7494
7495 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7498         compilers
7499
7500 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7501
7502         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7503         reported in bug #800609
7504
7505 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7506
7507         * Top header beautifications in src/pic16 directory:
7508           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7509           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7510           pcoderegs.h, ralloc.c, ralloc.h
7511         * main.c: added top header and GPL license notice
7512         * pcode.c: fixed the if-conditional warning
7513
7514 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7515
7516         * device/lib/_mullong.c: replaced int by short for gcc
7517
7518 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7521         and JUMPTABLE iCodes properly now (worked by accident before)
7522         * src/mcs51/gen.c (leftRightUseAcc),
7523         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7524         iCode properly now. Use getSize instead of nRegs since a & b
7525         aren't part of the nRegs tally.
7526
7527 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7528
7529         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7530         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7531           before instructions that use the _STATUS register
7532
7533 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7534
7535         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7536         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7537         fetching of the pointer
7538         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7539         copied from genNearPointerSet()
7540         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7541         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7542         If they pop r0/r1 they must be called in the opposite order than aopOp().
7543         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7544         (resp. --stack-auto), prepared for --xstack
7545
7546 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7547
7548         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7549
7550 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7551
7552         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7553         these ports have their own __sdcc_external_start()
7554
7555 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7558         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7559         type for bits was changed. It resulted in bit variables becoming
7560         global, which is not permitted in PIC 14 assembly output.
7561
7562 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7563
7564         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7565
7566 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7567
7568         Z80 and MCS51 linkers complaint if a public symbol is defined
7569         in more than one library module:
7570
7571         * as/mcs51/lklib.c
7572         * link/z80/lklib.c
7573         * as/mcs51/Makefile.in
7574
7575 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7576
7577         A few small changes that speed up the peephole optimizer.
7578
7579         * src/SDCCpeeph.c
7580
7581 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7582
7583         Try to make the peephole optimizer smarter by maintaining
7584         an association between the assembly source code and the
7585         iCodes that originated them. Put this information to use
7586         with a new peephole rule condition "notVolatile" so that
7587         the rules can be aggressive yet still safe.
7588
7589         * src/SDCCpeeph.c
7590         * src/SDCCpeeph.h
7591         * src/mcs51/gen.c
7592         * src/mcs51/peeph.def
7593
7594 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7595
7596         Fixed bug #741761
7597
7598         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7599         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7600         if the left or right operand symbols have the accuse flag set.
7601
7602 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7603
7604         Changed the type of the result of the ! (NOT) operator to char;
7605         previously it returned the same type as the source. This allows
7606         us to eliminate all the genFloatNot functions (all of its target
7607         implementations were very buggy) since !float can use the same
7608         code as !long now.
7609
7610         * src/SDCCicode.c (ast2iCode): ! returns char
7611         * src/mcs51/gen.c (genNot, genNotFloat),
7612         * src/ds390/gen.c (genNot, genNotFloat),
7613         * src/z80/gen.c (genNot, genNotFloat),
7614         * src/pic/gen.c (genNot, genNotFloat),
7615         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7616
7617 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7618
7619         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7620         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7621            during interrupts. Ensure WSAVE is located at a shared bank address.
7622         2. Fixed page selection in some places
7623         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7624            the registers name strings.
7625         4. Fixed "signed / unsigned compare" compiler warnings.
7626         5. The PIC port manages its own allocation of the general purpose
7627            registers, but makes no attempt to reuse them. As a result when
7628            compiling it soon runs out of general purpose registers. Some
7629            additional code was added to the files pcode.c and device.c to walk
7630            through the function call tree and rename the registers so that they
7631            get reused.
7632
7633         * src/pic/device.c
7634         * src/pic/gen.c
7635         * src/pic/glue.c
7636         * src/pic/pcode.c
7637         * src/pic/pcode.h
7638         * src/pic/ralloc.c
7639         * src/pic/ralloc.h
7640         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7641         genPlus() & genMinus() when the result is the same as left or right
7642
7643 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7646
7647 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7648
7649         Made bitfield a distinct type from bit so that bitfields
7650         convert as per ANSI C and bits retain their traditional
7651         boolean style behaviour. Implemented bitfield support in
7652         the z80 port.
7653
7654         * src/SDCCsymt.h,
7655         * src/SDCCsymt.c,
7656         * src/SDCCast.c,
7657         * src/cdbFile.c,
7658         * src/mcs51/gen.c,
7659         * src/ds390/gen.c: bit v bitfield split
7660         * src/z80/gen.c: New support for bitfields
7661         * support/regression/tests/bitfields.c: reenabled z80,
7662         added more tests
7663
7664 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7665
7666         Rules 246.x, 247.x relate to bitfields, the others speed up
7667         access to xdata mapped I/O devices.
7668
7669         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7670
7671 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7672
7673         Cleaned up genPackBits and genUnpackBits and added two helper
7674         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7675         for literal assignments in genPackBits (thanks to Frieder for
7676         reminding me).
7677
7678         * src/mcs51/gen.c
7679         * src/ds390/gen.c
7680
7681 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7682
7683         Fixed bug #748310 (pointer to function type mishandled when the
7684         function name is omitted). Also fixed a SIGSEGV when a function
7685         attribute (reentrant, etc) is used on a non-function or on a
7686         function but misplaced before the parameter list.
7687
7688         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7689         bug #748310
7690         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7691         * support/Util/SDCCerr.h,
7692         * support/Util/SDCCerr.c: Added func attr misuse error msg
7693
7694 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7695
7696         Fixed bug #787649 by anonymous
7697         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7698         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7699
7700 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7701
7702         Fixed numerous bitfield problems.
7703
7704         * src/SDCC.y: More bitfield related error checking
7705         * src/SDCCsymt.h,
7706         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7707         * support/Util/SDCCerr.h,
7708         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7709         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7710         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7711         * support/regression/tests/bitfields.c: tests added
7712
7713 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7714
7715         Made the constant following the "interrupt" keyword optional. If
7716         omitted, the function will not automatically be given an entry
7717         in the interrupt vector table (similar to #pragma NOIV, but
7718         less syntacticly kludgy). The interrupt number is also now
7719         range checked. Also fixed a bug in the high order bit example
7720         in the manual.
7721
7722         * src/SDCC.y
7723         * src/SDCCmem.c
7724         * src/SDCCglue.c
7725         * src/SDCCsymt.h
7726         * support/Util/SDCCerr.c
7727         * support/Util/SDCCerr.h
7728         * doc/sdccman.lyx
7729
7730 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7733         * src/SDCCicode.c (operandOperation): rewritten some ops
7734         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7735         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7736         other type
7737         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7738         be re-activated by defining REDUCE_LITERALS)
7739         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7740         unsigned, but are signed by default
7741         * src/SDCCval.c (constVal): rearranged
7742         * src/SDCCval.c (valMod): preliminary fix
7743         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7744         * support/regression/literalop.c: added, work in progress
7745
7746 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7747
7748         Generate warnings for useless declarations like "char data;"
7749         that don't do what new users expect.
7750
7751         * src/SDCC.y
7752         * support/Util/SDCCerr.h
7753         * support/Util/SDCCerr.c
7754
7755 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7756
7757         * src/SDCCval.c (valMult): fix overflow detection of negative int
7758
7759 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7760
7761         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7762
7763         Changes to support big endian targets:
7764
7765         * src/ports.h
7766         * src/SDCCglue.c
7767         * src/avr/main.c
7768         * src/ds390/main.c
7769         * src/izt/i186.c
7770         * src/mcs51/main.c
7771         * src/pic/main.c
7772         * src/pic16/main.c
7773         * src/xa51/main.c
7774         * src/z80/main.c
7775
7776 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7777
7778         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7779         * device/lib/time.c: fixed warning "integer overflow in expression"
7780
7781 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7782
7783         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7784         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7785         constants are unsigned; added recognition of "u" flag for unsigned
7786         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7787         * src/SDCCval.c (valDiv, valMod): fixed signdness
7788         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7789         signedness of modulo, left and right shift
7790         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7791         * support/Util/SDCCerr.h: added warning W_INT_OVL
7792         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7793         * src/SDCCast.c (ast_print): improved output of constants
7794
7795 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7796
7797         Fixed some warnings when building with MSVC:
7798
7799         * as\mcs51\asdata.c
7800         * as\z80\asdata.c
7801         * as\mcs51\asm.h
7802         * as\z80\asm.h
7803         * link\z80\aslink.h
7804         * link\z80\lkdata.c
7805         * link\z80\lkeval.c
7806         * link\z80\lkgb.c
7807         * link\z80\lkihx.c
7808         * link\z80\lks19.c
7809         * link\z80\lksym.c
7810         * support\cpp2\cpplib.c
7811         * src\ds390\gen.c
7812         * src\mcs51\gen.c
7813
7814 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7815
7816         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7817
7818 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7819
7820         * support\librarian\clean.mk: Do not remove Makefile.
7821         * support\librarian\Makefile: added.
7822
7823 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7824
7825         Added librarian to MSVC build:
7826         * all.dsp
7827         * sdcc.dsw
7828         * support\librarian\librarian.dsp
7829
7830         'configure' not needed for librarian, removed:
7831         * support\librarian\configure
7832         * support\librarian\configure.in
7833         * support\librarian\config_in.h
7834         * support\librarian\Makefile.in
7835
7836         Hopefully these ones built the librarian and the rest of sdcc properly:
7837         * Makefile
7838         * Makefile.common.in
7839
7840         Messed up 'configure', so revert to previous version:
7841         * configure
7842         * configure.in
7843
7844 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7845
7846         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7847         there, while the mantissa of a double is "only" 53 bits wide.
7848
7849 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7850
7851         Adding sdcclib to the build.  MSVC project coming soon.
7852         Files added/changed:
7853
7854         * support\librarian\clean.mk
7855         * support\librarian\configure
7856         * support\librarian\configure.in
7857         * support\librarian\config_in.h
7858         * support\librarian\Makefile.bcc
7859         * support\librarian\Makefile.in
7860         * support\librarian\sdcclib.c
7861         * Makefile.bcc
7862         * Makefile
7863         * Makefile.common.in
7864         * configure
7865         * configure.in
7866
7867 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7868
7869         Linker now complaints if linked modules have conflicting options, for
7870         example, one compiled using --model-large and another one compiled with
7871         --model-small.  The following files were modified:
7872
7873         * as\mcs51\asdata.c
7874         * as\mcs51\aslink.h
7875         * as\mcs51\asm.h
7876         * as\mcs51\asmain.c
7877         * as\mcs51\asout.c
7878         * as\mcs51\i51pst.c
7879         * as\mcs51\lkdata.c
7880         * as\mcs51\lklibr.c
7881         * as\mcs51\lkmain.c
7882         * as\z80\asdata.c
7883         * as\z80\asm.h
7884         * as\z80\asmain.c
7885         * as\z80\asout.c
7886         * as\z80\z80pst.c
7887         * link\z80\aslink.h
7888         * link\z80\lkdata.c
7889         * link\z80\lklibr.c
7890         * link\z80\lkmain.c
7891         * src\SDCCglue.c
7892
7893 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7894
7895         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7896         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7897
7898 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7899
7900         * src/z80/mappings.i: fix _mul[us][int,long] entries
7901
7902 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7903
7904         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7905
7906 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7907
7908         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7909         * support/regression/tests/bitopcse.c: added
7910         fixed warning:
7911         * src/avr/gen.c:
7912         * src/pic/gen.c:
7913         * src/pic16/gen.c:
7914         * src/z80/gen.c:
7915         * src/xa51/gen.c:
7916
7917 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7918
7919         added support for new library format to z80, gbz80 linkers:
7920         *link/z80/aslink.h
7921         *link/z80/lklex.c
7922         *link/z80/lklib.c
7923         *link/z80/lklist.c
7924
7925 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7926
7927         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7928         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7929
7930 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7931
7932         added DUMMY_READ_VOLATILE:
7933         * src/SDCC.y:
7934         * src/avr/gen.c:
7935         * src/xa51/gen.c:
7936         * src/z80/gen.c:
7937         * src/pic/gen.c:
7938         * src/pic16/gen.c:
7939         * src/mcs51/gen.c:
7940         * src/ds390/gen.c:
7941         * src/SDCCcse.c (algebraicOpts): many improvements
7942         * src/SDCCcse.h: removed algebraicOpts()
7943         * src/SDCCicode.c (picDummyRead): added
7944
7945 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7946
7947         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7948         "Insufficient space in data memory".
7949
7950 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7951
7952         * src/mcs51/gen.c: fixed bug #771358
7953         * src/z80/gen.c: fixed bug #759087
7954
7955 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7956
7957         * src/pic16/glue.c: minor cleanup by Vangelis
7958
7959 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7960
7961         * device/include/regc515c.h: fixed #758477
7962         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7963         * device/lib/_gptrput.c: saved a few bytes
7964         * my tab spacing is 8, yours too?)
7965         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7966         * device/lib/serial.c: process RX bytes earlier than TX bytes
7967         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7968
7969 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7970
7971         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7972
7973 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7974
7975     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7976
7977 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7978
7979         * device/lib/Makefile.in: bad fix, reverted to 1.43
7980
7981 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7982
7983         * device/lib/Makefile.in: added missing z80 object files
7984
7985 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7986
7987         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7988         pic16 progress by Vangelis:
7989         * src/SDCCglobl.h:
7990         * src/SDCCmain.c:
7991         * src/pic/Makefile:
7992         * src/pic:
7993         * pic/Makefile:
7994         * pic16/device.c:
7995         * pic16/device.h:
7996         * pic16/gen.c:
7997         * pic16/gen.h:
7998         * pic16/genarith.c:
7999         * pic16/glue.c:
8000         * pic16/main.c:
8001         * pic16/pcode.c:
8002         * pic16/pcode.h:
8003         * pic16/pcodepeep.c:
8004         * pic16/peeph.def:
8005
8006 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8007
8008     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8009
8010 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8011
8012     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8013     added gbz80 build to MSVC project.
8014     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8015     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8016     from 8051 stuff and setup so it links using a .lnk file.
8017
8018 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8019
8020     * support/librarian/sdcclib.c: sdcc librarian.
8021     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8022     with sdcclib.
8023
8024 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8025
8026     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8027
8028 2003-07-02  Borut Razem <borut.razem AT siol.net>
8029
8030         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8031         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8032         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8033         src/xa51/main.c, src/z80/main.c:
8034         virtualization of glue() function: each port has it's own glue function,
8035         which is accessed by do_glue function pointer in PORT.general structure
8036
8037 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8038
8039         * DS800C400 fun, improved ROM interface and tinibios.
8040
8041 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8042
8043         * More support for DS80C400. Now includes beginning of interface to ROM.
8044
8045 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8048
8049 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8050
8051         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8052
8053 2003-06-19  Borut Razem <borut.razem AT siol.net>
8054
8055         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8056
8057 2003-06-19  Borut Razem <borut.razem AT siol.net>
8058
8059         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8060         fixed Z80 port - crt0.o: cannot open.
8061
8062 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         * support/Util/MySystem.c (merge_command): revert bad fix
8065
8066 2003-06-18  Borut Razem <borut.razem AT siol.net>
8067
8068         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8069
8070 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8071
8072         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8073         option --use-stdout sends errors to stdout instead of stderr.
8074
8075 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8076
8077         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8078
8079 2003-06-15  Borut Razem <borut.razem AT siol.net>
8080
8081         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8082         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8083         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8084         fixed width array of pointers replaced with sets;
8085         multiple include and lib paths ared transferred to preprocessor and linker
8086         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8087         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8088         fixed width array of pointers
8089         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8090         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8091         fixupPath(), getPathDifference()
8092         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8093         fixed width array of pointers
8094
8095 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8096
8097         * src/pic16/ralloc.c: fix warnings
8098         * src/pic16/pcode.c: fix warning
8099
8100 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8101
8102          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8103         know all the details, but essentially this set of changes enable
8104         the pic16 port to generate movff instructions and generate assembler
8105         directives,
8106         * src/SDCCmain.c:
8107         * src/pic16/gen.c:
8108         * src/pic16/glue.c:
8109         * src/pic16/pcode.c:
8110         * src/pic16/device.c:
8111         * src/pic16/main.c:
8112         * src/pic16/pcode.h:
8113         * src/pic16/pcoderegs.c:
8114         * src/pic16/ralloc.c:
8115         * src/pic16/ralloc.h:
8116
8117 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8118
8119         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8120         added option --vc, so sdcc errors and warnings are compatible with
8121         Microsoft Visual Studio.
8122
8123 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8124
8125         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8126           device/lib/libfloat.lib: added atof function.
8127
8128 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * doc/sdccman.lyx: updated to Lyx 1.3
8131         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8132         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8133         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8134
8135 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8138
8139 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8140
8141         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8142           additions to the "related tools/documentation" section
8143
8144 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8145
8146         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8147
8148 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8151         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8152
8153 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * doc/sdccman.lyx: fix double dash and other minor things
8156         * doc/Makefile: fix double dash
8157
8158 2003-05-28  Karl Bongers(patches from Martin Helmling)
8159         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8160           condition and ignore commands.
8161
8162 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8163
8164         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8165           is in parts still quite out of date, I did changes as far as I felt makes sense
8166           for a non-native english speaker.
8167           Please feel free to add to the manual or to correct my changes.
8168         * doc/Makefile: undid touching the date of intermediate tex files.
8169
8170 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8171
8172         * doc/sdccman.lyx: Manual has an index now
8173
8174 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8175
8176         Finalize muluint/mulsint and mululong/mulslong merging:
8177         * device/lib/_mulint.c
8178         * device/lib/_mullong.c
8179         * device/lib/gbz80/mul.s
8180         * device/lib/gbz80/stubs.s
8181         * device/lib/z80/mul.s
8182         * device/lib/z80/stubs.s
8183         * src/SDCCsymt.c (initCSupport)
8184
8185 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8186
8187         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8188         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8189           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8190           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8191           instead of /Zm500.
8192
8193 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8194
8195         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8196           the regression tests I'm not brave enough to enable 245.b, 245.c
8197         * doc/sdccman.lyx: added latex preamble for hyperref package.
8198           Using pdflatex this will give you a hyperlinked pdf file with
8199           bookmarks. (prepend '%' before /usepackage if this breaks something)
8200
8201 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8202
8203          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8204
8205 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8206
8207         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8208
8209 2003-05-21    <johan AT balder>
8210
8211         * src/SDCCglue.c (printIval): fixed bug #739934
8212
8213 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8214
8215         Applied patch from bug 737905 (renamed yylineo to mylineno):
8216         * src/altlex.c
8217         * src/SDCCast.c
8218         * src/SDCglobl.h
8219         * src/SDCC.lex
8220         * src/SDCCsymt.c
8221         * src/SDCCval.c
8222         * src/pic16/pcode.c: Cleaned warnings
8223         * src/pic16/pcodeflow.c: Cleaned warnings
8224         * src/pic16/pcoderegs.c: Cleaned warnings
8225
8226 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8227
8228         * src/pic16/pcode.c: Cleaned warnings
8229         * src/pic16/pcodepeep.c: Cleaned warnings
8230         * src/pic16/ralloc.c: Cleaned warnings
8231
8232 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8233
8234         * doc/sdccman.lyx: fixed bug 739745
8235         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8236
8237 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8238
8239         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8240         it can be defined with CFLAGS when running configure
8241         * src/SDCCmain.c: fixed compiling + linking with object files
8242
8243 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8244
8245         * configure.in: configure for pic16 port,
8246             added --disable-pic16-port
8247         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8248         * src/SDCCmain.c: linkOptions is changed to set *,
8249             added if/endif conditional macros to remove options help
8250             messages from optionsTable when a port is not configured, added
8251             support for the PIc16 port in the ports table, when executing
8252             the compiler with no port specified on command line, a default
8253             port is selected with the new macro DEFAULT_PORT which is
8254             defined in port.h, in setDefaultOptions() linkOptions is removed
8255             from initialization assignment, since now it is a set,
8256             parseCmdLine uses setParseWithComma for linkOptions, in
8257             linkEdit() linkOptions are accessed with new function indexSet()
8258             which returns the i'th item of a set variable. See SDCCset.c, in
8259             linkEdit() when calling buildCmdLine(), added linkOptions as
8260             last argument. Now users can pass arguments to gplink via the
8261             -Wl option, main() uses pic16glue() to glue up pic16 programs
8262         * src/SDCCpeeph.c: various changes to support pic16
8263         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8264             return the i'th item of the set
8265         * src/SDCCset.h: added function prototype for indexSet()
8266         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8267         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8268         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8269             added macro DEFAULT_PORT
8270         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8271         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8272             generated
8273         * src/pic16/glue.c: commented out some error producing lines
8274         * src/pic16/main.c: __config directives are commented out to stop
8275             gpasm complaining and test the linkage with gplink, _linkCmd and
8276             _asmCmd changed to be more gplink and gpasm friendly
8277         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8278             produced an error when parsed, peep rule 12 is added to utilize
8279             movff, but it is commented out since the pCode does not support
8280             yet a command with 2 address arguments
8281
8282 2003-05-18    <johan AT balder>
8283
8284         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8285         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8286 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8287
8288         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8289   Added feature to script commands from file.
8290
8291 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8292
8293         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8294         * src/SDCCutil.c: include ctype.h for win32
8295
8296 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8297
8298         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8299
8300 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8301
8302         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8303   Fixed so you can set breakpoints prior to run, run does not stop
8304   on entry now.  Add tbreak.  Other enhancements and fixes for use
8305   with ddd.
8306
8307 2003-05-12  Borut Razem <borut.razem AT siol.net>
8308
8309         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8310
8311 2003-05-11  Borut Razem <borut.razem AT siol.net>
8312
8313         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8314         the path of bin directory, so that PATH is the only env. variable, which has to be set
8315         in case of standard installation.
8316         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8317         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8318         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8319
8320 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8323         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8324         temp files are in the port dir; clean the gen/test directory when
8325         generating new test.c
8326         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8327         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8328         * support/regression/tests/zeropad.c: added
8329
8330 2003-05-09    <johan AT balder>
8331
8332         * src/SDCCglue.c: fixed bug #597940
8333
8334 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8335
8336         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8337   cache sfr, optimize next,step, fix off by one sourceline,
8338   support ddd list function.
8339         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8340
8341 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8342
8343         * support/regression/HTMLgen.py: added compare_s2f()
8344         * support/regression/Makefile: redo 1.27
8345         * support/regression/generate-cases.py: redo 1.5
8346
8347 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8348
8349         * support/regression/tests/float.c: workaround 33 bit hex constant
8350         * support/regression/tests/simplefloat.c: fix division for host
8351
8352 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8353
8354         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8355         that tame's the PIC's over-aggressive optimizer.
8356
8357 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8358
8359          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8360          support for MSVC.
8361
8362 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8363
8364         Initial support for DS80C400. "Hello world" runs on TINIm400
8365         (with polled I/O).
8366
8367 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8368
8369          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8370          * Some notes on ddd usage added in debugger/README
8371          Martin Helmling adding more features and fixes for ddd GUI debugger.
8372          Code added for nexti, stepi, up, down, and other adjustments.
8373
8374 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8375
8376         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8377         * src/pic/peeph.def Added two rules to optimize carry manipulation
8378         * src/pic/* removed debug printfs
8379
8380 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8381
8382         * debugger/mcs51/cmd.c: added header newalloc.h
8383
8384 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         * as/Makefile: new EXEEXT
8387         * as/z80/Makefile: remove trailing slash of BUILDIR
8388         * as/z80/clean.mk: new EXEEXT
8389         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8390         * support/cpp2/Makefile.in: new EXEEXT
8391         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8392
8393 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8396         EXEEXT was introduced to fix all related problems with targets
8397         "clean", "install" and "uninstall"; a couple of further flaws
8398         especially with "clean" have been fixed too
8399         * as/mcs51/Makefile.in
8400         * as/mcs51/clean.mk
8401         * as/z80/Makefile
8402         * Makefile
8403         * clean.mk
8404         * debugger/mcs51/Makefile.in
8405         * debugger/mcs51/clean.mk
8406         * link/z80/Makefile
8407         * link/z80/Makefile.in
8408         * link/z80/clean.mk
8409         * link/Makefile
8410         * packihx/Makefile.in
8411         * packihx/clean.mk
8412         * sim/ucsim/Makefile
8413         * sim/ucsim/clean.mk
8414         * sim/ucsim/avr.src/Makefile.in
8415         * sim/ucsim/avr.src/clean.mk
8416         * sim/ucsim/s51.src/Makefile.in
8417         * sim/ucsim/s51.src/clean.mk
8418         * sim/ucsim/xa.src/Makefile.in
8419         * sim/ucsim/xa.src/clean.mk
8420         * sim/ucsim/z80.src/Makefile.in
8421         * sim/ucsim/z80.src/clean.mk
8422         * sim/ucsim/main_in.mk
8423         * sim/ucsim/packages_in.mk
8424         * sim/ucsim/gui.src/Makefile.in
8425         * sim/ucsim/gui.src/serio.src/Makefile.in
8426         * sim/ucsim/gui.src/serio.src/clean.mk
8427         * src/Makefile.in
8428         * src/clean.mk
8429         * support/cpp2/Makefile.in
8430         * support/cpp2/clean.mk
8431         * support/makebin/Makefile
8432         * support/makebin/clean.mk
8433         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8434         * doc/sdccman.lyx: --program-suffix no longer needed
8435
8436 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8437
8438          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8439          Martin Helmling added support for ddd GUI debugger.
8440          Code added to display assembly, set variables, and other commands
8441          to interface to ddd.
8442
8443 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8444
8445         * as/Makefile: fix target clean
8446         * as/clean.mk: fix target clean
8447         * as/z80/clean.mk: fix target clean
8448
8449 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8450
8451         * Makefile.common.in: added  AT EXEEXT AT
8452         * configure.in: removed all mingw32 stuff
8453         * configure: rebuilt from configure.in
8454         * doc/sdccman.lyx: updated section "installation"
8455         * support/scripts/sdcc_mingw32: adapted to configure
8456         * support/scripts/sdcc_cygwin_mingw32: added
8457
8458 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8459
8460         * src/pic Added object file support for the PIC port
8461         * src/pic Applied patch from Craig Franklin (this started the object file support)
8462         * src/regression Updated the PIC regression tests for object files
8463
8464 2003-04-20  Borut Razem <borut.razem AT siol.net>
8465
8466         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8467           lklex.c: In function `getfid':
8468           lklex.c:203: warning: array subscript has type `char'
8469         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8470           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8471         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8472           stack handling macros
8473
8474 2003-04-19  Borut Razem <borut.razem AT siol.net>
8475
8476         * "handling space characters in file path" task:
8477         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8478         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8479         * support/Util/MySystem.h: make it self-sufficient
8480         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8481           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8482           handling space characters in file path
8483         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8484           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8485         * support/Util/MySystem.c: handling space characters in executable's path
8486
8487 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         * as/z80/Makefile: fix permanent rebuild of z80
8490         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8491         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8492
8493 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8494
8495         * src/SDCCopt.c: add special case optimization to replace modulo by
8496           a power of two with a bitwise AND.
8497
8498 2003-04-18    <johan AT balder>
8499
8500         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8501
8502 2003-04-17    <johan AT balder>
8503
8504         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8505         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8506
8507 2003-04-13  Borut Razem <borut.razem AT siol.net>
8508
8509         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8510         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8511           fixed mingw problem in adl_NORMALIZE_PATH
8512
8513 2003-04-12  Borut Razem <borut.razem AT siol.net>
8514
8515         * fixed "#pragma SAVE/RESTORE can not be nested":
8516         * src/SDCC.lex: reworked pragma handling functions
8517         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8518         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8519
8520 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8521
8522         * src/SDCCutil.c (pathEquivalent): defined but not used
8523         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8524         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8525         * configure: rebuilt from configure.in
8526         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8527         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8528         * device/include/Makefile.in: replace sdcc_datadir
8529         * device/lib/Makefile.in: replace sdcc_datadir
8530         * Makefile.common.in: add LDFLAGS from configure
8531         * packihx/Makefile.in: use LDFLAGS
8532         * src/Makefile.in: use LDFLAGS
8533         * support/cpp2/Makefile.in: add LDFLAGS from configure
8534         * support/makebin/Makefile: use LDFLAGS
8535         * .version: bumped version number to 2.3.5
8536
8537 2003-04-12  Borut Razem <borut.razem AT siol.net>
8538
8539         * completed "different paths" task:
8540         * src/SDCCmacro.c: fixed bug in handling quotes
8541         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8542         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8543
8544 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8545
8546         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8547
8548 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8549
8550         * ds390/gen.c ds390/peeph.def: fix bug 706781
8551
8552 2003-04-11  Borut Razem <borut.razem AT siol.net>
8553
8554         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8555
8556 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8557
8558         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8559         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8560          set - this bit used to not be set...).
8561         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8562           bad code in PIC Port
8563         * src/regression/and2.c added to test bug 609268
8564         * src/regression/Makefile added and2.c to regression test
8565
8566
8567 2003-04-08    <johan AT CP255758-A>
8568
8569         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8570         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8571         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8572
8573 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8574
8575         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8576         fix bug #487815
8577         * support/cpp2/Makefile.in: fix bug #487815
8578         * configure: rebuilt from configure.in
8579         * Makefile.common.in: docdir changed, new path suffixes
8580         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8581         * sdcc_vc_in.h: reflect changes from sdccconf.h
8582         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8583         * src/SDCCutil.h: remove BINDIR hack
8584         * doc/sdccman.lyx: update new path hierarchy
8585
8586 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8587
8588         * src/SDCCpeeph.c: added okToRemoveSLOC test
8589
8590 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8591
8592         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8593
8594 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8595
8596         * src/SDCCpeeph.c: added labelIsReturnOnly test
8597         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8598
8599 2003-04-05    <johan AT balder>
8600
8601         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8602         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8603         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8604         * src/SDCCast.c: fixed a warning
8605         * src/SDCCast.h: fixed a warning
8606         * src/SDCCicode.c (operandFromAst): fixed a warning
8607
8608 2003-04-04    <johan AT balder>
8609
8610         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8611         * src/SDCCast.c (decorateType): fixed bug #715076
8612         * src/SDCC.y: fixed bug #702907
8613
8614 2003-04-03    <johan AT balder>
8615
8616         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8617         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8618         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8619         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8620         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8621
8622 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8623
8624         * _decdptr.c: fix return values
8625         * _gptrget.c: fix return values
8626         * _gptrgetc.c: fix return values
8627         * _gptrput.c: fix return values
8628         * _mulint.c: fix return values
8629         * as/z80/Makefile: fix 'make -j' problem
8630
8631 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8632
8633         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8634         * configure.in: big cleanup, updated to autoconf 2.5x
8635         * configure: rebuilt from configure.in
8636         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8637         * sdcc_vc_in.h: reflect changes from sdccconf.h
8638         * doc/Makefile: fixed a flaw in "make install"
8639
8640 2003-04-02    <johan AT balder>
8641
8642         * src/ds390/gen.c (genCmp): no comments
8643         * src/mcs51/gen.c (genCmp): no comments
8644         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8645         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8646
8647 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8648
8649         * support/regression/generate-cases.py: place generated file in given sub directory
8650         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8651         * support/regression/Makefile: improvements for 'make -j';
8652         side effect: it's simpler and faster now
8653
8654 2003-03-31  Borut Razem <borut.razem AT siol.net>
8655
8656         * src/z80/main.c: link-{port} and as-{port} defined without path
8657         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8658
8659 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8660
8661         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8662
8663 2003-03-30  Borut Razem <borut.razem AT siol.net>
8664
8665         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8666           changed type of list parameter to set
8667         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8668         * src/port.h: changed type of do_assemble() parameter to set
8669         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8670           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8671           definition of "cppoutfilename" macro with NULL value in preProcess()
8672         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8673         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8674         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8675           replaced with set *binPathSet
8676         * shash_add() deallocates the item, if allready exsists, before adding the new one
8677         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8678
8679 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8680
8681         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8682           a nested for loop bug in the PIC port
8683         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8684           for loops
8685
8686 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8687
8688         * support/Util/dbuf.h: remove C++ stuff to make it portable
8689
8690 2003-03-28  Borut Razem <borut.razem AT siol.net>
8691
8692         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8693           literal strings in stringLiteral()
8694         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8695         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8696           to the project
8697
8698 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8699
8700         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8701
8702 2003-03-26    <johan AT balder>
8703
8704         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8705         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8706         * src/SDCCast.c (decorateType): fixed " -v < 3"
8707
8708 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8709
8710         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8711         Added Lenny Story's debug infrastructure changes:
8712         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8713         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8714         * src/cdbFile.c: added
8715         * src/SDCCdebug.c: added
8716         * src/SDCCdebug.h: added
8717         * src/SDCCast.c (createFunction)
8718         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8719         * src/SDCCmain.c (parseCmdLine, main)
8720         * src/SDCCmem.c (redoStackOffsets)
8721         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8722         * src/SDCCsymt.h
8723         * src/common.h
8724         * src/avr/gen.c (genAVRCode)
8725         * src/ds390/gen.c (gen390Code)
8726         * src/mcs51/gen.c (gen51Code)
8727         * src/pic/gen.c (genpic14Code)
8728         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8729         * src/xa51/gen.c (genXA51Code)
8730         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8731
8732 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8733
8734         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8735         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8736
8737 2003-03-22    <johan AT balder>
8738
8739         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8740
8741 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8744         * doc/cdbfileformat.lyx: added, written by Lenny Story
8745         * doc/Makefile: added cdbfileformat.lyx
8746         * doc/clean.mk: added cdbfileformat.lyx
8747
8748 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8749
8750         * src/mcs51/peeph.def: fix bug #705773
8751
8752 2003-03-20    <johan AT balder>
8753
8754         An sfr/sbit can have an "at #" AND an initializer
8755         * src/SDCCsymt.c (checkSClass):
8756         * src/SDCCmem.c (allocGlobal):
8757         * src/SDCCmem.c (allocLocal):
8758         * src/SDCCast.c (createBlock):
8759
8760 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8761
8762         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8763
8764 2003-03-16    <johan AT balder>
8765
8766         Undid the hackup of const and volatile, the problem is much bigger
8767         * src/SDCC.y:1.65
8768         * src/SDCCast.c:1.171
8769         * src/SDCCglue.c:1.138
8770         * src/SDCCicode.c:1.146
8771         * src/SDCCsymt.c:1.150
8772         * src/SDCCval.c:1.65
8773
8774 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8775
8776         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8777         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8778
8779 2003-03-13    <johan AT balder>
8780
8781         Hackup const and volatile modifiers in type chains a bit:
8782         * src/SDCC.y:1.63
8783         * src/SDCCast.c:1.169
8784         * src/SDCCglue.c:1.136
8785         * src/SDCCicode.c:1.143
8786         * src/SDCCsymt.c1.146
8787         * src/SDCCsymt.h1.59
8788         * src/SDCCval.c:1.63
8789
8790 2003-03-12    <johan AT balder>
8791
8792         * src/SDCCBBlock.h: more LRH debugging junk
8793         * src/SDCCcflow.h: more LRH debugging junk
8794         * src/SDCCloop.c: more LRH debugging junk
8795         * src/SDCC.y (struct_declaration): fixed bug #697590
8796         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8797         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8798         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8799
8800 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8801         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8802         test function names must now match exactly).
8803         * src/SDCCcse.c: added special case in findCheaperOp to allow
8804         extending a short integer. Makes less awful code for bug 700121 test case.
8805
8806 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8807
8808         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8809         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8810
8811 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8812
8813         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8814         actually called (operandsNotEqual() was called for all
8815         operandsNotEqualX tests).
8816
8817 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8818
8819         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8820         with shorter literals. Fixes bug 700121.
8821
8822 2003-03-11    <johan AT balder>
8823
8824         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8825
8826 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8827
8828         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8829         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8830
8831 2003-03-10  Borut Razem <borut.razem AT siol.net>
8832
8833         * src/SDCCmain.c: pipe preprocessor's output
8834         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8835         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8836         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8837         which closes all pipes in pipeSet set
8838         * src/SDCCset.c: free deleted item in function deleteSetItem()
8839         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8840         moved from z80 to src subproject
8841         * .version: increased version number to 2.3.4
8842
8843 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8844
8845         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8846         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8847         * support/regression/ports/xa51/spec.mk: fix typo
8848
8849 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8850
8851         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8852
8853 2003-03-09  Borut Razem <borut.razem AT siol.net>
8854
8855         * src/SDCCmain.c: pipe preprocessor's output
8856         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8857         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8858         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8859         which closes all pipes in pipeSet set
8860         * src/SDCCset.c: free deleted item in function deleteSetItem()
8861         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8862         moved from z80 to src subproject
8863
8864 2003-03-09  Borut Razem <borut.razem AT siol.net>
8865
8866         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8867         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8868         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8869         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8870         * src/SDCCglobl.h: unification of WIN32 native definitions
8871
8872 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8873
8874         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8875
8876 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8877
8878         * src/configure.in:   check for endianess (even while cross-compiling)
8879         * src/configure:      check for endianess (even while cross-compiling)
8880         * src/configure_in.h: check for endianess (even while cross-compiling)
8881         * src/avr/gen.c:        remove old endianess stuff
8882         * src/mcs51/gen.c:      remove old endianess stuff
8883         * src/ds390/gen.c:      remove old endianess stuff
8884         * src/pic/gen.c:        remove old endianess stuff
8885         * src/pic/genarith.c:   remove old endianess stuff
8886         * src/pic/glue.c:       fix endianess check
8887         * src/pic16/gen.c:      remove old endianess stuff
8888         * src/pic16/genarith.c: remove old endianess stuff
8889         * src/pic16/glue.c:     fix endianess check
8890         * src/xa51/gen.c:       remove old endianess stuff
8891         * src/z80/gen.c:        fix endianess check
8892         * src/SDCCglue.c:       fix endianess check
8893         * src/ds390/peeph.def: fix bug 700036
8894
8895 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8896
8897         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8898         * src/configure: find appropriate data-types on host for SDCC's int and long
8899         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8900         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8901         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8902
8903 2003-03-07    <johan AT balder>
8904
8905         Just a big NOOP:
8906                 some minor cleanups before the big shot
8907                 OP_DEFS and OP_USES now use Kevin's protection
8908                 new option --nolabelopt
8909
8910         * src/SDCCBBlock.c:
8911         * src/SDCCast.c,:
8912         * src/SDCCcflow.c:
8913         * src/SDCCcse.c:
8914         * src/SDCCicode.c:
8915         * src/SDCCicode.h:
8916         * src/SDCClabel.c:
8917         * src/SDCCloop.c:
8918         * src/SDCCmain.c:
8919         * src/ds390/ralloc.c:
8920         * src/mcs51/ralloc.c:
8921         * src/pic/ralloc.c:
8922         * src/xa51/ralloc.c:
8923         * src/z80/ralloc.c:
8924
8925 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8926
8927         * src/pic/pcode.c (get_op): fix 64 bit warnings
8928         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8929         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8930         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8931         * support/regression/tests/malloc.c: fix 64 bit warnings
8932
8933 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8934
8935         * src/mcs51/gen.c (genMinus): fixed bug 696436
8936
8937 2003-03-02  Borut Razem <borut.razem AT siol.net>
8938
8939         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8940
8941 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * configure.in: test for mkstemp
8944         * sdccconf_in.h: add HAVE_MKSTEMP
8945
8946 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         * device/include/ctype.h: removed warning while using --stack-auto
8949         * device/include/malloc.h: removed warning while using --stack-auto
8950         * device/include/string.h: removed warning while using --stack-auto
8951
8952 2003-02-23  Borut Razem <borut.razem AT siol.net>
8953
8954         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8955         because NDEBUG is defined (see man assert)
8956         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8957
8958 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8959
8960         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8961         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8962
8963 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8964
8965         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8966         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8967
8968 2003-02-18    <johan AT balder>
8969
8970         * as/mcs51/asmain.c (asmbl): module can start with a digit
8971         * as/z80/asmain.c (asmbl): module can start with a digit
8972
8973 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8974
8975         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8976         * src/asm.c: fix pipe() for Mingw32
8977
8978 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8979
8980         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8981         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8982         make -V work again; --c1mode reads now from stdin
8983         * doc/sdccman.lyx: added --c1mode
8984         * support/Util/SDCCerr.c: new messages for c1 mode
8985         * support/Util/SDCCerr.h: new messages for c1 mode
8986         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8987
8988 2003-02-15    <johan AT balder>
8989
8990         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8991
8992 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8993
8994         * doc/sdccman.lyx: Environment variables, -o and other minor things
8995
8996 2003-02-14    <johan AT balder>
8997
8998         * src/xa51/main.c: before anyone really tries to use it :)
8999
9000         * Install doc's in share/sdcc/doc
9001         * removed some obsolete files
9002         * Do a proper make distclean and uninstall
9003         M Makefile.common.in
9004         R sdccbuild.sh
9005         M as/Makefile
9006         M device/include/Makefile.in
9007         M device/lib/Makefile.in
9008         M doc/sdccman.lyx
9009         M link/Makefile
9010         M sim/ucsim/doc/Makefile.in
9011         M src/clean.mk
9012         R src/avr/peeph.rul
9013         R src/xa51/peeph.rul
9014         M support/cpp2/Makefile.in
9015         M support/makebin/Makefile
9016
9017
9018 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9019
9020         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9021
9022 2003-02-10  Borut Razem <borut.razem AT siol.net>
9023
9024         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9025         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9026         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9027         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9028         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9029         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9030         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9031         src/z80/Makefile.bcc: Borland Makefile cleanup
9032         * as/z80/Makefile.bcc: Added Borland Makefile
9033         * support/cpp2/borland.h: Removed
9034
9035 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9036
9037         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9038         * src/SDCC.lex: new pragma NOIV
9039         * src/SDCCglobl.h: new pragma NOIV
9040         * src/SDCCmem.c: new pragma NOIV
9041
9042 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9043
9044         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9045
9046 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9047
9048         * src/SDCCmain.c: signal handling is switched off by --debug
9049         * doc/Makefile: small fix for install; use clean.mk again
9050         * doc/clean.mk: clean *.pdf and *.html too
9051
9052 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9053
9054         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9055         * device/lib/printfl.c: fix a ds390 bug by making it portable
9056         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9057         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9058         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9059         * debugger/mcs51/cmd.c: converted multi-line string literals
9060         * sim/ucsim/globals.cc: converted multi-line string literals
9061         * src/SDCCmain.c: introduced signal handler to remove temp files
9062         * doc/Makefile: small tweaks, implement clean
9063         * doc: removed generated files
9064
9065 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9066
9067         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9068         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9069         Address Record is not correctly generated for DS390."
9070
9071 2003-02-02  Borut Razem <borut.razem AT siol.net>
9072
9073         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9074         * as/mcs51/asm.h: fixed compilation with Borland C
9075         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9076         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9077         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9078         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9079         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9080         src/z80/Makefile.bcc: delete $(LIB) only if exist
9081         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9082
9083 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * device/include/malloc.h: introduced NULL
9086         * device/include/string.h: introduced NULL
9087         * device/include/stdlib.h: introduced NULL
9088         * device/lib/_memcpy.c: removed NULL
9089         * device/lib/_strcat.c: removed NULL
9090         * device/lib/_strchr.c: removed NULL
9091         * device/lib/_strcmp.c: removed NULL
9092         * device/lib/_strcpy.c: removed NULL
9093         * device/lib/_strcspn.c: removed NULL
9094         * device/lib/_strlen.c: removed NULL
9095         * device/lib/_strncat.c: removed NULL
9096         * device/lib/_strncmp.c: removed NULL
9097         * device/lib/_strncpy.c: removed NULL
9098         * device/lib/_strpbrk.c: removed NULL
9099         * device/lib/_strrchr.c: removed NULL
9100         * device/lib/_strspn.c: removed NULL
9101         * device/lib/_strstr.c: removed NULL
9102         * device/lib/_strtok.c: removed NULL
9103         * device/lib/malloc.c: removed NULL, include own header
9104
9105 2003-02-02    <johan AT balder>
9106
9107         * 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
9108         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9109         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9110         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9111         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9112         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9113
9114 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9115
9116         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9117         area 'DATA'"
9118
9119 2003-02-01    <johan AT balder>
9120
9121         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9122
9123 2003-01-31    <johan AT CP255758-A>
9124
9125         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9126
9127 2003-01-30    <johan AT balder>
9128
9129         * src/SDCCBBlock.c: automatic bug detection
9130         * src/SDCCicode.c: automatic bug detection
9131
9132 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9133
9134         * src/SDCCglobl.h:   now --xram-size 0 works
9135         * src/SDCCmain.c:    now --xram-size 0 works
9136
9137 2003-01-29    <johan AT balder>
9138
9139         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9140
9141 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9142
9143         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9144         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9145         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9146         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9147         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9148         * src/SDCCmain.c:    Added options --xram-size and --code-size
9149
9150 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9151
9152         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9153         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9154
9155 2003-01-27    <johan AT balder>
9156
9157         * src/SDCC.y: fixed bug #613764
9158
9159 2003-01-26    <johan AT balder>
9160
9161         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9162         * src/SDCCsymt.h: fixed bug #673374
9163         * src/SDCCglue.c: fixed bug #661910
9164         * src/SDCCast.c: fixed bug #458099 and 673374
9165
9166 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9167
9168         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9169         * as/mcs51/strcmpi.h: added
9170         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9171         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9172         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9173         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9174         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9175         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9176         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9177         * as/mcs51/Makefile.aslink: new module strcmpi
9178         * as/mcs51/Makefile.asx8051: new module strcmpi
9179         * as/mcs51/Makefil.bcc: new module strcmpi
9180         * as/mcs51/Makefile.in: new module strcmpi
9181         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9182
9183 2003-01-26    <johan AT balder>
9184
9185         * src/SDCCglue.c: reverted back to 1.124
9186         * src/SDCCast.c: reverted back to 1.156
9187         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9188
9189 2003-01-25    <johan AT balder>
9190
9191         * src/SDCCglue.c: A better fix for bug #661910
9192         * src/SDCCast.c: A better fix for bug #661910
9193         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9194
9195 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9196
9197         * src/Makefile.in: remove spawn.o
9198         * src/SDCCmain.c: remove spawn.h
9199         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9200         * src/spawn.c: removed
9201         * src/spawn.h: removed
9202         * support/regression/ports/ds390/spec.mk: link with -r
9203
9204 2003-01-24    <johan AT CP255758-A>
9205
9206         * src/ds390/gen.c (aopOp): fixed bug #667458
9207         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9208         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9209         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9210
9211 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * src/mcs51/peeph.def: better assembler identation by Frieder
9214         * src/mcs51/gen.c: better assembler identation by Frieder
9215
9216 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9217
9218         * as/z80/string.h: removed for gcc 3.2
9219         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9220         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9221
9222 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9223
9224         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9225         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9226         * support/regression/Makefile: separate temp files for ports
9227         * support/regression/generate-cases.py: separate temp files for ports
9228         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9229         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9230
9231 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9232
9233         * moved tinitalk to device/examples/ds390
9234
9235 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9236
9237         * as/mcs51/lkmem.c: rflag is for DS390
9238         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9239         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9240                          (linkEdit): move mem- and map-files the same way as ihx-files
9241         * src/z80/main.c (_setDefaultOptions): removed --generic
9242         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9243         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9244         * src/pic/glue.c (picglue): --c1mode works again
9245         * src/pic16/glue.c (pic16glue): --c1mode works again
9246         * src/asm.c (printCLine): fix #660034
9247
9248 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9251         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9252         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9253         * as/mcs51/lkmem (summary): better fix for sp problem
9254         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9255         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9256         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9257                                               remove --stack-after-data
9258
9259 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9260
9261         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9262         * src/SDCCutil.c (join): ugly bug: missing '\0'
9263         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9264
9265 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9266
9267         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9268         * src/port.h: typo
9269         * src/pic/main.c (_asmCmd): gpasm supports -o
9270         * src/z80/main.c: more general macros
9271         * device/lib/Makefile.in: remove intermediate files
9272
9273 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9274
9275         * .version: Bumped version number to 2.3.3
9276         * src/SDCCBBlock.c: new option -o
9277         * src/SDCCglobl.h: new option -o
9278         * src/SDCCglue.c: new option -o
9279         * src/SDCCmain.c: new option -o
9280         * src/asm.c: new option -o
9281         * src/ds390/main.c: new option -o
9282         * src/pic/glue.c: new option -o
9283         * src/pic/pcode.c: new option -o
9284         * src/pic/ralloc.c: new option -o
9285         * src/pic16/glue.c: new option -o
9286         * src/pic16/pcode.c: new option -o
9287         * src/pic16/ralloc.c: new option -o
9288         * src/z80/main.c: new option -o
9289         * device/lib/Makefile.in: use -o
9290         * support/regression/ports/ds390/spec.mk: use -o
9291         * support/regression/ports/gbz80/spec.mk: use -o
9292         * support/regression/ports/mcs51/spec.mk: use -o
9293         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9294         * support/regression/ports/z80/spec.mk: use -o
9295         * support/regression/ports/ucz80/spec.mk: use -o
9296         * support/regression/ports/xa51/spec.mk: use -o
9297         * support/regression/fwk/lib/timeout.c: fix usage string
9298
9299 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9300         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9301
9302 2003-01-07    <johan AT balder>
9303
9304         * src/SDCCast.c (decorateType): fixed bug #600035
9305
9306 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9307         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9308         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9309         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9310         * src/pic/pcode.c: outcommented unused variable to remove warnings
9311         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9312
9313 2003-01-06    <karl AT turbobit.com>
9314         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9315    regression tests.
9316
9317 2003-01-06    <johan AT balder>
9318
9319         * src/SDCCicode.c: fixed array add
9320
9321 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9322         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9323         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9324
9325 2003-01-04    <johan AT balder>
9326
9327         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9328
9329 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9330         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9331
9332 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9333         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9334         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9335
9336 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9337         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9338
9339 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9340         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9341
9342 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9343         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9344
9345 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9346
9347     * in \sdcc\as\mcs51\ changed these files in order to create an
9348     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9349     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9350     following files to include the previous two files: aslink.dsp,
9351     Makefile.aslink, Makefile.bcc, and Makefile.in.
9352
9353     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9354     .adb instead of .cdb
9355
9356 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9357
9358         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9359         value from option --iram-size.
9360
9361 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9362
9363         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9364         dram[] array.
9365
9366 2002-09-18    <wiml AT hhhh.org>
9367
9368         * SDCClrange.h: exposed setFromRange() and setToRange()
9369         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9370           packRegsForAccUse() (bug 542397)
9371         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9372           multiple times and emitting the fetch operations more than once
9373           added aopGetUsesAcc() function to allow binary operators to
9374           fetch their operands in the correct order; made genMinus() emit
9375           compact code for X = LITERAL - Y
9376
9377 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9378         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9379         sprintf() in line 1267.
9380
9381 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9382         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9383         like ports.
9384
9385 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9386         Changes to aslink (All the changes are marked with 'JCF'):
9387
9388         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9389         summary().
9390
9391         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9392         area BSEG.  Also moves, if possible, the DATA area down into the internal
9393         ram so more space is available.
9394
9395         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9396         sflag.
9397
9398         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9399         not bytes.  Function summary() which creates a memory usage summary
9400         file with extension .mem.  Reports of overlaping stack and small stack
9401         size.  If the space for the stack is less than 16 bytes aslink trows a
9402         warning.
9403
9404         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9405         the 8051.  Option 'y' for memory summary output file.
9406
9407         Changes to sdcc (All the changes are marked with 'JCF'):
9408
9409         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9410
9411         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9412         overlaying area for it (uses RegBankUsed[4]).
9413
9414         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9415         bank zero as used by default.  By default aslink locates the stack
9416         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9417         the creation of the .mem file.  Delegates the allocation of data area
9418         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9419         the begining of the stack area to aslink.
9420
9421         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9422         glue() in SDCCglue.c creates an area for it.
9423
9424 2002-09-03  Borut Razem <borut.razem AT siol.net>
9425         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9426         sdcc/src/pic/glue.c:
9427         introduced atexit() handler for teporay files removal in case of
9428         errors, assertions, ...
9429
9430 2002-08-29  Borut Razem <borut.razem AT siol.net>
9431         * sdcc/support/cpp2/auto-host_vc_in.h:
9432         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9433         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9434         Maybe there is a similar problem with BORLANDC? It should be checked!
9435
9436         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9437         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9438         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9439         was not executed, and the compiler (cl) launched a warning:
9440         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9441
9442 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9443         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9444
9445 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9446         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9447
9448         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9449           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9450           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9451           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9452           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9453           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9454           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9455         - added Release configuration in VS projects
9456         - review of compiler an linker options
9457         - VC .exe files are generated in bin_vc directory, not to interfere
9458           with binaries generated from other projects (cygwin, mingw, bcc ...)
9459
9460         * sdcc/src/yacc.dsp: added
9461
9462         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9463         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9464         and insert the version number definitions from .version
9465
9466         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9467
9468         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9469         added - genarate auto-host.h using auto-host_vc_in.h as template
9470
9471         * sdcc/sdcc_vc.h,
9472         removed from CVS, generated automatically
9473
9474 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9475         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9476
9477 2002-08-11  Borut Razem <borut.razem AT siol.net>
9478         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9479
9480 2002-08-10  Borut Razem <borut.razem AT siol.net>
9481         * src/SDCCmain.c (main):
9482         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9483         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9484         The consequence was that some temporary files were not removed.
9485
9486         * src/SDCCglue.c:
9487         unification of code in functions tempfilename() and tempfile():
9488         function tempnam() is defined in Visual Studio 6.0 and .NET
9489
9490         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9491
9492         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9493           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9494         - removed compiler command line option /WX: Treats all warnings as errors
9495         - update a list of source files, included into the project
9496
9497         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9498           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9499         changed project type to Generic Project so that can be correcly converted to VS.NET project
9500
9501         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9502
9503         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9504
9505         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9506
9507         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9508         added return 0 statements after assert() to make compiler happy
9509
9510         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9511         added newline in the def file to keep MSC compiler satisfied
9512
9513         * sdcc/src/z80/gen.c:
9514         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9515           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9516         - solved MSC error in function aopDump()
9517
9518         * sdcc_vc.h: define PREFIX as "\\sdcc"
9519
9520 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9521         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9522
9523 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9524         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9525         - Rewrote the register banking algorithm.
9526         - Added pCode live-range analysis to registers (for now, only non-used and
9527         singly-used registers optimized away)
9528
9529         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9530
9531         * 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.
9532
9533 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9534         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9535
9536 2002-04-22  Michael Hope  <michaelh AT vroom>
9537
9538         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9539
9540         * configure.in (DD_COPT): Added include support required for gbdk.
9541
9542         * .version: Bumped version number just to increase it.
9543
9544         * src/SDCCmain.c: Added -nostdinc to the default options.
9545
9546 2002-04-15  Michael Hope  <michaelh AT vroom>
9547
9548         * device/lib/z80/printf.c (sprintf): Added.
9549
9550         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9551
9552         * src/z80/peeph.def: Added transpose redundent load rule.
9553
9554         * src/z80/main.c: Added force callee saves for jaune.
9555
9556         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9557
9558         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9559
9560 2002-03-28  Johan Knol  <johan AT balder>
9561
9562         * src/SDCCval.c: fixed bug #532436
9563
9564 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9565         * /src/port.h:
9566         Added "char *Processor" field to the port structure.
9567
9568         * /src/SDCCmain.c:
9569         Added -p option. Allows port dependent processor to be specified.
9570
9571         * all ports:
9572         Initialized the new field char *Processor field to NULL in all ports
9573
9574         * /src/pic/*:
9575         Compiler generated registers for interrupt context saving
9576         were not getting allocated.
9577
9578 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9579
9580         * /src/SDCCast.c:
9581         Fixed left shift. Will promote the left side of a left shift
9582         if a) left shifting more than size of operand or b) when assigned
9583         to something size > size of left side
9584
9585 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9586         * src/pic/*
9587         tons of changes. Register allocation has been
9588         rewritten. Added customization for the various PICs. Flow
9589         analysis is restructured. ...
9590
9591         * src/pic/device.h:
9592         Added
9593
9594         * src/pic/device.c:
9595         Added. device.c is a PIC port hack to accomodate variations
9596         in PIC devices.
9597
9598 2002-03-13  Michael Hope  <michaelh AT vroom>
9599
9600         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9601
9602 2002-03-04  johanknol  <johanknol AT manik>
9603
9604         * /src/SDCCval.c: fixed
9605
9606         const unsigned char arr[][2] = { { 0, 1 } };
9607         t18.c:1: error: Initializer element is not constant
9608
9609 2002-03-04  bela  <bela AT manik>
9610
9611         * /device/include/mcs51reg.h:
9612         ds89c420 register definition update
9613
9614 2002-03-03    <johan AT FRIJA>
9615
9616         * support/Util/SDCCerr.c: did something, but don't no why anymore
9617
9618         * support/regression/tests/bug-524691.c: made it a little less shy
9619
9620         * src/SDCCast.c (decorateType): fixed bug #524697
9621
9622         * src/SDCCast.c: made some lineno improvements
9623
9624         * src/SDCCval.c (getNelements): changed warning to error
9625
9626         * src/SDCCglue.c (printIvalArray): changed warning to error
9627
9628         * src/SDCCicode.c: fixed a warning for mingw
9629
9630         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9631
9632         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9633
9634 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9635
9636         * src/ds390/peeph.def:
9637         Added some more peephole rules
9638
9639         * src/ds390/gen.c: Various fixes & enhancements
9640
9641         * src/SDCClrange.c, src/SDCClrange.h:
9642         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9643
9644         * src/ds390/ralloc.c:
9645         various fixes & enhancements (ds390) specific
9646
9647         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9648         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9649         from rallocs.
9650
9651         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9652
9653 2002-03-02    <johan AT FRIJA>
9654
9655         * src/SDCCast.c (decorateType): fixed bug #524708
9656
9657         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9658
9659         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9660
9661 2002-03-01  Michael Hope  <michaelh AT vroom>
9662
9663         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9664
9665         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9666
9667 2002-03-01    <johan AT FRIJA>
9668
9669         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9670
9671         * src/SDCCast.c (decorateType): fixed bug #524209
9672
9673         * src/SDCCval.c (valNot): fixed bug #524195
9674
9675 2002-02-26    <johan AT balder>
9676
9677         * src/xa51/gen.c: fixed a warning
9678
9679         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9680
9681         * src/SDCCast.c (decorateType): fixed bug #522534
9682
9683 2002-02-23    <johan AT balder>
9684
9685         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9686
9687 2002-02-22    <johan AT balder>
9688
9689         * src/SDCCast.c: fixed bug #514865
9690
9691         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9692
9693 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9694
9695         * sdcc/src/SDCCloop.c:
9696         Previous fix was not good. basic blocks that have "break" or "return" are
9697         not really partof a loop , but live ranges used in these blocks should
9698         be live thru the entire loop, so set partOfLoop but don't add them to
9699         loop region
9700
9701 2002-02-21    <johan AT FRIJA>
9702
9703         * src/SDCCcse.c: fixed bug #514308
9704
9705 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9706
9707         * src/SDCCloop.c:
9708         Fixed BUG #519583. If a conditional block ended in a return/break
9709         statement inside a loop, it was not being considered part of the loop.
9710
9711         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9712
9713 2002-02-10  Karl Bongers <karl AT turbobit.com>
9714
9715         * debugger/*:
9716         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9717         with lots of comments and notes.
9718
9719         * device/examples/test2.c:
9720         Fix bug, "red" variable not being initialized(compiler complained).
9721
9722         * device/examples/Makefile, examples/test3.c:
9723         Add Makefile in device/examples folder, compiles test3.c
9724         for use as a multiple module SDCDB test case.
9725
9726         * sim/ucsim/cmd.src/cmdset.cc:
9727         Took out debug printfs in ucsim "next" command.
9728
9729         * sim/ucsim/xa.src:
9730         Karl and Johan start ucsim XA support.  Most dissassembly working,
9731         about 75% emulation done(plenty of work remaining).
9732
9733         * sim/ucsim/z80.src:
9734         Add Z80 support to ucsim, add test-ucz80 regression test,
9735         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9736         Notice z80 compiler fails on examples/test3.c/crc code.
9737
9738 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9739
9740         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9741         Added support for --parms-in-bank1
9742
9743         * src/ds390/peeph.def:
9744         added a few more peephole optimzations
9745
9746         * src/ds390/main.c:
9747         1) added __builtin_inp & __builtin_outp used to read in data of given length
9748            from a memory mapped port
9749         2) added __builtin_memcmp
9750         3) added __builtin_swapw swap bytes of a short
9751
9752         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9753         1) handle multiple send & receives from register bank1
9754         2) ralloc can now allocate DPTR1 to some liveRanges
9755
9756         * src/SDCCsymt.c, src/SDCCsymt.h:
9757         changes to handle multiple sends & receives
9758
9759         * src/SDCCptropt.h:
9760         added some pointer arithmetic optimization
9761
9762         * src/SDCCptropt.c:
9763         added some pointer arithmetic optimizations but not stable yet so not
9764         called from anywhere (will get this working shortly)
9765
9766         * src/SDCCopt.c: fixed for multiple sends & receives
9767
9768         * src/SDCCmain.c:
9769         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9770         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9771            set preprocessor defines (depending on options)
9772
9773         * src/SDCCicode.c, src/SDCCicode.h:
9774         changes made to handle multiple sends & receives
9775
9776         * src/SDCCglobl.h:
9777         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9778
9779         * src/SDCCcse.c, src/SDCCcse.h:
9780         added function findbackward def (to be used in upcoming optimization)
9781
9782         * src/SDCCcflow.c, src/SDCCcflow.h:
9783         added function returnAtEnd - to determine if a basic block terminates with
9784         a RETURN iCode
9785
9786         * src/SDCCast.c, src/SDCCast.h:
9787         added option parms-in-bank1
9788
9789         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9790         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9791         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9792         adjusted for --parms-in-bank1 option
9793
9794         * device/include/string.h:
9795         donot redefine "reentrant" keyword
9796
9797         * device/include/ds80c390.h: Added some more SFRs
9798
9799 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9800
9801         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9802
9803 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9804
9805         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9806
9807 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9808
9809         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9810
9811 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9812
9813         * Added --xram-movc option
9814
9815 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9816
9817         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9818
9819 2002-01-11  Johan Knol
9820
9821         * Added math lib of Jesus Calvino-Fraga
9822
9823 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9824
9825         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9826         * support/regression/Makefile: new target test-mcs51-stack-auto
9827         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9828
9829 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9830
9831         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9832
9833 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9834
9835         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9836
9837 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9838
9839         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9840
9841         * src/SDCCglue.h: add definition for printIvalChar()
9842
9843 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9844
9845         * src/SDCCast.c: fix #498138 by Johan
9846
9847         * src/SDCCglue.c: fix #498138 by Johan
9848
9849 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9850
9851         * support/regression/Makefile: fix clean
9852
9853         * support/regression/ports/ds390/support.c: fix transmission of last character
9854
9855 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9856
9857         * /sdcc/src/ds390/gen.c:
9858         a) improved computing address of stack variable
9859         b) took out some #if 0 code
9860         c) improved parmBytes adjustment
9861         d) improved genPlusIncr & genMinusIncr
9862         e) genCmp could generate bad code (when left assigned to DPTR)
9863         f) Fixed bug in hasInc
9864
9865         * /sdcc/src/ds390/ralloc.c:
9866         a) packRegsForSupport could mess up live information (Fixed)
9867         b) packRegsDPTRuse could be incorrect for left & right shift
9868
9869         * /sdcc/src/mcs51/ralloc.c:
9870         packRegsForSupport could mess up the live information (Fixed)
9871
9872         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9873
9874         * /sdcc/src/SDCCast.c:
9875         can reverse a loop even if function call is present as long
9876         as the loop control variable is local & is not passed as parameter
9877
9878 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9879
9880         * /sdcc/ChangeLog: *** empty log message ***
9881
9882         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9883         More builtin function additions for TININative
9884
9885         * /sdcc/src/ds390/ralloc.c:
9886         Had broken the regression testsuite
9887
9888         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9889
9890         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9891         Added funcattr hasStackParms will be set for reentrant functions when there
9892         are paramteres on the stack, this helps in minimizing frame pointer generation
9893         typeFromStr can handle function pointers now
9894
9895         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9896         *** empty log message ***
9897
9898 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9899
9900         * /src/ds390/gen.c, /src/ds390/main.c:
9901         More builtin function additions for TININative
9902
9903         * /src/ds390/ralloc.c:
9904         Had broken the regression testsuite
9905
9906         * /src/SDCCast.c: Fixed a bug in dumptree
9907
9908         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9909         Added funcattr hasStackParms will be set for reentrant functions when there
9910         are paramteres on the stack, this helps in minimizing frame pointer generation
9911         typeFromStr can handle function pointers now
9912
9913         * /doc/builtins.txt, /doc/TININative.txt:
9914         *** empty log message ***
9915
9916
9917 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9918
9919         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9920         ALPHA version for -mTININative
9921
9922         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9923         updated to reflect changes in the port structure
9924
9925         * /src/port.h:
9926         added function do_assemble (similar to do_link) if non-null this function
9927         will be called to do assembly (-mTININative) requires a multi command
9928         assembly
9929         added function genAssemblerEnd will be called to generate assembler Epilogue
9930
9931         * /src/SDCCsymt.c:
9932         added _JavaNative to debug info printing
9933
9934         * /src/SDCCmain.c: added option --tini-libid
9935         added port->do_assemble function (-mTININative) has a multi command assemble
9936
9937         * /src/SDCCglue.c: Disabled "constExpr" check
9938         added port->genAssemblerEnd function
9939
9940         * /src/SDCCglobl.h: Added option --tini-libid value
9941
9942         * /src/SDCCast.h:
9943         tookout optimizeCompare from the header (has no external references)
9944
9945         * /src/SDCCast.c: made one more function "static"
9946
9947 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9948
9949         * src/z80/mappings.i: Added z80asm support.
9950
9951         * src/z80/main.c: Added z80asm support on --asm=z80asm
9952
9953         * src/z80/gen.c: Fixed asm portability issues.
9954
9955         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9956
9957         * src/SDCCglue.c (printExterns): Added global/extern split.
9958
9959 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9960
9961         * support/regression/Makefile: added test for mcs51 model large
9962
9963         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9964
9965         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9966
9967 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9968
9969         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9970
9971 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9972
9973         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9974
9975         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9976
9977 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9978
9979         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9980
9981         * support/regression/tests/simplefloat.c: Port to mcs51.
9982
9983 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9984         * support/regression/tests/bug-485362.c: Added.
9985
9986         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9987
9988         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9989
9990         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9991
9992         * src/z80/gen.c (aopDump): Added a dump function.
9993
9994 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9995         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9996
9997         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9998
9999         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10000
10001         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10002
10003         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10004
10005         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10006
10007         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10008
10009         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10010
10011         * support/regression/ports/ds390/support.c: Use tinibios.
10012
10013         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10014
10015 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10016
10017         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10018         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10019
10020         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10021
10022         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10023
10024 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10025
10026         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10027
10028         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10029         (packRegsForIYUse): Created and optimised.
10030
10031 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10032
10033         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10034 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10035
10036         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10037
10038         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10039
10040         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10041
10042 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10043
10044         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10045
10046         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10047
10048 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10049
10050         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10051
10052         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10053
10054         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10055
10056 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10057
10058         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10059         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10060         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10061
10062         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10063
10064         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10065         (genNotFloat): Added.
10066         (genUminusFloat): Added.
10067
10068         * device/lib/z80/Makefile: Added floating pt stubs.
10069
10070         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10071
10072         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10073
10074         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10075
10076 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10077
10078         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10079
10080         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10081
10082         * sdcc/support/regression/Makefile: Add port ds390.
10083
10084         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10085
10086         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10087
10088         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10089
10090         * sdcc/support/regression/ports/ds390/support.c: Added.
10091
10092         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10093
10094         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10095
10096         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10097
10098 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10099
10100         * device/include/malloc.h: Added z80 and gbz80 support.
10101
10102         * device/lib/gbz80/heap.s: Added.
10103
10104         * device/lib/z80/heap.s: Added.
10105
10106         * device/lib/malloc.c: Added z80 and gbz80 support.
10107
10108         * support/regression/tests/malloc.c (testMalloc): Added.
10109
10110         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10111
10112         * support/regression/tests/bug-478094.c: Added.
10113
10114         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10115
10116 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10117
10118         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10119
10120         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10121
10122         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10123
10124         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10125
10126         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10127
10128 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10129
10130         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10131
10132 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10133
10134         * support/regression/tests/bug-477927.c: Added.
10135
10136         * src/z80/peeph.def: Added minor rules.
10137
10138         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10139
10140         * src/z80/peeph.def: Added jump optimisation modification.
10141
10142 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10143
10144         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10145
10146 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10147
10148         * support/regression/tests/funptrs.c: Added.
10149
10150 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10151
10152         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10153
10154 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10155
10156         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10157
10158         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10159
10160         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10161         (movLeft2ResultLong): Created.
10162
10163         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10164         (joinPushes): Added.  Joins two char pushes into a word push.
10165
10166 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10167
10168         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10169
10170         * support/makebin/Makefile (install): Added creation of dest dir.
10171
10172 2001-10-24 Karl Bongers <karl AT turbobit.com>
10173
10174         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10175
10176 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10177
10178         * src/z80/ralloc.c: Turned off faulty pack for one use.
10179
10180         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10181
10182         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10183
10184 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10185
10186         * support/regression/Makefile: Improved clean
10187
10188         * support/regression/ports/gbz80/spec.mk: Added clean
10189
10190         * support/regression/ports/host/spec.mk: Added clean
10191
10192         * support/regression/ports/z80/spec.mk: Added clean
10193
10194         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10195
10196         * support/regression/ports/mcs51/timeout.c: little improvements
10197
10198 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10199
10200         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10201
10202         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10203
10204         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10205
10206 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10207
10208         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10209
10210         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10211
10212 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10213         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10214
10215         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10216
10217         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10218
10219         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10220
10221         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10222
10223         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10224
10225         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10226
10227         * support/regression/tests/longor.c: Added.
10228
10229 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10230
10231         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10232
10233         * as/mcs51/aslink.h: define PATH_MAX
10234
10235         * as/mcs51/asm.h: define PATH_MAX
10236
10237         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10238
10239         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10240
10241         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10242
10243         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10244
10245         * src/SDCCglobl.h: define PATH_MAX
10246
10247         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10248
10249         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10250
10251 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10252
10253         * src/z80/gen.c (gencjneshort): Fixed
10254
10255         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10256
10257 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10258
10259         * support/regression/tests/bug-469671.c: Added.
10260
10261         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10262
10263 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10264
10265         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10266
10267         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10268
10269 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10270
10271         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10272
10273         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10274
10275         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10276
10277         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10278
10279         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10280
10281         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10282
10283         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10284
10285 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10286
10287         * 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.
10288
10289         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10290
10291         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10292
10293 2001-10-07    <johan AT FRIJA>
10294
10295         * device/lib/gets.c (gets): fixed the return value.
10296
10297 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10298         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10299
10300         * 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.
10301
10302         * 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.
10303
10304         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10305
10306         * src/pic/gen.c: Removed Safe_strdup.
10307
10308         * configure.in: Added option to enable libgc support.
10309
10310         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10311         (bitVectUnion): Optimised.
10312         (bitVectIntersect): Optimised.
10313         (bitVectBitsInCommon): Optimised.
10314         (bitVectCplAnd): Optimised.
10315
10316         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10317
10318 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10319
10320         * src/SDCCmain.c: distinguish between assembler debug and plain options
10321
10322         * src/avr/main.c:   remove standard assembler options
10323
10324         * src/ds390/main.c: remove standard assembler options
10325
10326         * src/mcs51/main.c: remove standard assembler options
10327
10328         * src/port.h: removed "PENDING" comment
10329
10330 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10331
10332         * src/device/lib/_mulint.c  : new, with assember functions
10333
10334         * src/device/lib/_mullong.c : new, with assember functions
10335
10336         * src/device/lib/_divuint.c : with assember functions
10337
10338         * src/device/lib/_divsint.c : with assember functions
10339
10340         * src/device/lib/_divulong.c: with assember functions
10341
10342         * src/device/lib/_divslong.c: with assember functions
10343
10344         * src/device/lib/_moduint.c : with assember functions
10345
10346         * src/device/lib/_modsint.c : with assember functions
10347
10348         * src/device/lib/_modulong.c: with assember functions
10349
10350         * src/device/lib/_modslong.c: with assember functions
10351
10352         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10353
10354         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10355
10356         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10357                                       replaced _mululong.c and _mulslong.c by _mullong.c
10358
10359 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10360
10361         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10362
10363 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10364
10365         * src/SDCCglue.c: test, if win32api is available for MINGW
10366
10367 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10368
10369         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10370         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10371         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10372         * support/regression/ports/host/spec.mk: removed GENERIC
10373         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10374         * support/regression/ports/z80/spec.mk: removed GENERIC
10375
10376 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10377
10378         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10379
10380         * support/regression/tests/bug-467035.c: Created.
10381
10382 2001-10-01    <johan AT FRIJA>
10383
10384         * src/SDCC.y: fixed bug #466586 part 1
10385
10386 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10387
10388         * SDCCicode.c: z80 has no generic pointers
10389         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10390
10391 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10392
10393         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10394
10395 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10396
10397         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10398
10399         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10400
10401 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10402
10403         * configure.in: Fixed up so that ucsim is only configured once.
10404
10405         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10406
10407         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10408         (getPathDifference): As above.
10409
10410         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10411
10412         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10413
10414 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10415         * .version: Updated to 2.3.1
10416
10417         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10418         Added copyright header.
10419
10420         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10421         (assemble): Added support for macro based assembler commands.
10422         (linkEdit): Added support for macro based linker commands.
10423         (preProcess): Changed the pre-processor to use macros.
10424         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10425         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10426
10427         * device/lib/z80/crt0.s: Added module name for debugging.
10428
10429 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10430
10431         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10432
10433         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10434
10435         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10436
10437         * src/Makefile.in: Added SDCCmacro and SDCCutil
10438
10439 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10440
10441         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10442
10443 2001-09-16    <johan AT FRIJA>
10444
10445         * 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.
10446
10447 2001-09-15    <johan AT FRIJA>
10448
10449         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10450         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10451
10452 2001-09-11    <johan AT FRIJA>
10453
10454         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10455
10456 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10457
10458         * support/regression/tests/bug-460444.c: Added test case.
10459
10460         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10461         (genCast): Added justification for all of the asserts.
10462
10463 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10464
10465         * support/regression/support.c: _xdata replaced by xdata
10466
10467         * support/regression/spec.mk: removed _generic
10468
10469 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10470
10471         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10472
10473         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10474         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10475
10476         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10477
10478         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10479
10480         * support/regression/tests/bug-460010.c: Added test case.
10481
10482         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10483
10484 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10485
10486         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10487
10488         * support/regression/testfwk.c: removed workaround for bug #436344
10489
10490         * support/regression/tests/bp.c: use less memory with mcs51
10491
10492         * support/regression/tests/bug-441448.c: use less memory
10493
10494         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10495
10496         * support/regression/collate-results.py: typo
10497
10498 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10499
10500         * support/regression/tests/fetchoverlap.c: Added new test case.
10501
10502         * support/regression/tests/bp.c: Added new test case.
10503
10504         * support/regression/tests/bug-448984.c: Added new test case.
10505
10506         * support/regression/tests/pow2shifts.c: Added new test case.
10507
10508         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10509         (genlshTwo): Fixed right shift for count > 8.
10510
10511         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10512
10513 2001-09-08    <johan AT FRIJA>
10514
10515         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10516
10517 2001-09-07    <johan AT FRIJA>
10518
10519         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10520
10521         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10522
10523 2001-09-06    <johan AT FRIJA>
10524
10525         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10526         * bernhard noted me at this: "() equals to (void)" (1.38)
10527
10528 2001-09-05    <johan AT FRIJA>
10529
10530         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10531
10532 2001-09-04    <johan AT FRIJA>
10533
10534         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10535
10536
10537 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10538
10539         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10540
10541 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10542
10543         * link/z80/aslink.h: Fixed path for PATH_MAX
10544
10545 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10546
10547         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10548
10549         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10550
10551         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10552
10553         * 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.
10554
10555 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10556
10557         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10558         (genCmp): Fixed up genCmp for the GB with longs.
10559
10560         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10561
10562         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10563
10564         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10565
10566         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10567
10568 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10569
10570         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10571
10572 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10573
10574         * 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.
10575
10576         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10577
10578 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10579
10580         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10581
10582         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10583
10584 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10585
10586   * sim/ucsim/configure:    little improvement of Cygwin-detection
10587   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10588   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10589   * support/regression/tests/bug-221100.c: small changes for mcs51
10590   * support/regression/tests/bug-221168.c: small changes for mcs51
10591   * support/regression/tests/bug-227710.c: small changes for mcs51
10592   * support/regression/tests/staticinit.c: small changes for mcs51
10593   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10594   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10595   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10596
10597 $Revision$