* src/pic/pcode.c (pciTRIS): fixed typo,
[fw/sdcc] / ChangeLog
1 2006-02-08 Raphael Neider <rneider AT web.de>
2
3         * src/pic/pcode.c (pciTRIS): fixed typo,
4           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
5           (LinkFlow): fixed handling of flows that end in a call,
6           (ReuseReg): perform safety check earlier
7         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
8             to work with flows at the beginning of a pBlock,
9             fixes #1426557 (Symbol not previously defined),
10           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
11             usage information
12           (RemoveUnusedRegisters): update register usage info
13         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
14             created, reuse existing ones instead
15         * src/pic/gen.c (genPcall): fixed #1424719
16
17 2006-02-01 Borut Razem <borut.razem AT siol.net>
18
19         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
20           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
21           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
22           src/regression/bool1.c, src/regression/bool2.c,
23           src/regression/bool3.c, src/regression/call1.c,
24           src/regression/compare.c, src/regression/compare10.c,
25           src/regression/compare2.c, src/regression/compare3.c,
26           src/regression/compare4.c, src/regression/compare5.c,
27           src/regression/compare6.c, src/regression/compare7.c,
28           src/regression/compare8.c, src/regression/compare9.c,
29           src/regression/configword.c, src/regression/for.c,
30           src/regression/inline.c, src/regression/mult1.c,
31           src/regression/nestfor.c, src/regression/or1.c,
32           src/regression/pointer1.c, src/regression/ptrfunc.c,
33           src/regression/rotate1.c, src/regression/rotate2.c,
34           src/regression/rotate3.c, src/regression/rotate4.c,
35           src/regression/rotate5.c, src/regression/rotate6.c,
36           src/regression/rotate7.c, src/regression/string1.c,
37           src/regression/struct1.c, src/regression/sub.c,
38           src/regression/sub2.c, src/regression/switch1.c,
39           src/regression/while.c, src/regression/xor.c,
40           src/regression/create_stc, src/regression/simulate,
41           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
42           regression tests
43         * src/regression/gpsim_assert.h: added
44
45 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
46
47         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
48         ((void (code *) (void)) 0) ();
49         * as/hc08/aslex.c,
50         * as/hc08/aslink.h,
51         * as/hc08/asm.h,
52         * as/hc08/asmain.c,
53         * as/hc08/lkdata.c,
54         * as/hc08/lklex.c,
55         * as/hc08/lkmain.c,
56         * as/mcs51/aslex.c,
57         * as/mcs51/aslink.h,
58         * as/mcs51/asm.h,
59         * as/mcs51/asmain.c,
60         * as/mcs51/lkdata.c,
61         * as/mcs51/lklex.c,
62         * as/mcs51/lkmain.c,
63         * as/z80/aslex.c,
64         * as/z80/asm.h,
65         * as/z80/asmain.c: fixed build on current cygwin:
66         replaced getline() by as_getline()
67
68 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
69
70         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
71         declarator in the symbol chain
72         * src/SDCCsymt.h,
73         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
74         parameter list for function pointers
75         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
76         * support/regression/tests/bug-716242.c: added
77
78 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
79
80         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
81         offset if possible
82         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
83
84 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
85
86         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
87         inifinitely recurseable, added static   
88         * support/regression/tests/bug-1408066.c: added
89
90 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
91
92         * src/SDCCicode.h,
93         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
94         renamed, added possibility to create "postLoopLbl"-labels
95         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
96         newiTempLoopHeaderLabel
97         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
98         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
99         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
100         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
101         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
102         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
103         (basicInduction): fixed bug #136564, made static,
104         (loopInduction): changed parameter of basicInduction, made static,
105         (addPostLoopBlock): added
106         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
107         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
108         findLoopEndSeq
109         * support/regression/tests/bug-136564.c: added
110         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
111         --std-sdcc99 to LIBSDCCFLAGS
112
113 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
114
115         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
116         while loop
117         * support/regression/tests/bug-1406131.c: added
118
119 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
120
121         * src/SDCCast.c (decorateType): fix promotion of unary minus
122         * src/SDCCsymt.c (computeType): beautified
123         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
124         (valUnaryPM, valComplement): fix sign and promotion,
125         (valNot): ANSI: result type is int (SDCC: unsigned char)
126         * support/regression/tests/uminus.c: speedup by removing superflous
127         test case 'int'
128         * support/regression/tests/onebyte.c: added promotion and signedness
129         tests for unary minus
130         * support/regressions/tests/bug-477927.c: disable warning about
131         uninitialized variables
132         * support/regression/tests/not.c: added
133
134 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
135
136         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
137         * src/mcs51/gen.c (gen51Code): show final register usage after
138         fillGaps in asm with --i-code-in-asm
139         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
140         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
141         incUsed, rliveClear, adjustIChain): made static,
142         (setFromRange): excluded because it's unused,
143         (findPrevUseSym, markWholeLoop): added,
144         (findPrevUse): rewritten; fixes bug 895992; now a complete search
145         through all branches of predecessors enables sdcc to emit the warning
146         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
147         (rlivePoint): made static, added parameter emitWarnings which is only
148         true during the first run out of two,
149         (findRecursiveSucc, findRecursivePred): removed,
150         (computeLiveRanges): made static, added parameter emitWarnings,
151         (dumpIcRlive): added for debugging only
152         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
153         removed prototype of setFromRange()
154         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
155         in call of computeLiveRanges()
156         * support/regression/tests/bug-895992.c: added
157         * support/regression/tests/bug-971834.c: added
158         * support/valdiag/tests/bug-895992.c: added
159         * support/valdiag/tests/bug-971834.c: added
160
161 2005-12-18 Raphael Neider <rneider AT web.de>
162
163         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
164           (genUnpackBits): improved code for direct operands,
165           (genPackBits): improved code for literal assignment to bitfields
166             and for direct destination operands (no FSR indirection),
167             prevented redundant AND, fixes #1362800,
168           (AccLsh): added parameter to disable masking of the result
169         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
170           skip instructions with side-effects (like incfsz),
171           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
172         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
173         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
174           fixes #1375263
175
176 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
177
178         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
179         volatile variables as spill location
180
181 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
182
183         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
184         replacing literals
185         * support/regression/tests/bug-1376320.c: added
186
187 2005-12-08 Raphael Neider <rneider AT web.de>
188
189         * src/pic/device.c: renamed is_shared to pic14_is_shared
190         * src/pic/gen.c (genIfx): re-enabled handling of sbits
191         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
192           (is_valid_identifier): added for above workaround
193
194 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
195
196         * device/lib/Makefile.in: fixed to enable port-specific-objects
197         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
198           char, thanks Hubert Sack
199         * doc/sdccman.lyx: documented --xstack-loc,
200           elaborated a bit more on interrupts and pitfalls,
201           removed "setjmp/longjmp unsupported",
202           documented some unsupported C99 features
203         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
204         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
205           if, thanks Hubert Sack
206         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
207         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
208           make make_library
209         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
210           regression tests can report resource usage (rfe 700441)
211         * support/regression/collate-results.py: report resource usage
212         * support/regression/ports/ds390/spec.mk,
213         * support/regression/ports/hc08/spec.mk,
214         * support/regression/ports/mcs51/spec.mk,
215         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
216         * support/regression/ports/ds390/uCsim.cmd,
217         * support/regression/ports/hc08/uCsim.cmd,
218         * support/regression/ports/mcs51/uCsim.cmd,
219         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
220         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
221           library, use the default one
222         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
223           building the library
224
225 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
226
227         * config.dsp: added dependency on .version and configure_vc.awk
228         * device/include/setjmp.h: updated for --stack-auto and --xstack
229         * device/include/mcs51/at89c51snd1c.h: corrected line endings
230         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
231         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
232         * device/lib/libsdcc.lib: added _setjmp
233         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
234           (decorateType): fixed bug 1372851,
235           (optimizeGetHbit): fixed warning
236         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
237           array initialisation
238         * support/regression/tests/bug1057979.c: added test for bug 1358192
239         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
240
241 2005-12-03 Borut Razem <borut.razem AT siol.net>
242
243         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
244           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
245
246 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
247
248         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
249         createIval): implement symbol independant "flexible array member",
250         (createIvalCharPtr): implemented flexible array initialisation with a
251         string
252         * src/SDCCsymt.c (copyStruct): removed,
253         (getSize): fixed misleading comment,
254         (getAllocSize): removed, the additional allocation size is now in
255         sym->flexArrayLength,
256         (checkStructFlexArray): new, syntax checks for flexible array members,
257         (compStructSize): added syntax checks for "flexible array members"
258         (copyStruct): removed,
259         (copyLinkChain): removed inefficient fix for bug 770487
260         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
261         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
262         symbol->flexArrayLength
263         * src/SDCCerr.c,
264         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
265         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
266         * support/regression/tests/structflexarray.c: added
267         * support/valdiag/tests/structflexiblearray.c: added
268
269 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
270
271         * src/SDCCast.c (decorateType): fixed bug 1368489
272         * support/Util/SDCCerr.c,
273         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
274
275 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
276
277         * device/include/mcs51/at89c51snd1c.h: added file submitted by
278           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
279
280 2005-11-27 Borut Razem <borut.razem AT siol.net>
281
282         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
283           support/cpp2/mkdeps.h: added command line option
284           -obj-ext=<extension> to SDCPP to define object file externion, used
285           for generation of make dependencies (-M)
286         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
287
288 2005-11-26 Borut Razem <borut.razem AT siol.net>
289
290         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
291           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
292           added pic and pic16 libraries
293
294 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
295
296         * device/include/float.h: Corrected typo in prototype of __fsgt
297
298 2005-11-25 Borut Razem <borut.razem AT siol.net>
299
300         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
301           added creation of model-mcs51-stack-auto libraries
302
303 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
304
305         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
306         and fields-list too
307         * src/SDCCast.c (createIvalArray): removed obsolete comment
308
309 2005-11-24 Borut Razem <borut.razem AT siol.net>
310
311         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
312           added missing device/lib/mcs51/crt*.asm sources
313
314 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
315
316         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
317
318 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
319
320         * device/lib/_fs2schar.c,
321         * device/lib/_fs2sint.c,
322         * device/lib/_fs2slong.c: optimized inline asm
323
324 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
325
326         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
327           Better handling of floats between -1.0 and 0.0.
328
329 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
330
331         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
332           (the missing "if"s prohibited removal of redundant labels)
333
334 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
335
336         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
337           Properly convert floats between -1.0 and 0.0 to long, int, and char
338           types (max integer value of negative floats tends to zero).
339         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
340           Removed changes made so to work properly with floats between
341           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
342           and _fs2char.c
343
344 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
347         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
348         (genCast) cosmetic change
349         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
350         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
351         from mcs51
352         * support/regression/tests/bitfields (testSignedBitfields): added
353
354 2005-11-18 Borut Razem <borut.razem AT siol.net>
355
356         * sdcc/device/lib/Makefile.in: remove all unnecessary files
357         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
358           introduced SILENT option to make building of pic16 libraries less
359
360 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
361
362         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
363           Now they work properly with floats between -1.0 and 0.0
364         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
365
366 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
367
368         * src/SDCCicode.c (printOperand): added missing else
369
370 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
371
372         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
373         reformatted for better readability
374         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
375         signed bitfields
376
377 2005-11-17 Borut Razem <borut.razem AT siol.net>
378
379         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
380           introduced SILENT option to make building of pic16 libraries less
381           verbose - used for nightly snapshot build
382         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
383           available on Win32 platforms.
384         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
385           medium, large, pic and pic16
386
387 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
388
389         * device/lib/printf_large.c: Temporary patch for bug 1358192:
390           printf("%f"...) sets fraction to zero.
391
392 2005-11-16 Raphael Neider <rneider AT web.de>
393
394         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
395           fixes #1357221
396         * src/pic/gen.c (genIfx): implemented for CARRY bit
397         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
398           to generic pointers, fixes #1357332,
399           (pic16_movLit2f): NEW,
400           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
401
402 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
403
404         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
405
406 2005-11-11 Raphael Neider <rneider AT web.de>
407
408         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
409         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
410           compute pointer's type from operand,
411           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
412           improved single bit reads, fixes bug #1353379
413
414 2005-11-09 Borut Razem <borut.razem AT siol.net>
415
416         * support/scripts/sdcc.nsi: added lib/pic to the package
417
418 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
419
420         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
421
422 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
423
424         * support/regression/tests/bug1348008.c: added
425         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
426         * support/regression/tests/bug1337835.c: updated comment
427
428 2005-11-06 Borut Razem <borut.razem AT siol.net>
429
430         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
431           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
432           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
433           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
434           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
435           dynamic construction of cl_error_class and derivates - 2.nd try
436
437 2005-11-05 Borut Razem <borut.razem AT siol.net>
438
439         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
440           bug, which caused Bus Errors on sparc solaris
441
442 2005-11-04 Borut Razem <borut.razem AT siol.net>
443
444         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
445           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
446           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
447           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
448           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
449           and derivates to resolve the initialization problem on OSX
450
451 2005-11-02 Borut Razem <borut.razem AT siol.net>
452
453         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
454           corrected typo - #include <winsock2.h>
455
456 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
457
458         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
459           (_asxxxx_mapping): added org directive for future enhancements
460
461 2005-11-01 Borut Razem <borut.razem AT siol.net>
462
463         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
464           enabled sockets on WIN32
465         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
466
467 2005-10-31 Borut Razem <borut.razem AT siol.net>
468
469         * support/regression/generate-cases.py: escape backslashes in {testcase}:
470           WIN32 backslash path delimiters should be escaped when used in C strings
471         * support/regression/tests/bitfields.c: exclude failing assertions for
472           __CYGWIN32__ and __MINGW32__ hosts
473
474 2005-10-30 Borut Razem <borut.razem AT siol.net>
475
476         * src/SDCCutil.c: corrected double comparison typo
477
478 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
479
480         * device/lib/medium/Makefile: added for new memory model medium
481         * device/include/asm/mcs51/features.h: updated for medium/pdata
482         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
483           added Multiply & Accumulate sbit's and MAC0_PAGE define
484         * device/include/mcs51/c8051f300.h: added sfr16 definitions
485         * device/include/mcs51/c8051f310.h: added sfr16 definitions
486         * device/lib/_mullong.c: update for medium model
487         * device/lib/incl.mk: added medium model
488         * doc/sdccman.lyx: documented medium model
489         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
490         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
491         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
492         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
493           (allocParms): set SCLS and OCLS to pdata for medium model
494         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
495           for pdata,
496           (powof2): return <0 if not power of 2
497         * src/avr/gen.c (genBitWise): use updated powof2
498         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
499           (shiftR2Left2Result): small optimization in setup, save acc when storing,
500           (shiftLLeftOrResult): use B if necessary
501         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
502         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
503         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
504         * support/regression/Makefile.in: added test-mcs51-medium
505         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
506
507 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
508
509         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
510         specifier unsigned
511         * device/lib/time.c (mktime): fixed bug 1334315
512
513 2005-10-28 Raphael Neider <rneider AT web.de>
514
515         * device/include/pic/p16f_common.inc: added common declarations
516         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
517
518 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
519
520         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
521           (aopPutUsesAcc): added to predict accumulator use,
522           (assignResultValue): save acc if necessary,
523           (genMinusDec): store result if indirectly addressed,
524           (genDivOneByte):  save acc if necessary,
525           (movLeft2Result): bugfix if left already in acc,
526           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
527             attention to accumulator use (esp. pdata),
528           (genReceive): receive pdata correctly
529         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
530         * src/SDCCicode.h: added isOperandInPagedSpace prototype
531
532 2005-10-27 Raphael Neider <rneider AT web.de>
533
534         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
535
536 2005-10-27 Raphael Neider <rneider AT web.de>
537
538         * .version: changed version to 2.5.4
539         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
540         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
541           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
542             arithmetics support routines
543         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
544         * device/lib/Makefile.in: also create installdir for pic
545
546         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
547           pic14 port as well
548         * src/pic/device.c (dump_sfr): rewritten to delegate register
549           placement to the linker (use `extern sym' rather than sym EQU addr),
550           (validAddress): fixed to check last specified address
551         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
552           (popGetLit): truncate literal value to 8 bit,
553           (popGet): moved assert to more appropriate place
554           (popGetExternal): create pCode operand from and mark the according
555             symbol as being `extern'
556           (popGetAddr): added sanity check on immediate's offset, provide
557             GPOINTER tag on demand
558           (aopPut): fixed for immediates,
559           (mov2w_op): move operand's address or contents to WREG (depending on
560             operand type), safer variant of mov2w,
561           (movwf,call_libraryfunc): NEW, handy abbreviations,
562           (get_argument_pcop,get_return_val_pcop,pass_argument,
563           get_returnvalue): interface for accessing function parameters and
564             return values,
565           (assignResultValuei,genRet): use new parameter/return value interface
566           (pic14_getDataSize): back to old version handling generic pointers,
567           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
568             provided implementation and/or fixed old one,
569           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
570             calls, removed legacy 8051 reference code
571           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
572           (loadSignToC): NEW, move the operands sign bit to CARRY,
573           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
574             genRightShiftSigned, accepts negative shift counts,
575           (setup_fsr): load FSR and adjust IRP (indirect memory access),
576           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
577             generic pointers, __data pointers and __code pointers,
578           (genUnpackBits,genPackBits): rewritten to work with generic pointers
579             and signed bitfields, limit bitfields to 8 bit,
580           (genDataPointerGet): fixed number of bytes read,
581           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
582           (genPointerGet,genPointerSet): fixed handling of __code pointers,
583             pointers to constant data are no longer assumed to point to __code
584             space, removed invalid pointer types,
585           (bitpatternFromVal): retrieve the PICs representation of an integer
586             or float literal,
587           (genDataPointerSet): fixed assigning to po_immediate operands,
588           (genGenPointerSet): implemented as library call,
589           (genIfx): fixed incorrect condition,
590           (genAddrOf): limit generic pointers' addresses to 2 bytes,
591             provide GPOINTER tag according to destination's storage class,
592           (genCast): added code to handle casting to generic pointers, added
593             sign-/zero extension of the result
594           (aop_isLitLike,op_isLitLike): fixed handling of immediates
595         * src/pic/gen.h: added macros to access IRP bit in STATUS register
596         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
597           extend the result
598         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
599           address/register resides in the shared banks
600           (emitSymbolToFile): improved to handle global and `pinned' symbols,
601             put all variables into separate sections (have the linker arrange
602             them)
603           (picglue): put init code and interrupt handlers in separate sections
604         * src/pic/main.c: added port specific options table, modified to PORT
605           structure to make GPOINTERs 3 byte, added pic14_options
606           (_pic14_do_link): private linking routine (update paths to libraries,
607             add libsdcc.lib by default)
608         * src/pic/main.h: declare pic14_options
609         * src/pic/pcode.c: fixed instructions i/o relations,
610           (RegCond): reverted to correct version,
611           (newpCodeOpLit): truncate literals to 8 bit,
612           (genericPrint): added debug output,
613           (getRegFromInstruction): fixed for various operand types, simplified
614           (BuildFlow): fixed broken handling of isntructions with labels
615           (LinkFlow): start at last instruction in flow (skip trailing comments),
616             pass the flow on to the next instruction after CALL
617           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
618           (insertPCodeInstruction): fixed inserting after a skip instruction,
619           (DoBankSelect): fixed for labeled instructions
620           (OptimizepBlock): honor --nopeep switch
621           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
622         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
623         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
624           (pCodeOptime2pCodes): allow disabling this optimization via
625             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
626             but is still buggy), started implementation of a dataflow based
627             pCode optimization (CSE + dead code elimination)
628           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
629         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
630           names are independant of the stack location and therefore portable across
631           devices
632
633 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
634
635         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
636           (selectSpil): fixed bug 1337835 by not spilling bit variables
637         * support/regression/tests/bug1337835.c: added test for this bug
638         * src/mcs51/peeph.def: restart after rule 3.c,
639           addded rules 263.x to optimize loading constants
640
641 2005-10-26 Raphael Neider <rneider AT web.de>
642
643         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
644         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
645           (genAssign): emit warning when casting literals to generic pointer
646             type, also applies when taking the address of a fixed variable,
647           (genCast): improved casting to generic pointers
648         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
649           extern variables, added verbose error message
650         * device/include/pic16/{string.h,errno.h}: added #pragma library c
651
652 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
653
654         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
655         carry must be complemented too
656         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
657         could be emitted by genMinus
658         * src/SDCCval.c (constVal): fixed bug 1305065
659
660 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
661
662         * src/SDCCast.c (addCast): added promotion for bit variables
663         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
664         promotion casts + optimisation
665         (optimizeGetWord): fix warning 'i' might be used uninitialized
666         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
667         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
668
669 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
670
671         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
672         all chars are promoted to int; promotion should be handled in SDCCast.c
673
674 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
675
676         * device/lib/_strcmp.c: Fixed bug 1326457
677
678 2005-10-11 Raphael Neider <rneider AT web.de>
679
680         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
681         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
682
683 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
686         * support/regression/tests/sfr16.c: added test for the sfr32 bug
687
688 2005-10-04 Raphael Neider <rneider AT web.de>
689
690         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
691           device/lib/pic16/pics.all: added pic18f1320
692         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
693
694 2005-09-30 Raphael Neider <rneider AT web.de>
695
696         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
697         * src/pic16/devices.inc: NEW, provides device descriptions
698         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
699
700 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
701
702         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
703           GETHBIT
704
705 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
706
707         * doc/sdccman.lyx: updated Highest Order Bit documentation,
708           documented Any Order Bit, Higher Order Byte and Higher Order Word
709         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
710         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
711           (optimizeGetAbit): new, to get any bit, not only the high bit,
712           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
713           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
714           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
715           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
716             RIGHT_OP: also try GETBYTE, GETWORD optimization,
717             GETABIT, GETBYTE, GETWORD: decorate them,
718           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
719           (ast_print): added GETABIT, GETBYTE, GETWORD
720         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
721         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
722           (geniCodeBinary): new generic binary icode,
723           (ast2iCode): added GETABIT, GETBYTE, GETWORD
724         * src/port.h: updated comment for PORT.hasExtBitOp
725         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
726           (genGetByte): new, to get a single byte,
727           (genGetWord): new, to get a word from a long,
728           (gen51Code): added GETABIT, GETBYTE, GETWORD
729         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
730
731 2005-09-23 Raphael Neider <rneider AT web.de>
732
733         * configure.in, configure: have device/lib/pic configured
734         * device/lib/Makefile.in: added model-pic14
735         * device/lib/clean.mk: added pic/ to clean rule
736         * device/lib/pic: added rudimentary pic14 library providing support
737           functions for multiplication/division/generic pointer access
738         * src/SDCCopt.c (convilong): mark support functions as extern
739           for pic14 port as well
740         * src/pic/gen.c (genMult): added assertions,
741           (genpic14Code): emit warning on unhandled iCodes
742         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
743         * src/pic/pcode.c (pCodeOpCopy),
744         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
745           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
746           SFR_REGISTER}), made safe for future extensions
747         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
748           instructions even if preceeded by SKIP instructions (also remove
749           them); removed unused code
750         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
751           prevents leaving parts of the structure uninitialized after copying
752
753 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
754
755         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
756           ago by me
757         * support/regression/tests/addsub.c: added test for the bug
758
759 2005-09-21 Raphael Neider <rneider AT web.de>
760
761         * device/include/pic16/pic18f1220.h,
762           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
763         * device/lib/pic16/Makefile.rules: added missing opening paren
764         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
765           are provided in genutils.c,
766           (genUminusFloat,genUminus,genCmpEq): added asserts on different
767           operand/result sizes,
768           (genCmp): assert on NULL pointers first, then check deref'ed values
769         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
770           result size
771
772 2005-09-18 Raphael Neider <rneider AT web.de>
773
774         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
775           as these are now unused,
776           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
777         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
778           local, avoids uninitialized pointer dereference on r->name
779         * src/pic16/ralloc.c (newReg): fixed indentation
780
781 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
782
783         * src/SDCCval.c (constVal): fixed bug 730366
784         * support/Util/SDCCerr.c,
785         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
786
787 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
788
789         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
790
791 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
792
793         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
794
795 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
796
797         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
798           (hex2dec): made hex_digit unsigned char, removed ascii dependance
799         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
800           (hex2dec): made hex_digit unsigned char, removed ascii dependance
801         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
802         * packihx/packihx.c (hexDigit): made c unsigned char
803         * as/mcs51/lklibr.c (fndsym),
804         * link/z80/lkgb.c (gb),
805         * link/z80/lklibr.c (fndsym),
806         * link/z80/lkrloc.c (relr),
807         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
808         * src/SDCC.lex (checkCurrFile, process_pragma),
809         * src/SDCCglue.c (spacesToUnderscores),
810         * src/SDCCmain.c (setParseWithComma, processFile),
811         * src/asm.c (tvsprintf, printCLine),
812         * src/avr/gen.c (emitcode, aopPut),
813         * src/ds390/gen.c (emitcode),
814         * src/hc08/gen.c (emitcode, emitinline),
815         * src/mcs51/gen.c (emitcode, genInline),
816         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
817           tokenizeLineNode),
818         * src/pic/ralloc.c (debugLog),
819         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
820           tokenizeLineNode),
821         * src/pic16/ralloc.c (debugLog),
822         * src/z80/main.c (_process_pragma):
823            made all ctype.h function calls safe
824         * src/SDCCopt.c: include math.h for fabs
825         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
826           and used them throughout the code to make ctype.h function calls safe
827         * src/ds390/main.c (asmLineNodeFromLineNode),
828         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
829         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
830            unsigned char*
831         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
832           (newpCodeAsmDir): made ctype.h function calls safe
833         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
834           pic16_emitcode):  made lbp unsigned char*
835         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
836           (pic16_newpCodeAsmDir): made ctype.h function calls safe
837         * src/xa51/gen.c (emitcode),
838         * src/z80/gen.c (_emit2): made lbp unsigned char*
839         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
840            char*
841
842 2005-09-05 Raphael Neider <rneider AT web.de>
843
844         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
845           access bank splitpoint
846
847 2005-09-05 Raphael Neider <rneider AT web.de>
848
849         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
850
851 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
852
853         * .version: changed to version 2.5.3
854         * doc/sdccman.lyx: changed version to 2.5.3,
855           documented --codeseg and --constseg and pragma codeseg and constseg,
856           documented bit parameters (reentrant) and bit returning
857         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
858            currFunc->recvSize, but is this ok for all ports?
859           (ast2iCode): result of ~ on unsigned char must be cast to int for
860            bool to work
861         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
862           function pointers in bit space
863         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
864           (processFuncArgs): call port.reg_parm() with reentrancy info
865         * src/port.h,
866         * src/avr/main.c,
867         * src/ds390/main.c,
868         * src/hc08/main.c,
869         * src/pic/main.c,
870         * src/pic16/main.c,
871         * src/xa51/main.c,
872         * src/z80/main.c: port.reg_parm prototype extended with
873           "bool reentrant" parameter
874         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
875           options.stackAuto for allocating bit register parameters
876         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
877           (genSend): set BitBankUsed if it is,
878           (selectRegBank): factored out of genCall for use in genPcall,
879           (genCall): removed redundant dtype assignmen, use selectRegBank,
880           (genPcall): handle returning in Carry properly, save in F0 if needed,
881           (genReceive): handle bit register parameters
882         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
883           (mcs51_assignRegisters): enable bit registers for all reentrant
884            functions and don't set BitBankUsed unconditionally
885         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
886         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
887         * support/regression/tests/funptrs.c: added tests for BOOL and for return
888
889 2005-08-27 Borut Razem <borut.razem AT siol.net>
890
891         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
892         ppc-osx (Darwin) does not support -u option. It seems that it is
893         supported only on Linux - GNU cp
894
895 2005-08-25 Borut Razem <borut.razem AT siol.net>
896
897         * sim/ucsim/gui.src/serio.src/Makefile.in,
898           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
899           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
900           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
901           install and strip, since the strip at /usr/ccs/bin should be used
902           on solaris
903
904 2005-08-24 Borut Razem <borut.razem AT siol.net>
905
906         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
907
908 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
909
910         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
911         ffffffffu
912
913 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
914
915         * as/mcs51/aslink.h: completed lkrloc.c prototypes
916         * as/mcs51/lkmain.c (link_main): fixed warning
917         * device/include/stdbool.h: ds390 has no advanced bit support yet
918         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
919         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
920         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
921           and updated their macros
922         * src/SDCCval.c (constVal): updated comment for renamed b_long
923
924 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
925
926         * as/mcs51/asdata.c: changed ctype['['] to BINOP
927         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
928           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
929           (oprio): set priority for '['
930         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
931            and adb_24_bit
932         * as/mcs51/asm.h: added defines R_BIT and S_BIT
933         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
934         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
935         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
936           added overlayable BIT_BANK area
937         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
938           (summary2): explain 'T' in legenda
939         * as/mcs51/lkrloc.c: replaced old K&R style,
940           (relr): added R_BIT processing,
941           (errmsg): added "Bit-addressable relocation error",
942           (adb_bit): added for converting from byte- to bit-addressable space,
943           (adb_24_bit): added for converting from byte- to bit-addressable space
944         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
945            used in reentrant functions now even as return value
946         * device/lib/_gptrput.c (_gptrput): removed obsolete code
947         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
948           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
949         * src/SDCCglobl.h: added indicator BitBankUsed
950         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
951            the bit registers b0-b7
952         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
953           (geniCodeCast): fixed bug 1263853,
954           (geniCodeLogicAndOr): put result in bool or char,
955           (geniCodeReceive): added parameter func for accessing the return type,
956           (geniCodeFunctionBody): pass func to geniCodeReceive
957         * src/SDCCmain.c: added indicator BitBankUsed
958         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
959         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
960           (checkSClass): don't put automatic bool/bit on stack,
961           (checkFunction): removed check on function cannot return bit
962         * src/SDCCsymt.h: added newBoolLink prototype
963         * src/mcs51/gen.c (rb1regs): added bit registers,
964           (movc): created for assigning to carry,
965           (pushReg, popReg): created for pushing registers,
966           (sameRegs): check both AOP_REG and AOP_CRY types,
967           (aopOp): handle bit registers,
968           (aopPut): optimization no self-assign,
969           (saveRegisters): push reg->base (bits) only once for bit registers,
970            and use pushReg,
971           (unsaveRegisters): pop reg->base only once and use popReg,
972           (assignResultValue): added parameter func and return in carry for bits,
973           (genIpush): optimization no reload in A if not changed,
974           (genSend): bit parameters in reentrant functions are passed in bit
975            registers by first assigning to bits in B, then save registers and
976            copy B to bits,
977           (genCall): handle returning in Carry properly, save it in F0 if needed,
978           (genPcall): updated assignResultValue call, this is not safe yet for bit
979            returning function !!!
980           (genFunction): don't generate equ's for bit registers and use pushReg,
981           (genEndFunction): take care of bit returning functions and use popReg,
982           (genRet): return bit in Carry,
983           (genIfx): optimize bit registers and other directly addressable bits,
984           (genReceive): updated assignResultValue call
985         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
986           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
987            registers when using stack-auto
988         * src/mcs51/ralloc.c (_G): added allBitregs,
989           (regs8051): added the bit registers,
990           (createStackSpil): use macro IS_BIT,
991           (getRegBit): added to allocate a bit register, else spill,
992           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
993           (updateRegUsage): factored out to ease stepping while debugging,
994           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
995            also allocate bit registers,
996           (fillGaps): handle bit registers,
997           (findAllBitregs): added to create bit vector with all bit registers,
998           (mcs51_allBitregs): returns this bit vector,
999           (mcs51_assignRegisters): when using stack-auto use bit registers for
1000            passing parameters and creating local variables
1001         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1002
1003 2005-08-22 Borut Razem <borut.razem AT siol.net>
1004
1005         * device/lib/Makefile.in: replaced find option -or with -o
1006           to make it run on solaris
1007
1008 2005-08-22 Raphael Neider <rneider AT web.de>
1009
1010         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1011           fixes #1265442 (crash on Solaris)
1012
1013 2005-08-20 Borut Razem <borut.razem AT siol.net>
1014
1015         * configure, configure.in: added tests for libsocket and libnsl libraries,
1016           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1017           from support/regression/Makefile.in
1018         * support/regression/Makefile.in: added
1019         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1020         * sim/ucsim/libtool: regenerated on sparc-solaris
1021         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1022           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1023           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1024           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1025           sparc-solaris, which doesn't use GNU ld linker
1026         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1027         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1028
1029 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1030
1031         * src/mcs51/peeph.def: updated comments
1032
1033 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1034
1035         * device/lib/_gptrget.c,
1036         * device/lib/_gptrput.c: slightly shorter
1037         * doc/sdccman.lyx: incremented version
1038         * src/mcs51/peeph.def: moved peephole comments to the line of first
1039           change to better keep line correlation, reanimated 186.e
1040         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1041
1042 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1043
1044         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1045           David Saxton with quotes around file name.
1046
1047 2005-08-15 Borut Razem <borut.razem AT siol.net>
1048
1049         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1050           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1051           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1052           make tests run on x86_64 platform
1053
1054 2005-08-13 Raphael Neider <rneider AT web.de>
1055
1056         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1057           as it might be executed DURING a build (parallel make is wonderful)
1058
1059 2005-08-13 Raphael Neider <rneider AT web.de>
1060
1061         * device/lib/Makefile.in (port-specific-objects-pic16):
1062           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1063         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1064           dependency
1065         * device/lib/pic16/Makefile.rules: build subdirs before creating
1066           the library, removed builddir rule, create $(builddir) early in
1067           recurse rule, use empty recurse rule for leaf directories
1068         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1069           mkdir errors (race condition), removed duplicate suffix "hex"
1070           from clean rules
1071         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1072         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1073           prevents mkdir -p from aborting on Alpha
1074
1075 2005-08-12 Raphael Neider <rneider AT web.de>
1076
1077         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1078           db-statements in order to allow for arrays of pointers in code
1079           sections to be placed without interspersed 0-padding, fixes
1080           bug #1256215
1081         * (emitStatistics): fixed division by zero for pic18f1220
1082         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1083           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1084         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1085         * (pic16_pCodeConstString): keep track of already emitted string
1086           literals to prevent "duplicate definitions of symbol _str_NR"
1087         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1088           debug message
1089         * device/lib/Makefile.in: ignore failing PIC16 library builds
1090         * device/lib/pic16/Makefile: do not build if gputils are missing
1091         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1092
1093 2005-08-10 Raphael Neider <rneider AT web.de>
1094
1095         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1096           my last commit)
1097
1098 2005-08-10 Raphael Neider <rneider AT web.de>
1099
1100         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1101           Rokas' patch to add the new fixed point type "__fixed16x16"
1102         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1103           functions for __fixed16x16 arithmetics
1104         * device/lib/pic16: reimplemented the build system to support
1105           a separate build directory, better handling of libio (create
1106           the library in a separate subdir for each architecture) and
1107           easier configuration (centralized in Makefile.common)
1108
1109 2005-08-07 Raphael Neider <rneider AT web.de>
1110
1111         * src/pic16/gen.c (genrshTwo): fixed sign extension
1112         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1113         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1114           added T0CONbits
1115         * device/include/pic16/pic18f4220.h: NEW, header for
1116           pic18f4220 and pic18f4320
1117         * device/include/pic16/pic18fregs.h: added new devices,
1118           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1119         * device/include/pic16/signal.h: resolved name clashes
1120           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1121           to also allow testing for interrupt enable bits, added
1122           comments on how to use the macros
1123         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1124         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1125           register definitions for the devices
1126         * device/lib/pic16/pics.all: added new devices
1127         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1128           allocated memory
1129         * device/lib/pic16/libc/stdlib/memfree: do not count
1130           the block header as free memory
1131         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1132           simplified and added missing end-of-blocklist-marker
1133           (reported by Peter Onion, fixes #1252814)
1134         * (_mergeHeapBlock): fixed loop condition
1135         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1136           len==0, restructured code
1137         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1138           up a bit, reduced bitfield accesses, prevent endless loops
1139           in case of heap corruption
1140         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1141           "unreferenced arguments/must return a value" warnings
1142         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1143           replaced BAUDREG with SPBRG
1144         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1145           device/lib/pic16/debug/gstack/gstack.c: replaced
1146           _naked, _asm, _endasm with __naked, __asm, __endasm
1147
1148 2005-08-05 Raphael Neider <rneider AT web.de>
1149
1150         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1151           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1152
1153 2005-08-05 Borut Razem <borut.razem AT siol.net>
1154
1155         * device/lib/Makefile.in: added missing ';'
1156         * configure: removed ^M characters
1157
1158 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1159
1160         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1161           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1162           License
1163
1164 2005-08-04 Borut Razem <borut.razem AT siol.net>
1165
1166         * configure.in: pic16 libraries build 2nd try - enable running
1167           configure in device/lib/pic16
1168         * configure: regenerated from configure.in
1169         * device/lib/Makefile.in: create $(PORT)/bin directory
1170
1171 2005-08-03 Raphael Neider <rneider AT web.de>
1172
1173         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1174           to get/set values via pointers
1175         * (genUnpackBits,genPackBits): changed detection of
1176           ptr->bitfield vs. sym.bitfield, fixed access via generic
1177           pointers, removed dead (wrong) code for multibyte bitfields
1178         * (genNearPointerGet, genGenPointerGet): removed useless code,
1179           fixed bitfield detection, fixes #1250594
1180         * (genNearPointerSet): removed useless code
1181         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1182           and introduced macro pic16_emitpcode that conditionally emits
1183           the origin of the following pCode (useful for debugging SDCC)
1184         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1185         * (createDefmap): fixed handling of LFSR for --optimize-df
1186
1187 2005-08-02 Borut Razem <borut.razem AT siol.net>
1188
1189         * device/lib/Makefile.in: pic16 libraries build enabled since
1190           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1191
1192 2005-08-02 Raphael Neider <rneider AT web.de>
1193
1194         * src/pic16/gen.c (genPackBits): removed deprecated warning
1195         * (genGenPointerSet): fixed bitfield detection
1196
1197 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1198
1199         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1200
1201 2005-07-31 Raphael Neider <rneider AT web.de>
1202
1203         * device/lib/pic16/libdev/pic18f458.c,
1204           device/include/pic16/pic18f458.h: added missing T0CONbits
1205
1206 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1207
1208         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1209
1210 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1211
1212         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1213
1214 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1215
1216         * device/include/mcs51/at89c51ed2.h: added.
1217
1218 2005-07-23 Raphael Neider <rneider AT web.de>
1219
1220         * src/pic/gen.h: added emitpcode macro for debugging
1221         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1222           and replace by macro adding debug information on demand
1223         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1224         * (gencjne): tried to fix; replaced with correct (slower) code
1225         * (gen{Unp,P}ackBits): fixed single bit access
1226         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1227         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1228           previous instruction
1229         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1230           register has to be handled with care (forbidding movement
1231           of assignments/uses, removing assignments completely, ...)
1232         * (pCodeOptime2pCodes): make use of regIsSpecial
1233         * added lots of debugging output (commented out)
1234         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1235           from being reused as result UNLESS it is known to work
1236
1237 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1238
1239         * support/Util/dbuf.h: include <stddef.h> for size_t
1240         * .version: changed to version 2.5.2
1241
1242 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1243
1244         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1245
1246 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1247
1248         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1249           (genModOneByte): removed needless psha/pula
1250
1251 2005-07-22 Raphael Neider <rneider AT web.de>
1252
1253         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1254           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1255         * src/pic/gen.c (resolveIfx): do not "invent" labels
1256         * (genSkipc): changed to positive logic
1257         * (genSkipCond): removed as no longer needed
1258         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1259           backport from PIC16
1260         * (genLeftShift): check operands are in different registers
1261         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1262           INCF does not update CARRY...
1263         * src/pic/main.c: fixed _linkCmd
1264         * src/pic/pcode.c (unlinkpCode): added inactive code
1265         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1266           alive (do not assign result and operand overlapping registers)
1267
1268 2005-07-22 Raphael Neider <rneider AT web.de>
1269
1270         * src/pic/device.c (dump_sfr): replaced register declaration with
1271           call to emitSymbolToFile() to avoid duplicate symbols
1272         * (assignRelocatableRegisters): do not declare external symbols
1273         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1274           right (take size of type, not etype)
1275         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1276         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1277         * (packRegsForAccUse): disabled assignment of WREG as
1278           the result reg to prevent occurence of just fixed #1235003,
1279           fixes #1242954
1280         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1281           symbols (avoids duplicate symbols in .asm file)
1282         * (pic14emitRegularMap): use emitSymbolToFile()
1283         * src/pic/gen.c (aopOp): fixed spillLocation handling
1284         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1285         * (genDataPointerSet): removed unneccessary variables/output
1286
1287 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1288
1289         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1290         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1291
1292 2005-07-21 Raphael Neider <rneider AT web.de>
1293
1294         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1295           architecture cannot handle them efficiently, fixes bug #1235003
1296         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1297           check for empty sets before using them (fixes bug #1232190)
1298
1299 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1300
1301         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1302           (lnksect2): generate warnings for memory overlap
1303         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1304           constseg to set the name of these segments so you can instruct the linker
1305           to place them in banks
1306         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1307         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1308           added code_seg and const_seg to options
1309         * src/SDCCglue.c (emitMaps): use options.const_seg,
1310           (createInterruptVect): put interrupt vectors in segment HOME,
1311           (glue): put HOME before static segment and put the main glue in HOME,
1312           (glue): use options.code_seg
1313         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1314         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1315           these segments so you can instruct the linker to place them in banks
1316           (linkEdit): use code_loc for HOME segment which should be the first
1317           segment in code memory now
1318         * src/SDCCmem.c: fixed more stuff like bug 1238386
1319         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1320           (changePointer): don't change function pointers to code pointers for
1321           banked functions,
1322           (compareType): added exceptional check for banked function pointers
1323         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1324         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1325           after static in code memory
1326         * src/mcs51/gen.c: added aopLiteralLong prototype,
1327           (aopForSym): use getSize for functions,
1328           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1329           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1330           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1331           the segment,
1332           (genPcall): use call for literal function pointers and generate banked
1333           calls over the one trampoline so there's only one place for the user to
1334           modify according to his/hers hardware,
1335           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1336           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1337         * src/mcs51/main.c: added keyword banked,
1338           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1339         * support/Util/SDCCerr.c,
1340         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1341           needed for passing the bank and address to the trampoline
1342         * device/lib/mcs51/crtbank.asm: added for bankswitching
1343         * device/lib/mcs51/Makefile: added crtbank
1344
1345 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1346
1347         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1348           for fields at offset 0 of a struct or union as reported
1349           on 2005-07-07 in the developer mailing list.
1350
1351 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1352
1353         * src/SDCCmem.c: fixed bug 1238386
1354
1355 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1356
1357         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1358           (patch #1144962), added peephole 300, enabled 259.x
1359         * doc/sdccman.lyx: removed screenshot and provided link instead
1360
1361 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1362
1363         * doc/sdccman.lyx: added section about debugging with ddd
1364         * doc/figures/ddd_example.eps: screenshot of debugging session
1365
1366 2005-07-04 Raphael Neider <rneider AT web.de>
1367
1368         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1369           like CODE pointers, fixes #1115683
1370         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1371           call, fixes bugs #1232211, #1228110,
1372           fixed wrong casts to pCodeFlow from pCodeInstructions
1373
1374 2005-07-04 Raphael Neider <rneider AT web.de>
1375
1376         * src/pic/gen.c (popGet): changed assert to allow for
1377           bit operands
1378         * (popGetAddr): changed signature to provide
1379           an additional index, patched all call sites
1380         * (genCmpEq): handle literal-like operands correctly
1381         * (genAddrOf): added sanity checks on __code/__data pointers
1382         * (genAssign): added handling of symbols from __code section
1383         * (gencjne): do not generate code for comparisons whose result
1384           is neither stored nor used, fixes bug #1171114
1385         * (AccLsh, AccRsh): operate on operand instead of WREG
1386         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1387           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1388           by known count
1389         * rewrote complete shift-by-literal logic, commented unused
1390           functions out
1391         * (genConstPointerGet): get multiple bytes (if result size > 1),
1392           fixed handling of non-immediate addresses
1393         * (genPointerGet): handle CODE pointers like CONST pointers
1394         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1395         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1396           operand is to be treated as a literal or not
1397         * (mov2w,genPcall,genCmpEq),
1398           src/pic/genarith.c: use aop_isLitLike() to decide between
1399           literal/register contents
1400         * (addSign): added missing offset
1401         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1402           only emit comment in debug-mode,
1403           use {aop,op}_isLitLike throughout the file
1404         * src/pic/glue.c: fix initializers for pointers (work in progress)
1405         * src/pic/pcode.c (get_op): honor index on _const symbols
1406         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1407         * (dumppBlock): added pCode size estimation
1408         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1409           check for IS_SYMOP before OP_SYMBOL'ing
1410         * fixed indentation, compacted switch-statements
1411         * (allocReg): find free register and allocate it instead of
1412           allocating new registers all the time
1413         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1414           registers as its operands (necessary only for multibyte GETs)
1415
1416 2005-07-01 Raphael Neider <rneider AT web.de>
1417
1418         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1419           debugging .asm-output macros FENTRY + FEXIT
1420         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1421           way... I wonder...
1422         * (emitpComment): NEW, printf to pCode
1423         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1424           offset handling
1425         * (popGetAddr): NEW, variant of popGet to access an immediates
1426           high(er) bytes instead of the n'th byte of memory they reference,
1427           replaced popGet with popGetAddr where neccessary
1428         * (genDataPointerGet): reactivated and fixed implementation
1429         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1430           accesses
1431         * (genDataPointerSet): fixed multibyte assignments
1432         * (genpic14Code): fixed --i-code-in-asm handling
1433         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1434         * (genPlus): fixed index-out-of-bounds error
1435         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1436         * src/pic/ralloc.c: added debugging output macro FENTRY2
1437         * (spillThis): fixed indentation, enbraced for-body for clarity
1438         * (rematStr): commented out as now unused
1439         * (regTypeNum): commented out special spill case (overwrites
1440           arbitrary values)
1441         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1442
1443 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1444
1445         * doc/sdccman.lyx: documented sfr16/sfr32,
1446           added example for using storage class with function pointers
1447         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1448
1449 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1450
1451         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1452         * device/lib/_itoa.c,
1453         * device/lib/_ltoa.c: optimized codesize
1454         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1455           but don't know how to suppress the double warning.
1456         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1457         * support/Util/SDCCerr.c,
1458         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1459
1460 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1461
1462         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1463           fixed old K&R prototypes
1464         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1465         * device/lib/_gptrget.c,
1466         * device/lib/_gptrgetc.c,
1467         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1468           also new versions for small generic pointers and banked generic pointers
1469         * src/port.h: added const_name
1470         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1471         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1472         * src/SDCCcse.c (findPrevIc): check all associative operators
1473         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1474         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1475         * src/SDCCmem.c: updated comments,
1476           set far-space to 0 for pdata, results in optimized code
1477         * src/SDCCmem.h: added macro CONST_NAME
1478         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1479           moving the info into the highest bits, see also gptrget/gptrput
1480         * src/src.dsp: added sdcc.ico to project files
1481         * src/avr/gen.c (genCast): fixed bug 0x%d
1482         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1483         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1484           relation between ptr_type and DCL_TYPE,
1485           (genCast): fixed bug 0x%d
1486         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1487           (CODE)" for const_name
1488         * src/hc08/gen.c (genCast): fixed bug 0x%d
1489         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1490           (hc08_port): added "CONST (CODE)" for const_name
1491         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1492           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1493           between ptr_type and DCL_TYPE,
1494           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1495           operand* and took AOP() inside function so sfr-ness can be checked,
1496           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1497           new prototype,
1498           (genFunction, genEndFunction): optimized stack setup,
1499           (genMinus): optimized for literals with ending zeroes (in bytes),
1500           (genCast): fixed bug 0x%d
1501         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1502           (mcs51_port): added "CONST (CODE)" for const_name
1503         * src/mcs51/peeph.def: made rule 226 more generic
1504         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1505         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1506         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1507         * src/z80/main.c (z80_port): added NULL for const_name,
1508           (gbz80_port): added NULL for const_name
1509         * support/regression/tests/bug663539.c,
1510         * support/regression/tests/sfr16.c: new tests
1511
1512 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1513
1514         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1515
1516 2005-06-24 Raphael Neider <rneider AT web.de>
1517
1518         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1519           corrected typos...
1520         * device/include/pic16/signal.h: added USBIF
1521           and SIG_USB
1522
1523 2005-06-24 Raphael Neider <rneider AT web.de>
1524
1525         * device/lib/pic16/libdev/pic18f2455.c,
1526           device/include/pic16/pic18f2455.h: NEW
1527         * device/include/pic16/pic18fregs.h,
1528           device/lib/pic16/pics.all,
1529           src/pic16/device.c: added 18f2455
1530         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1531           device/include/pic16/{pic18f[68][567].h,usart.h}:
1532           replaced MULTIPLE_USARTS define with more relaible
1533           compatibility sfrs (for USART access)
1534
1535 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1536
1537         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1538           and the output asm file line is printed on two lines.
1539
1540 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1541
1542         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1543           BGT, BLE, BHI, and BLS instructions
1544         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1545           genCmpEq): removed
1546         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1547           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1548           fixes bug #1216342
1549         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1550
1551 2005-06-15 Raphael Neider <rneider AT web.de>
1552
1553         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1554         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1555         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1556           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1557           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1558
1559 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1560
1561         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1562           Marcel Telka in bug #1215704
1563
1564 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1565
1566         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1567           located in shared memory bank.
1568
1569 2005-05-31 Raphael Neider <rneider AT web.de>
1570
1571         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1572           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1573           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1574
1575 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1576
1577         * device/lib/_strncpy.c: fixed the fix
1578
1579 2005-05-26 Raphael Neider <rneider AT web.de>
1580
1581         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1582           initializers with \0, bug #1208187
1583         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1584           intializers with \0, bug #1208187
1585
1586 2005-05-26 Raphael Neider <rneider AT web.de>
1587
1588         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1589           initializers with \0, bug #1208187
1590         * src/pic16/main.c (_process_pragma): added sanity checks
1591           for stack position and size, emit warnings when appropriate
1592
1593 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1594
1595         * device/lib/_strncpy.c: fixed not filling with \0
1596
1597 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1598
1599         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1600           createFunction),
1601         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1602           compound_statement),
1603         * src/SDCCsymt.h,
1604         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1605
1606 2005-05-24 Raphael Neider <rneider AT web.de>
1607
1608         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1609
1610 2005-05-24 Raphael Neider <rneider AT web.de>
1611
1612         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1613           TRISE definitions, closes bug #1162453
1614
1615 2005-05-22 Raphael Neider <rneider AT web.de>
1616
1617         * src/pic16/main.c (_process_pragma): check for missing
1618           arguments to pragmas code and udata
1619         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1620           consistency fixes to match other headers (thanks to Jim Paris)
1621         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1622
1623 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1624
1625         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1626
1627 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1628
1629         * support/regression/tests/bug1198642.c: new test
1630         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1631         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1632         * support/scripts/resource.h,
1633         * support/scripts/resource.rc,
1634         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1635         * support/scripts/sdcc.ico: added 32x32 icon
1636
1637 2005-05-18 Raphael Neider <rneider AT web.de>
1638
1639         * device/lib/pic16/libdev/pic18f*.c,
1640         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1641           keywords to "__sfr" and "__at (X)"
1642         * device/include/pic16/pic18fregs.h: added pic18f4520
1643         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1644           #1203088 (MPLAB compatibility)
1645
1646 2005-05-17 Raphael Neider <rneider AT web.de>
1647
1648         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1649         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1650         * device/lib/pic16/pics.all: added new devices
1651         * src/pic16/device.c: added support for pic18f4520
1652
1653 2005-05-16 Raphael Neider <rneider AT web.de>
1654         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1655         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1656         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1657           convenience function for bit access
1658
1659 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1660
1661         * device/lib/printf_large.c: fixed bug 1193299
1662         * support/regression/tests/bug1057979.c: added test %3.3s
1663
1664 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1665
1666         * device/include/mcs51/8051.h,
1667         * device/include/mcs51/8052.h: made parseable with lint
1668         * device/include/mcs51/lint.h: added include file for (sp)lint
1669         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1670         * doc/cdbfileformat.lyx,
1671         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1672
1673 2005-05-14 Raphael Neider <rneider AT web.de>
1674
1675         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1676         * device/lib/pic16/libc/stdlib/itoa.c (new)
1677         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1678         * device/lib/pic16/libio/Makefile: exclude subdir according to
1679           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1680         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1681         * src/pic16/gen.c (genFunction): prevent annoying warning
1682         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1683           nameclashes on BeOS
1684         * support/cpp2/cppmain.c (cpp_output_string): new
1685         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1686           fixes bug 1116802
1687
1688 2005-05-13 Borut Razem <borut.razem AT siol.net>
1689
1690         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1691
1692 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1693
1694         * .version: changed to version 2.5.1; back to bleeding edge development
1695
1696 2005-05-11 Borut Razem <borut.razem AT siol.net>
1697
1698         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1699           generate PDF version 1.3 documents
1700
1701 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1702
1703         * .version: changed to version 2.5.0
1704
1705 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1706
1707         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1708
1709 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1710
1711         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1712         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1713         well as many smaller updates.
1714         * .version: changed to version 2.5.0-pre1
1715
1716 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1717
1718         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1719
1720 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1721
1722         * support/regression/tests/bug1185672.c: added
1723         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1724           bug 1185672
1725         * src/mcs51/gen.c (genCall): added comments, made it look safer
1726         * src/mcs51/gen.c (genEndFunction): simplified
1727
1728 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1729
1730         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1731
1732 2005-04-14 Borut Razem <borut.razem AT siol.net>
1733
1734         * fixed bug 1045046 - SIGSEGV with really simple code?:
1735           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1736           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1737
1738 2005-04-14 Borut Razem <borut.razem AT siol.net>
1739
1740         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1741           src/pic16/device.h: temporarily disabled experimental #inline pragma
1742           for 2.5.0 release
1743
1744 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * device/include/z80/stdio.h,
1747         * device/include/z80/string.h: removed these highly incomplete files so
1748           SDCC can use the default ones in device/include/
1749
1750 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1751
1752         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1753         gcc warning.
1754         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1755         fix sdcpp warnings.
1756
1757 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1758
1759         * device/include/malloc.h: removed redundant __reentrant prototypes
1760         * device/lib/_mullong.c: added working xstack variant in asm (C version
1761           doesn't pass regression tests)
1762         * device/lib/bpx.c: used __data and made bpx char for mcs51
1763         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1764           (createFunction): fixed bug with xstackPtr
1765         * src/SDCCcse.c: corrected comments
1766         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1767           (killDeadCode, eBBlockFromiCode): removed unused code
1768         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1769           corrected comments
1770         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1771           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1772           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1773           (genModOneByte): fixed warning in MSVC
1774         * src/mcs51/main.c (): added comments
1775         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1776
1777 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1780
1781 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1782
1783         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1784
1785 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1786
1787         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1788         characters arrays of larger size than the declared one.
1789
1790 2005-04-10 Borut Razem <borut.razem AT siol.net>
1791
1792         * src/pic/gen.c (genInline),
1793           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1794           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1795           (findNextInstruction), (findPrevInstruction),
1796           (findInstructionUsingLabel),
1797           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1798         * src/pic/pcode.c (findLabel): added missing '\n'
1799         * src/src.dsp: added SDCCdwarf2.c to the project
1800
1801 2005-04-09 Borut Razem <borut.razem AT siol.net>
1802
1803         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1804
1805 2005-04-08 Raphael Neider <rneider AT web.de>
1806
1807         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1808           into the chain after a given one) and mergeDefmapSymbols (combine
1809           defmap entries for each symbol per pcode)
1810         * (createDefmap): have defmap entries merged in the end
1811         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1812           a symbol before replacing one access type's symbol, merge symbols in
1813           the end (replacement symbol might already have an entry)
1814         * (assignValnums): keep reference to written WREG intact
1815
1816 2005-04-08 Raphael Neider <rneider AT web.de>
1817
1818         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1819           Alpha)
1820
1821 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1822
1823         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1824         bytes
1825
1826 2005-04-07 Raphael Neider <rneider AT web.de>
1827
1828         * device/include/pic16/usart.h: added compatibility defines for
1829           devices with more than one USART
1830         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1831
1832 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1833
1834         * device/lib/Makefile.in: updated for port specific include
1835
1836 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1837
1838         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1839
1840 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1841
1842         * device/include/8051.h,
1843         * device/include/8052.h,
1844         * device/include/at89S8252.h,
1845         * device/include/at89c55.h,
1846         * device/include/at89x051.h,
1847         * device/include/at89x51.h,
1848         * device/include/at89x52.h,
1849         * device/include/mcs51reg.h,
1850         * device/include/reg51.h,
1851         * device/include/reg764.h,
1852         * device/include/regc515c.h,
1853         * device/include/sab80515.h: (re)moved these 12 files
1854         * device/include/mcs51/8051.h,
1855         * device/include/mcs51/8052.h,
1856         * device/include/mcs51/at89S8252.h,
1857         * device/include/mcs51/at89c55.h,
1858         * device/include/mcs51/at89x051.h,
1859         * device/include/mcs51/at89x51.h,
1860         * device/include/mcs51/at89x52.h,
1861         * device/include/mcs51/mcs51reg.h,
1862         * device/include/mcs51/reg51.h,
1863         * device/include/mcs51/reg764.h,
1864         * device/include/mcs51/regc515c.h,
1865         * device/include/mcs51/sab80515.h: and added them here
1866
1867 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1868
1869         * device/include/stdarg.h: changed SDCC specific keywords to double
1870           underlined form.
1871         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1872           mcs51 and ds390.
1873         * device/include/hc08/mc68hc908gp32.h,
1874         * device/include/hc08/mc68hc908jb8.h,
1875         * device/include/hc08/mc68hc908jkjl.h,
1876         * device/include/hc08/mc68hc908qy.h: fixed comments
1877         * device/include/mcs51/README: updated
1878         * device/include/mcs51/c8051f120.h: added PINRSF
1879         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1880         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1881           amidst code. Also inline is not supported.
1882
1883 2005-04-06 Raphael Neider <rneider AT web.de>
1884
1885         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1886         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1887           callers stack/frame pointers
1888
1889 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1890
1891         * device/include/pic16/usart.h: added, missing in previous commit,
1892         * device/include/pic16/adc.h: fixed typo,
1893         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1894         commit,
1895         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1896         <p18fxxx.inc>
1897         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1898         uninitialized because a bug appears with gplink
1899         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1900         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1901         complains for unrecognised option
1902
1903 2005-04-05 Raphael Neider <rneider AT web.de>
1904
1905         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1906           structs as well (using memcpy)
1907         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1908           on ISRs (GOTO has no label)
1909         * src/pic16/device.h: added OF_OPTIMIZE_DF
1910         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1911           new data flow analysis/optimization
1912         * src/pic16/pcode.c: added (prototypes for and implementation of)
1913           dataflow analysis functions, fixed pCodeInstructions' inCond and
1914           outCond values, made RCALL a branch instruction
1915         * (pic16_unlinkpCode): keep C line if possible
1916         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1917           C line moved if possible
1918         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1919         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1920           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1921         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1922           new flow)
1923         * (pic16_getJumptabpCode): NEW, needed in...
1924         * (LinkFlow): fixed handling of jumptables, calls and conditional
1925           branches
1926         * (pic16_InsertCommentAfter): NEW
1927         * (pic16_pCodeReplace): made verbose and flow preserving
1928         * (AnalyzeFlow): added call to data flow analysis
1929         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1930         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1931         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1932
1933 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1934
1935         * src/SDCCast.c (decorateType): fixed bug #1105626
1936
1937 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1938
1939         * device/include/asm/pic16/features.h,
1940         * pic18f*.h headers,
1941         * device/include/pic16/adc.h,
1942         * device/include/pic16/delay.h,
1943         * device/include/pic16/i2c.h,
1944         * device/include/pic16/malloc.h,
1945         * device/include/pic16/stdio.h,
1946         * device/include/pic16/stdlib.h,
1947         * device/include/pic16/string.h,
1948         * device/lib/pic16/libc/stdio/printf_tiny.c,
1949         * device/lib/pic16/libc/stdio/printf_small.c,
1950         * device/lib/pic16/libc/stdio/strmgpsim.c,
1951         * device/lib/pic16/libc/stdio/strmmssp.c,
1952         * device/lib/pic16/libc/stdio/strmusart.c,
1953         * device/lib/pic16/libc/stdio/vfprintf.c,
1954         * device/lib/pic16/libc/stdlib/ltoa.c,
1955         * device/lib/pic16/libc/stdlib/putchar.c,
1956         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1957         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1958         * device/lib/pic16/libc/stdlib/memchrram.c,
1959         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1960         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1961         * device/lib/pic16/libio/adc/adcbusy.c,
1962         * device/lib/pic16/libio/adc/adcread.c,
1963         * device/lib/pic16/libio/adc/adcsetch.c,
1964         * device/lib/pic16/libio/usart/ubaud.c,
1965         * device/lib/pic16/libio/usart/ubusy.c,
1966         * device/lib/pic16/libio/usart/udrdy.c,
1967         * device/lib/pic16/libio/usart/uopen.c,
1968         * device/lib/pic16/libio/usart/uputc.c,
1969         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1970         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1971         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1972         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1973         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1974         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1975         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1976         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1977         specific keywords to double underlined form,
1978         * device/lib/pic16/libc/Makefile.rules,
1979         * device/lib/pic16/libsdcc/Makefile.rules,
1980         * device/lib/pic16/libm/Makefile,
1981         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1982         to compile with C standard set in Makefile.common
1983         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1984         rand.c and crc.c in compilation process,
1985         * device/lib/pic16/libsdcc/int/divuint.c,
1986         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1987         `c' from signed to unsigned,
1988         * device/lib/pic16/startup/crt0.c,
1989         * device/lib/pic16/startup/crt0i.c,
1990         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1991         keywords to double underlined form, bug fixes in _do_cinit function
1992         which prevented the correct initialization of the .idata segment,
1993         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1994         core to enter a infinite loop
1995         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1996
1997 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1998
1999         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2000
2001 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2002
2003         * device/include/Makefile.in: add support for hc08 subdirectory
2004         * device/include/hc08/: new subdirectory
2005         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2006         Lucas Loizaga, thanks!
2007         * device/include/hc08/mc68hc908qy.h,
2008         * device/include/hc08/mc68hc908gp32.h,
2009         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2010         their own directory. Changed internal macro names to use the compiler
2011         reserved namespace. Changed SDCC specific keywords to double
2012         underlined form.
2013         * device/include/math.h,
2014         * device/include/malloc.h,
2015         * device/include/stdarg.h,
2016         * device/include/stdbool.h
2017         * device/include/string.h,
2018         * device/include/tinibios.h,
2019         * device/include/ds400rom.h,
2020         * device/include/8051.h,
2021         * device/include/8052.h,
2022         * device/include/80c51xa.h,
2023         * device/include/at89c55.h,
2024         * device/include/at89S8252.h,
2025         * device/include/at89x51.h,
2026         * device/include/at89x52.h,
2027         * device/include/ds80c390.h,
2028         * device/include/reg764.h,
2029         * device/include/regc515c.h,
2030         * device/include/sab80515.h,
2031         * device/include/mcs51/c8051f000.h,
2032         * device/include/mcs51/c8051f018.h,
2033         * device/include/mcs51/c8051f020.h,
2034         * device/include/mcs51/c8051f040.h,
2035         * device/include/mcs51/c8051f060.h,
2036         * device/include/mcs51/c8051f120.h,
2037         * device/include/mcs51/c8051f300.h,
2038         * device/include/mcs51/c8051f310.h,
2039         * device/include/mcs51/c8051f320.h,
2040         * device/include/mcs51/c8051f330.h,
2041         * device/include/mcs51/c8051f350.h,
2042         * device/include/z180.h: Changed SDCC specific keywords to double
2043         underlined form.
2044
2045 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2046
2047         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2048         18F4455,
2049         * (pic16_assignConfigWordValue): disable testing of configuration
2050         register value with config mask,
2051         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2052         function with port->fun_prefix,
2053         * (genFunction): when generating a naked interrupt function never
2054         create an absolute segment placed in interrupt vector address, place
2055         the actual interrupt function at IVA instead, when an interrupt
2056         function is generated with unspecified interrupt then do not create
2057         the absolute section,
2058         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2059         code for generating a call to generic pointer get/put function with
2060         a call to function pic16_callGenericPointer(),
2061         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2062         the call to the generic pointer get/put functions with prefixing the
2063         function name with port->fun_prefix,
2064         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2065         * src/pic16/main.c (_process_pragma): prefix function with
2066         port->fun_prefix,
2067         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2068         calling assembler, old 18Fxxxx macro is deprecated,
2069         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2070         PC_ASMDIR in while condition,
2071         * (findInstruction): add PC_ASMDIR in while condition,
2072         * (buildCallTree): prefix main with port->fun_prefix,
2073         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2074         identifier for variable with banked access in instructions BTFSS,
2075         BTFSC, BCF, BSF, BTG
2076         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2077         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2078         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2079         perform optimization when enviroment variable NO_REG_OPT is set,
2080         * (insideLRBlock): NEW, return 1 if register is inside an
2081         INF_LOCALREGS block,
2082         * (RemoveRegFromLRBlock): remove a register that is completely
2083         eliminated by register optimization, but it is still left in local
2084         register store/restore in/from stack block,
2085         * (Remove2pcodes): after removing register, check to see if it
2086         should be removed from local register store/restore in/from stack
2087         block,
2088         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2089         DUMMY_READ_VOLATILE,
2090
2091         * device/include/pic16/adc.h: minor prototype modifications and
2092         update,
2093         * device/include/pic16/malloc.h: added GPL notice various
2094         modifications,
2095         * device/include/pic16/stdint.h: NEW, standard header for ints
2096         * device/include/pic16/delay.h: NEW, header for delay functions,
2097         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2098         delay1mtcy,
2099         * device/include/pic16/signal.h: NEW, header providing helper macros
2100         for implementing signal handlers,
2101         * device/include/pic16/stdio.h: added prototypes for functions,
2102         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2103         prototypes for stdin and stdout, added macro PUTCHAR to
2104         automatically implement putchar function prototype,
2105         * device/include/pic16/usart.h: modified and updated USART library,
2106         * device/lib/pic16/libio/adc/,
2107         * device/lib/pic16/libio/i2c: some modifications to improve library
2108         performance,
2109         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2110         family of functions,
2111         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2112         family of functions and other sources,
2113         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2114         of the PIC18Fxx[28] devices,
2115         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2116         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2117         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2118         _do_cinit function, because the previous failed when local variables
2119         where not placed in the same memory bank,
2120         * device/lib/pic16/libsdcc/char/: various modifications to improve
2121         library performance,
2122         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2123         information on the new functions of the c library and more...
2124
2125 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2126
2127         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2128
2129 2005-03-26 Raphael Neider <rneider AT web.de>
2130
2131         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2132           if condition == CARRY)
2133         * (genCmp): adapted to new genSkipc semantics
2134         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2135           on rIfx (genCmp was broken)
2136
2137 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2138
2139         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2140         * src/z80/main.c (_keywords[]),
2141         * src/SDCCglobal.h (struct options),
2142         * src/SDCC.y,
2143         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2144         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2145         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2146         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2147         always available in leading double underscore form. The C99 support is
2148         mostly missing, but it's a start.
2149         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2150         reserved identifier "__data".
2151
2152 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2153
2154         * src/mcs51/peeph.def: fixed bug 1170013
2155
2156 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2157
2158         * device/include/mcs51reg.h: fixed bug 842007
2159
2160 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2161
2162         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2163         last time.
2164
2165 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2166
2167         * src/port.h (struct PORT),
2168         * src/avr/ralloc.c (avr_assignRegisters),
2169         * src/avr/main.c,
2170         * src/ds390/ralloc.c (ds390_assignRegisters),
2171         * src/ds390/main.c,
2172         * src/hc08/ralloc.c (hc08_assignRegisters),
2173         * src/hc08/main.c,
2174         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2175         * src/mcs51/main.c,
2176         * src/pic/ralloc.c (pic14_assignRegisters),
2177         * src/pic/main.c,
2178         * src/pic16/ralloc.c (pic16_assignRegisters),
2179         * src/pic16/main.c,
2180         * src/xa51/ralloc.c (xa51_assignRegisters),
2181         * src/xa51/main.c,
2182         * src/z80/ralloc.c (z80_assignRegisters),
2183         * src/z80/ralloc.h,
2184         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2185         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2186         * src/SDCCcse.h,
2187         * src/SDCCdflow.c (computeDataFlow),
2188         * src/SDCCdflow.h,
2189         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2190         * src/SDCCloop.h,
2191         * src/SDCCcflow.c (*),
2192         * src/SDCCcflow.h,
2193         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2194         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2195         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2196         immedDom() returning wrong block; probably fixes bug #1160833)
2197
2198 2005-03-20 Borut Razem <borut.razem AT siol.net>
2199
2200         * support/scripts/inc2h.pl: WIN32 port
2201
2202 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2203
2204         * device/lib/makefile.in: added abs.c and labs.c
2205
2206 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2207
2208         * device/include/stdint.h: added
2209         * device/lib/abs.c: added
2210         * device/lib/labs.c: added
2211         * device/include/stdlib.h: added abs() and labs() prototypes
2212         * device/lib/libsdcc.lib: added abs and labs
2213         * device/include/float.h,
2214         * device/lib/_fsmul.c,
2215         * device/lib/printf_fast.c,
2216         * device/lib/printf_tiny.c: updated comments
2217
2218 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2219
2220         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2221         bug #1164313
2222
2223 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2224
2225         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2226         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2227
2228 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2229
2230         * device/lib/printf_large.c: removed inline assembly for portability and
2231           readability. Use printf_fast if speed or size are more important.
2232         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2233         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2234
2235 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2236
2237         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2238         prevent compiler warning
2239
2240 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2241
2242         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2243         moved to level 0 and declared as static. Also they are explicit
2244         placed in access bank. This was necessery because some times they
2245         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2246         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2247         optimizations. Currently only compare to unsigned char is implemented,
2248         * src/pic16/gen.c: added fReturnIdx array,
2249         * (struct resolvedIfx) is moved to gen.h and made public,
2250         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2251         * (aopForSym): added an optimization to directly store in stack of
2252         the operand of a SEND iCode,
2253         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2254         but as registers instead (AOP_REG) using the fReturnIdx array,
2255         * (pic16_freeAsmop): remove the freed register from the
2256         _G.sregsAlloc field,
2257         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2258         a compare of 'WREG',
2259         * (pic16_popGetTempRegCond): changed function prototype, now
2260         function takes also a bitVector argument v which holds the current
2261         set of registers that are allocated for stack access by aopForSym,
2262         registers allocated in aopForSym for accessing stack symbols are not
2263         any more part of the functions usedRegs field,
2264         * (genCall): some times aopOp is called for a stack variable to be
2265         send, aopForSym might perform the push, if this is true make sure
2266         that genCall doesn't push the variable twice by testing _G.resDirect,
2267         * (genFunction): changed testing for unspecified interrupt number
2268         from 256 to INTNO_UNSPEC,
2269         * modified selection scheme of frame pointer generation. Previously
2270         if function did use local registers a frame pointer was generated,
2271         now a frame pointer is generated only if function has arguments
2272         (that need PLUSW2 register access), or has stack arguments, or the
2273         compiler is not instructed to omit the frame pointer,
2274         * (genEndFunction): before restoring local registers that were saved
2275         in the function preamble, also restore the registers that *might*
2276         have been allocated for stack access,
2277         * (genRet): removed some old comments,
2278         * (genCmp, the active (RN's) version): added a call to the
2279         pic16_genCmp_special function to perform the compare with a more
2280         robust and optimized way,
2281         * (genInline): a feature has been added in inline code generation,
2282         which allows a wildcard variable substitution when writing inline
2283         assembly. Code is incomplete and experimental therefore undocumented,
2284         * (genCast): changed order of aopOp for result and right to allow
2285         aopForSym to directly load the result if possible,
2286         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2287         perform an optimized compare on some selected special occasions,
2288         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2289         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2290         generate an IVT any more,
2291         * src/pic16/main.c (pic16_optionsTable): added command line option
2292         --optimize-cmp,
2293         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2294         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2295         macros,
2296         * src/pic16/NOTES: Raphael Neider added in list of active developers
2297         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2298         jumptable_end to prevent bug #,
2299         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2300         inCond and outCond fields,
2301         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2302         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2303         turn off register spilling,
2304         * (packRegsForOneUse): synced with other ports' versions although it
2305         is not used currently,
2306         * (pic16_packRegisters): added an optimization while reading
2307         structure bitfields, some registers may be saved (malloc code is
2308         decreased by 80 bytes)
2309
2310 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2311
2312         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2313         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2314         this can be optimized more?
2315
2316 2005-03-10 Raphael Neider <rneider AT web.de>
2317
2318         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2319           genNearPointerGet): (hopefully) fixed access to bitfields via
2320           pointers (p->bitN = x; and x = p->bitN; failed)
2321
2322 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2323
2324         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2325
2326 2005-03-09 Raphael Neider <rneider AT web.de>
2327
2328         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2329
2330 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2331
2332         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2333         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2334           (regTypeNum): set REG_BIT type if necessary
2335         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2336         * support/regression/tests/critical.c: check bug 1144613
2337
2338 2005-03-02 Raphael Neider <rneider AT web.de>
2339
2340         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2341
2342 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2343
2344         * src/avr/ralloc.c (serialRegAssign),
2345         * src/ds390/ralloc.c (serialRegAssign),
2346         * src/hc08/ralloc.c (serialRegAssign),
2347         * src/mcs51/ralloc.c (serialRegAssign),
2348         * src/pic/ralloc.c (serialRegAssign),
2349         * src/pic16/ralloc.c (serialRegAssign),
2350         * src/xa51/ralloc.c (serialRegAssign),
2351         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2352
2353 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2354
2355         * src/SDCCast.c (decorateType): fixed bug 1124787
2356
2357 2005-02-20 Hubert Sack <sack AT digiplan.de>
2358         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2359
2360         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2361         patch #1121755
2362
2363 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2364
2365         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2366         to keep the correct label reference count when adding/removing references
2367         to labels. A peephole file using this is appended to patch #1144962.
2368
2369 2005-02-14 Raphael Neider <rneider AT web.de>
2370
2371         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2372         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2373         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2374           retrievals of result operand's value on assignment
2375
2376 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2377
2378         * device/include/pic16/string.h: modified prototype for memccpy()
2379         to memccpy(void *, void *, char, size_t)
2380         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2381         check whether to omit frame pointer or not,
2382         * (genInline): convert all occurences of "\n" to LF in inline
2383         assembler blocks, this helps formatting the inline text,
2384         * (pic16_loadFSR0): modified prototype,
2385         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2386         removed some 8051 legacy code,
2387         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2388         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2389         before allocating temporary registers in functions,
2390
2391 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2392
2393         * support/regression/tests/bitvars.c: corrected the "fix"
2394
2395 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2396
2397         * support/regression/tests/bitvars.c,
2398         * support/regression/tests/bitwise.c,
2399         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2400
2401 2005-02-10 Raphael Neider <rneider AT web.de>
2402
2403         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2404           different size for Alpha
2405         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2406
2407 2005-02-09 Raphael Neider <rneider AT web.de>
2408
2409         * src/SDCC.lex(doPragma) : save and restore warning options as well
2410           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2411         * have #pragma less_pedantic set the errorlevel to WARNING
2412           (fixes #1117001)
2413         * (cloneOptimize) : fixed wrong malloc's size
2414         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2415           facilitate correct handling of #pragma (save|restore)
2416
2417 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2418
2419         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2420
2421 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2422
2423         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2424
2425 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2426
2427         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2428
2429 2005-02-02 Raphael Neider <rneider AT web.de>
2430
2431         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2432         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2433         * (pic16_storeForReturn): fixed to allow returning function pointers
2434         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2435         * device/include/pic16/{stddef.h,stdbool.h}: added
2436
2437 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2438
2439         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2440
2441 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2442
2443         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2444         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2445          appeared to be required
2446
2447 2005-01-31 Borut Razem <borut.razem AT siol.net>
2448
2449         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2450           include/mcs51 and include/z80 directories to the package
2451
2452 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2453
2454         * src/hc08/gen.c (genFunction): fixed bug #1112752
2455
2456 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2457
2458         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2459
2460 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2461
2462         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2463
2464 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2465
2466         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2467
2468 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2469
2470         * device/include/c8051fxxx.h: removed these 6 files
2471         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2472
2473 2005-01-26 Raphael Neider <rneider AT web.de>
2474
2475         * src/pic16/gen.c (genAssign): fixed assignment from longs
2476           in codespace (were cut to three bytes)
2477         * (genDummyRead): implemented (except for CODESPACE...),
2478           fixed bug #1108575
2479         * src/pic16/glue.c (emitStatistics): beautified
2480         * device/lib/pic16/libm/Makefile: added include path
2481
2482 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2483
2484         * src/z80/gen.c (aopPut): fixed bug #1103902
2485
2486 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2487
2488         * device/lib/expf.c: fixed bug #1095792
2489
2490 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2491
2492         * device/lib/pic16/libm: added Math library sources
2493
2494 2005-01-24 Raphael Neider <rneider AT web.de>
2495
2496         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2497           to enable upcast to pCodeOpReg2 (there is no type tag to
2498           differenciate the two and pic16_popGet2p cast into PCOR2)
2499         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2500           (sizeof(sectNames) changed to sizeof(sectName))
2501           Both patches fix segfaults under MinGW.
2502
2503 2005-01-23 Raphael Neider <rneider AT web.de>
2504
2505         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2506           Safe_[mc]?alloc()'ed variables
2507         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2508           of (byte sized) temporaries (assign them to WREG for now)
2509         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2510           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2511           this might fix SIGSEGVs on MinGW...
2512         * src/SDCCopt.c (killDeadCode): restored original behaviour
2513           (volatile operands might get thrown away though)
2514
2515 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2516
2517         * src/pic16/gen.c: fixed bug #1106975,
2518         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2519         pointer update, INTCON is saved, global interrupts are disabled and
2520         restored after updateing TOS.
2521         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2522         * added function attribute 'shadowregs' to take advantage of shadow
2523         registers,
2524         * added function attribute 'wparam' as an alternative to the wparam
2525         pragma,
2526         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2527         user declares a non-ISR function as 'shadowregs',
2528         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2529
2530 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2531
2532         * .version: bumped version number to 2.4.8
2533         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2534         pic16 port,
2535         * device/lib/pic16/libio/i2c/: I2C module support library,
2536         * device/include/pic16/i2c.h: I2C support library header,
2537         * device/lib/pic16/libc/stdio/: standard IO support sources,
2538         * (printf_small.c): printf_small() source, supports float print,
2539         * (printf_tiny.c): printf_tiny() source, does not support floats,
2540         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2541         enable global optimizations for entire library source, other
2542         Makefiles in the source tree are also modified to reflect this,
2543         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2544         function,
2545         * doc/sdccman.lyx: updated to reflect new changes,
2546         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2547         sym->onStack if-case,
2548         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2549         sbit, idata, _idata, xdata, _xdata,
2550         * added pragma library, to link an external library, (see doc),
2551         * removed command line options, --pomit-config-words, --pomit-ivt,
2552         --pleave-reset-vector,
2553         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2554         when calling assembler to reflect memory model used, also define
2555         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2556         reflect stack model used,
2557         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2558         on stack return NULL,
2559
2560 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2561
2562         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2563           of the operands is volatile. Fixes #1020220
2564
2565 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2566
2567         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2568         * (OptimizeRegUsage): make sure that there is really no other flow where
2569           the first pCode is used
2570
2571 2005-01-22 Raphael Neider <rneider AT web.de>
2572
2573         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2574           to fix #1106967 (pCode->seq are not set up correctly)
2575
2576 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2577
2578         * src/SDCCglue.c (glue): make sure code area is declared before the
2579         static initialization area.
2580
2581 2005-01-21 Raphael Neider <rneider AT web.de>
2582
2583         * device/lib/Makefile.in: fixed test for pic16 install dir
2584         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2585           optimizations
2586         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2587           added --optimize-goto compiler switch and pragma wparam documentation
2588         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2589         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2590           and PRODH closing bug #1071770 (peephole optimizer)
2591
2592 2005-01-19 Raphael Neider <rneider AT web.de>
2593
2594         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2595           cmdLine buffers (used when calling sdcpp...) are large enough
2596           (MAX_PATH=256 truncates arguments leading to system halts when
2597           used in MinGW...)
2598         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2599         * (genUminus): rewritten to for efficiency
2600         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2601           used uninitialized in some cases)
2602         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2603           copy the third byte from the int -- now assumes 0x80 (data memory)
2604         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2605           operands (genAddLit expects the iCode's operands to swapped as
2606           well), fixed leftover bytes (crashed for short left operands)
2607         * (pic16_genMinusDec): performance improvements, removed false
2608           PIC14 emitSKPNCs
2609         * (pic16_genMinus): fixed to cope with differently sized operands
2610         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2611           for --obanksel > 1
2612         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2613         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2614           new banksel optimization
2615         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2616           analysis for temporary registers (segfaults...)
2617         * src/pic16/peeph.def: added rule
2618
2619 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2620
2621         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2622         which converts a float number to its ASCII representation
2623         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2624         functions to convert the fractional and integer part of a float to ASCII,
2625         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2626         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2627         ram
2628         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2629         _STATMEM macros,
2630         * device/include/pic16/adc.h: added GPL info,
2631         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2632         a pCodeOp as tested operand,
2633         * (genNearPointerGet): optimized bit testing, does not use
2634         intermediate register for bit value, test directly instead with
2635         BTFSS, BTFSC, works only for single bits,
2636         * (genpic16Code): dump the name of the iCode in the asm,
2637         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2638         renamed to pic16_decodeOp,
2639         * (serialRegAssign): do not allocate a temporary register for iCode
2640         sequences that test a single bit for 1/0
2641
2642 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2643
2644         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2645         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2646         access stack and frame pointers. They are initially assigned to
2647         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2648         accessing SFRs. Updated all occurences of modification of stack or
2649         frame pointer in gen.c and pcode.c,
2650         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2651         assigning of a literal value to pointers,
2652         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2653         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2654         selected
2655
2656 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2657
2658         * doc/sdccman.lyx: update documentation about stack pragma, added
2659         some info for stack memory models
2660
2661 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2662
2663         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2664
2665 2005-01-08 Raphael Neider <rneider AT web.de>
2666
2667         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2668           udata sections to fix bug #1097823
2669
2670 2005-01-05 Raphael Neider <rneider AT web.de>
2671
2672         * src/pic16/gen.c (genGenericShift): added handling of differently
2673           sized left operand and result
2674
2675 2005-01-04 Raphael Neider <rneider AT web.de>
2676
2677         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2678         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2679           to hold the condition bit)
2680         * added new version of genCmp (old code available via #define)
2681         * added new version of genShiftLeft/genShiftRight in a generic
2682           way, now supports shifting by negative values
2683         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2684           shiftCount (expected by genGenericShift)
2685         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2686         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2687           dump
2688         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2689           is an invalid literal too...)
2690
2691 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2692
2693         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2694         from Raphael Neider,
2695         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2696         for 8-bit literals. This fixes some literal operands which are sign
2697         extended to 16-bits ints when instruction needs only 8-bits.
2698
2699 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2700
2701         * device/lib/logf.c: added mcs51 assembly version
2702         * device/lib/expf.c: added mcs51 assembly version
2703         * device/lib/_logexpf.c: new shared asm code for expf and logf
2704         * device/include/math.h: add defines for assembly math library
2705         * device/lib/Makefile.in: build new _logexpf.c
2706         * device/lib/libfloat.lib: use new _logexpf.c
2707
2708 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2709
2710         * src/pic/device.c
2711         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2712           device types which have less than 0x7f registers.
2713
2714 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2715
2716         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2717
2718 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2719
2720         * device/lib/printf_fast.c: only build on supported arch.
2721         * device/lib/printf_tiny.c: only build on supported arch.
2722         * device/lib/printf_fast_f.c: only build if asm float lib
2723         * device/lib/_fsget1arg.c: only build if asm float lib
2724         * device/lib/_fsget2args.c: only build if asm float lib
2725         * device/lib/_fsnormalize.c: only build if asm float lib
2726         * device/lib/_fsreturnval.c: only build if asm float lib
2727         * device/lib/_fsrshift.c: only build if asm float lib
2728         * device/lib/_fsswapargs.c: only build if asm float lib
2729         * device/include/stdio.h: don't provide print_fast,
2730           print_fast_f, print_tiny prototypes if --xstack used
2731
2732 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2733
2734         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2735         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2736           to the SOURCES
2737
2738 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2739
2740         * device/lib/printf_fast_f.c: same as printf_fast, but
2741           with floating point enabled
2742         * device/lib/printf_fast.c: minor tweaks
2743         * device/include/stdio.h: add printf_fast_f
2744
2745 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2746
2747         * src/SDCCmain.c: make --float-reent default for mcs51
2748         * device/lib/_fsadd.c: added mcs51 assembly version
2749         * device/lib/_fssub.c: added mcs51 assembly version
2750         * device/lib/_fsmul.c: added mcs51 assembly version
2751         * device/lib/_fsdiv.c: added mcs51 assembly version
2752         * device/lib/_fseq.c: added mcs51 assembly version
2753         * device/lib/_fsneq.c: added mcs51 assembly version
2754         * device/lib/_fsgt.c: added mcs51 assembly version
2755         * device/lib/_fslt.c: added mcs51 assembly version
2756         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2757         * device/lib/Makefile.in: add _fscmp to build
2758         * device/lib/libfloat.lib: add _fscmp to build
2759
2760 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2761
2762         * device/lib/_fs2slong.c: added mcs51 assembly version
2763         * device/lib/_fs2sint.c: added mcs51 assembly version
2764         * device/lib/_fs2schar.c: added mcs51 assembly version
2765         * device/lib/_fs2ulong.c: added mcs51 assembly version
2766         * device/lib/_fs2uint.c: added mcs51 assembly version
2767         * device/lib/_fs2uchar.c: added mcs51 assembly version
2768         * device/lib/_slong2fs.c: added mcs51 assembly version
2769         * device/lib/_sint2fs.c: added mcs51 assembly version
2770         * device/lib/_schar2fs.c: added mcs51 assembly version
2771         * device/lib/_ulong2fs.c: added mcs51 assembly version
2772         * device/lib/_uint2fs.c: added mcs51 assembly version
2773         * device/lib/_uchar2fs.c: added mcs51 assembly version
2774         * device/include/float.h: added #define to select asm vs c
2775
2776 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2777
2778         * device/lib/printf_fast.c: improvements to float output
2779         * device/include/float.h: add defines for assembly float library
2780         * device/lib/_fsget1arg.c: receive 1 float arg
2781         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2782         * device/lib/_fsnormalize.c: normalize a float
2783         * device/lib/_fsreturnval.c: return float, various helper routines
2784         * device/lib/_fsrshift.c: right shift a float's mantissa
2785         * device/lib/_fsswapargs.c: swap 2 floats
2786         * device/lib/Makefile.in: build these 6 new files for mcs51
2787         * device/lib/libfloat.lib: add these 6 files to the library
2788
2789 2004-12-26 Borut Razem <borut.razem AT siol.net>
2790
2791         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2792           built by gcc 3.4.2
2793
2794 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2795
2796         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2797           and fully reentrant and register bank neutral.
2798         * device/lib/printf_fast.c: added float (not enabled by default),
2799           added compact/slower integer (also not enabled by default),
2800           improved size/speed of fast integer code, other minor changes
2801         * device/include/stdio.h, device/lib/Makefile.in,
2802           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2803
2804 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2805
2806         * src/pic16/pcode.c: declaring variables other than at the start of a
2807           block is not supported in C by VC6.
2808
2809 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2810
2811         * applied a previous patch from Raphael Neider that wasn't included
2812         in the previous commits, which fixes infinite loops within jumptable
2813         improvements,
2814         * made some fixes that previous patches introduced
2815
2816 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2817
2818         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2819         that fixes an issue with AOP_PCODE asmop's offset,
2820         * (pic16_popCopyReg): update instance field too,
2821         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2822         function of pic port,
2823         * (genCmp, genAnd, genAssign),
2824         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2825
2826 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2827
2828         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2829         variables initial values to idata section,
2830         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2831         variables in some functions. This utilizes parmBytes field of iCode
2832         structure to hold the offset of the variable in stack. (might be
2833         able to use the stack field too?)
2834         * applied patch from Raphael Neider # ### , # ###
2835         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2836         variable initial values in idata section,
2837         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2838         for static variables with initial value
2839         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2840         applied fix in while loop from Raphael Neider.
2841
2842 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2843
2844         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2845         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2846         * src/ds390/ralloc.c (serialRegAssign): spill bits
2847         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2848         * support/Util/SDCCerr.c,
2849         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2850         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2851         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2852
2853 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2854
2855         * device/include/sdcc-lib.h: inserted LGPL, added includes
2856           asm/ds390/features.h and asm/mcs51/features.h
2857         * device/include/asm/default/features.h,
2858         * device/include/asm/gbz80/features.h,
2859         * device/include/asm/z80/features.h: added empty _AUTOMEM
2860           and _STATMEM
2861         * device/include/asm/ds390/features.h,
2862         * device/include/asm/mcs51/features.h: added files with defines for
2863           _AUTOMEM and _STATMEM indicating automatic and static storage class
2864         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2865         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2866         * src/SDCCicode.c (geniCodeCast),
2867         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2868         * src/SDCCloop.c (loopInduction): removed unused variable lr
2869         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2870           to convertToFcall to include char modulo (RFE 1065037), added check
2871           if left operand is unsigned and use abs of literal value
2872         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2873           as it doesn't work after conversion from peephole.def to peephole.rul
2874         * src/mcs51/gen.c (toBoolean): added check for size,
2875           (genModOneByte): optimized code for signed char modulo a literal
2876           power of 2 (thanks to Hubert Sack),
2877           (genRRC): removed unnecessary "clr c",
2878           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2879         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2880           jump optimization,
2881           swapped rules 256.c and 256.d,
2882           extended 256.d by using new multiple checks (thanks Erik),
2883           added rules 256.e and 256.f,
2884           updated rule 261.a and 261.b to new generated code
2885         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2886
2887 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2888
2889         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2890           induction related bugs, including first part of bug #1074377
2891
2892 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2893
2894         * applied patch from bug-report #1076292,
2895         * applied patches for genAnd and Goto-optimizations for Raphael
2896         Neider,
2897         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2898         dump a less iCode information,
2899         * src/pic16/device.h (pic16_options_t): added field debgen,
2900         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2901         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2902         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2903         puclic,
2904         * (various functions): added macros FENTRY and FENTRY2 to functions,
2905         to emit function prologue,
2906         * (various functions): fixed indentation,
2907         * (genNearPointerGet): fixed loading of FSR0,
2908         * (genPackBits): applied patch from Raphael Neider to fix updating
2909         of FSR0 and touching only the modified bits,
2910         * src/pic16/genarith.c (various functions): added macros FENTRY to
2911         emit function prologue in comments,
2912         * src/pic16/pcode.h: added functions debugf2, debugf3,
2913         * src/pic16/ralloc.c: partial fix for packForPush caused
2914         segmentation fault,
2915
2916 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2917
2918         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2919           <stsp AT users.sourceforge.net> with reversed byte order
2920         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2921
2922 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2923
2924         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2925           bug #1074377
2926         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2927         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2928
2929 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2930
2931         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2932
2933 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2934
2935         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2936           conditions,
2937           (setFromConditionArgs): friendly operand parser for peephole rules,
2938           (operandBaseName, operandsNotRelated): new peephole condition
2939           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2940           architecture specific register naming into account, handles n-way
2941           comparisons, and supports quoted literals
2942         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2943
2944 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2945
2946         * src/mcs51/peeph.def: fixed bug #1076940
2947
2948 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2949
2950         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2951
2952 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2953
2954         Adding support for replacing ljmps with sjmps in jumptables
2955         generated for switch statements. For now you need to set the
2956         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2957         Now 4 algorithms for mcs51 jumptable generation are used:
2958         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2959         addresses loaded pc-relative for up to 112 cases and stack-pushing
2960         target addresses loaded with offset from dptr for up to 256 cases.
2961
2962         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2963         * src/mcs51/main.c: adapted constants for switch table generation
2964         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2965
2966 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2967
2968         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2969         * support/regression/tests/bug1057979.c: added test for bug 1073386
2970
2971 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2972
2973         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2974         compilers
2975
2976 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2977
2978         * src/pic16/device.h,
2979         * src/pic16/genarith.c,
2980         * src/pic16/glue.c,
2981         * src/pic16/main.c,
2982         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2983
2984 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2985
2986         Large cummulative patch for pic16 port.
2987         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2988         to call when a stack overflow occurs,
2989         * (malloc.h): added CVS Id tag,
2990         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2991         variable,
2992         * added libc directory. The current version of LibC contains string
2993         functions, ctype functions and macros and some functions of the
2994         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2995         be extensively tested in the future. Standard disclaimer here.
2996         Library is not automatically build yet. But one can build it by
2997         invoking 'make' inside the libc directory.
2998         * added ADC library under libio. Preliminary version yet.
2999
3000         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3001         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3002         aopForRemat() now and not by pic16_aopOp(),
3003         * (pic16_popGetTempReg): removed warning messgae when allocating
3004         temporary registers, its a buggy feature and will be removed,
3005         * (pic16_popGet): set register instance field in AOP_CRY,
3006         * (pic16_outBitC): fixed for results in size greater than 1,
3007         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3008         * (pic16_storeForReturn): optimized return of 0,
3009         * (genCmp): experimental code for new genCmp which uses PIC18's
3010         special compare&skip instructions. Initial tests fail some times
3011         with variables grater than 1 byte in size, so new code is disabled,
3012         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3013         a single bit,
3014         * (genCast): began a fix to optimize the casting of a bit to another
3015         bit, now assigning a bitfield to another bitfield will fail, sorry,
3016         * src/pic16/main.c: disabled the use of lr-support feature,
3017         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3018         * added some function prototypes, added function _debugf prototype,
3019         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3020         bits with offset (case PO_GPR_BIT),
3021         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3022         command line,
3023         * (isBankInstruction): modified to return 0 for no banking instruction,
3024         and 1 for banking instruction,
3025         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3026         caused stop processing pCodes after a inline assembly block,
3027         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3028         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3029         registers when it shouldn't,
3030         * src/pic16/ralloc.c (allocReg): add preliminary support for
3031         supporting a limited set of temporary registers,
3032
3033 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3034
3035         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3036           genDataPointerSet): ensure assignments always copy in MSB to LSB
3037           order,
3038           (loadRegFromAop): recognize CLRH optimization,
3039           (genFunction): optimize RECEIVE iCodes in reentrant functions
3040
3041 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3042
3043         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3044           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3045           selected.
3046         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3047         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3048           contiguous with data
3049
3050 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3051
3052         * device/lib/_gptrget.c (_gptrget),
3053         * device/lib/_gptrgetc.c (_gptrgetc),
3054         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3055           instead of sjmp to ret
3056         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3057           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3058
3059 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3060
3061         * .version: bumped version to 2.4.7
3062         * device/lib/_gptrget.c (_gptrget): is now _naked
3063         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3064         * device/lib/_gptrput.c (_gptrput): is now _naked
3065         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3066           (createFunction): fixed xstack
3067         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3068         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3069           or bit either,
3070           (geniCodeCritical): store original interrupt state in an iTemp bit
3071           var unless stack-auto
3072         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3073         * src/SDCCmain.c (setIncludePath): added include/target to search path
3074         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3075         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3076           prototype,
3077           (processFuncArgs): put bit vars in bit area
3078         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3079           unsaveRBank): fixed xstack,
3080           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3081           (genFunction, genEndFunction): fixed xstack,
3082           (genAssign): optimization don't walk backwards through mem
3083         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3084         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3085         * support/regression/Makefile: also make library (for stack-auto) when
3086           making "all" and added "test-mcs51-xstack-auto"
3087         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3088         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3089         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3090         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3091         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3092           make-library by MAKE_LIBRARY
3093         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3094           regression tests for xstack
3095         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3096         * support/regression/tests/critical.c: test for critical on mcs51
3097
3098 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3099
3100         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3101           built version of sdcc instead of installed version
3102
3103 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3104
3105         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3106         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3107           vprintf.c now
3108         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3109         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3110           WARNING: remove device/lib/build/z80/printf.o by hand when
3111           updating from previous build!
3112         * device/lib/z80/printf.c: updated comment
3113         * support/regression/tests/bug1057979.c: test all ports now
3114         * support/regression/tests/bug1065458.c: file added
3115
3116 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3117
3118         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3119           *_start and *_end symbols for static functions
3120
3121 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3122
3123         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3124           and search crt0.o in all library paths,
3125           (setIncludePath): proper handling of --nostdinc,
3126           (setLibPath): proper handling of --nostdlib
3127         * support/regression/Makefile,
3128         * support/regression/ports/ds390/spec.mk,
3129         * support/regression/ports/gbz80/spec.mk,
3130         * support/regression/ports/hc08/spec.mk,
3131         * support/regression/ports/mcs51/spec.mk,
3132         * support/regression/ports/mcs51-large/spec.mk,
3133         * support/regression/ports/mcs51-stack-auto/spec.mk,
3134         * support/regression/ports/z80/spec.mk: use include and lib files from
3135           built version of sdcc instead of installed version
3136         * doc/sdccman.lyx: fixed typo in --nostdinc
3137
3138 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3139
3140         * src/pic/pcode.c,
3141         * src/pic/device.c,
3142         * src/pic/ralloc.c,
3143         * src/pic/gen.c : added support to generate code for struct bit fields.
3144
3145 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3146
3147         * as/xa51/xa_version.h,
3148         * device/include/errno.h,
3149         * device/include/regc515c.h,
3150         * device/lib/_itoa.c,
3151         * device/lib/_ltoa.c,
3152         * device/lib/ser_ir_cts_rts.c,
3153         * sim/ucsim/xa.src/glob.cc,
3154         * sim/ucsim/xa.src/inst_gen.cc,
3155         * sim/ucsim/xa.src/xa_bit.cc,
3156         * sim/ucsim/xa.src/xa_sfr.cc,
3157         * sim/ucsim/z80.src/inst_dd.cc,
3158         * sim/ucsim/z80.src/inst_fdcb.cc,
3159         * support/scripts/keil2sdcc.pl,
3160         * src/pic16/pic16.dsp,
3161         * src/pic16/pic16a.dsp: corrected cvs line endings
3162         * device/lib/printf_large.c: fixed bug 1057979
3163         * src/pic16/gen.c: fixed non-C standard code
3164         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3165         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3166         * support/regression/ports/mcs51/support.c: reload T1 asap
3167         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3168           pdata use and clear idata startup behaviour
3169         * support/regression/tests/bug1057979.c: added
3170
3171 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3172
3173         * device/examples/ds390/ow390/ad26.h,
3174         * device/examples/ds390/ow390/cnt1d.h,
3175         * device/examples/ds390/ow390/crcutil.c,
3176         * device/examples/ds390/ow390/ownet.h,
3177         * device/examples/ds390/ow390/owsesu.c,
3178         * device/examples/ds390/ow390/swt12.h,
3179         * device/examples/ds390/ow390/swtoper.c,
3180         * device/examples/ds390/ow390/temp10.h,
3181         * device/examples/ds390/ow390/thermodl.c,
3182         * device/examples/ds390/tinitalk/tinitalk.dsp,
3183         * device/examples/ds390/tinitalk/tinitalk.dsw,
3184         * device/examples/mcs51/clock/hw.h,
3185         * device/examples/mcs51/simple2/go.bat,
3186         * device/examples/serialcomm/windows/serial.h,
3187         * device/examples/xa51/dummy.c,
3188         * device/examples/xa51/hello.c,
3189         * device/include/80c51xa.h,
3190         * device/include/at89x051.h: corrected cvs line endings
3191
3192 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3193
3194         * src/pic16/main.c (options): added command line --gstack, to trace
3195         stack over/under flows,
3196         * added pragma 'wparam' to allow passing first byte of function
3197         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3198         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3199         call to __gstack_test function and sets up the symbol as extern,
3200         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3201         * popaop): added call to pic16_testStackOverflow,
3202         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3203         wparamList list,
3204         * (genCall, genPcall): now all parameters are passed via stack
3205         except in functions that are pass to wparam pragma in which WREG is
3206         used too,
3207         * (genPcall): REENTRANT flag is checked to see if variable prototype
3208         contains reentrant keyword, don't call a non-reentrant function, via
3209         a reentrant function pointer or vice versa, functions are never
3210         passed via WREG,
3211         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3212         D.Winkler,
3213         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3214         SIGSEGV when accessing a NULL register stucture,
3215         * (pic16_printGPointerType): modified to handle UPPER modifier for
3216         function initializers, changed prototype of function to simpler one,
3217         * (pic16_printIvalFuncPtr): check to see if function is already
3218         added in externs list,
3219         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3220         optimized a move from W to SFR with a move to the same register
3221         later after a CALL,
3222         * device/lib/pic16/debug: NEW directory, contains debug features
3223         which are enabled when linking with libdebug.lib, currently command
3224         line option --gstack enables stack pointer tracing for over/under
3225         flow, corresponding sources are in debug/gstack
3226
3227 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3228
3229         * doc/sdccman.lyx: updated SDCC version,
3230         * (PIC16 port): update list of command line options,
3231         * src/pic16/device.h (structure pic16_options_t): added field gstack
3232         to enable stack overflow tracing on push/pops,
3233         * src/pic16/device.c (statistics structure): added statistics
3234         structure,
3235         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3236         pic16_dump_int_registers): increase statistics counters for each
3237         * variable which is encountered
3238         * (pic16_dump_usection): emit each .udata variable to its own udata
3239         section,
3240         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3241         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3242         parameters via stack, otherwise use old scheme,
3243         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3244         assembler output file,
3245         * src/pic16/main.c: added command line options --gstack to enable
3246         push/pop tracing for stack overflow,
3247         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3248         instructions): added size of each instruction,
3249         * (pic16_countInstruction): estimate size of instructions in
3250         the_pFile list, inline assembly blocks are not counted,
3251         * (pic16_FixRegisterBanking): trace previous register usage, when
3252         banksel optimizations is greater than 0, don't emit a redudant
3253         banksel directive,
3254
3255 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3256
3257         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3258         * src/pic16/ralloc.c : applied same fix for pic16.
3259         * src/pic/gen.c : tidied it up a little.
3260
3261 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3262
3263         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3264         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3265
3266 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3267
3268         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3269
3270 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3271
3272         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3273         non-reentrant function __modsint in the interrupt function (thus
3274         corrupting math operations during serial I/O)
3275         * device/lib/ser_ir.c: as above, changed buffersize
3276         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3277         256.c,d for zeroing
3278         * doc/Makefile: added option -t for rsync
3279
3280 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3281
3282         * src/SDCCast.h (struct ast),
3283         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3284
3285 2004-10-20 Borut Razem <borut.razem AT siol.net>
3286
3287         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3288         package
3289
3290 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3291
3292         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3293         makefile targets,
3294         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3295         support functions to replace long sequences of MOVFF's from access
3296         bank registers to stack and vice versa,
3297         * src/pic16/device.h: added new field opt_flags, where optimization
3298         flags can be set to enable certain features,
3299         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3300         * pBlock, (genFunction, genEndFunction): surroung loop for
3301         saving/loading used registers in stack with PC_INFO pCodes,
3302         INF_LREGS. Code in between can then be optimized by pCode optimizer
3303         to support function calls,
3304         * (genDataPointerSet): fixed bug which loaded float fields in
3305         structures with corrupt data,
3306         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3307         in a standard way debug info on stderr. Feature used for developing
3308         and debugging only,
3309         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3310         obsolete chunks of code,
3311         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3312         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3313         * pic16/src/pcode.c (pic16_newpCodeInfo,
3314         * (pic16_newpCodeOpLocalRegs),
3315         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3316         feature,
3317         * (pic16_pCodeConstString): printing of the initial value of a
3318         symbol as a comment is inhibited since parsing was already done by
3319         copyStr and output is corrupt,
3320         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3321
3322 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3323
3324         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3325
3326 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3327
3328         * as/mcs51/lkarea.c: removed old K&R style,
3329           (lnksect): changed check on boundary error,
3330           (lnksect2): changed check on boundary error,
3331           (lnksect2): extend XSTK to end of page if size = 1
3332         * as/mcs51/lkmain.c: removed old K&R style,
3333           (Areas51): create l_IRAM symbol
3334         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3335         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3336           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3337         * device/lib/_mullong.c: added version to be compiled with xstack
3338         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3339         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3340         * device/lib/mcs51/crtxstack.asm: fixed comment
3341         * src/SDCCglue.c: maxInterrupts defaults to 0,
3342           (emitMaps): added pdata,
3343           (createInterruptVect): (re)moved default,
3344           (glue): added pdata,
3345           (glue): moved __start__xstack to XSTK with default size 1
3346         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3347           and options.float_rent when options.stackAuto is set,
3348           (linkEdit): only write XDATA_NAME if provided on command line
3349         * src/SDCCmem.h,
3350         * src/SDCCmem.c: added pdata
3351         * src/port.h: added pdata_name to PORT
3352         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3353           (saveRegisters, unsaveRegisters): removed usage of B,
3354           (genMinus): fixed accumulator clash,
3355           (genJumpTab): added comment, this needs another look
3356         * src/mcs51/gen.c: added check for "B in use" paranoia,
3357           added pushB() and popB()
3358         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3359           chance
3360         * src/avr/main.c,
3361         * src/ds390/main.c,
3362         * src/hc08/main.c,
3363         * src/mcs51/main.c,
3364         * src/pic/main.c,
3365         * src/pic16/main.c,
3366         * src/xa51/main.c,
3367         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3368           added PSEG (PAG,XDATA) or NULL to port specifier
3369         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3370         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3371           (_mcs51_genInitStartup): removed __start__xstack equ,
3372           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3373         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3374         * src/z80/gen.c (_rleAppend): fixed warnings
3375         * support/regression/tests/zeropad.c: added pdata test
3376         * .version: bumped to 2.4.6
3377
3378 2004-10-17 Borut Razem <borut.razem AT siol.net>
3379
3380         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3381         as a part of nightly build
3382
3383 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3384
3385         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3386         WREG holds the first byte function parameters,
3387         * (aopForSym): take special case for symbols which are in FARSPACE
3388         but in CODESPACE too,
3389         * (assignResultValue): modified to take into account _G.useWreg,
3390         * (genCall): don't use wreg for parameter passing when function is
3391         declared as reentrant, too, added optimization INCF to stack
3392         pointer when stack parameter count is 1,
3393         * (genFunction, genEndFunction): refurnished and fixed to not using
3394         wreg for passing parameters when function has varargs or is
3395         reentrant, fixed bug with symbol name compare for generating
3396         functions in absolute address,
3397         * (pic16_storeForReturn): refurnished,
3398         * (genCmp): began writing a new version of the function, not ready
3399         yet, therefore it is disabled,
3400         * (genAssign): do not read code memory when assigning a function to
3401         a pointer function,
3402         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3403         array of characters, not pointer,
3404         * (pic16initialComments): in debug mode emit an .ident directive for
3405         the assembler,
3406         * (_process_pragma): emit a new warning type (internal to pic16)
3407         when setting stack to default length, emit a similar warning when
3408         placing a function at absolute address and address is not word aligned
3409         * (_pic16_parseOptions): added 'return TRUE' statement,
3410         * (_pic16_linkEdit): if compiling a source, then add the source's
3411         file object, first in the list of objects to link,
3412
3413 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3414
3415         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3416         * src/pic/main.c : removed VC warning.
3417         * src/pic/gen.c : changed comment.
3418
3419 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3420
3421         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3422         reference to a deprecated symbol _GPTRREG was causing failure to
3423         link. Thanks G. M. Gallant for the info.
3424
3425 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3426
3427         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3428         comments for Bugs item #954788.
3429
3430 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3431
3432         * src/pic16/device.c (pic16_dump_gsection,
3433         * pic16_groupRegistersInSection): handle symbols declared to be in
3434         access bank differently,
3435         * src/pic16/gen.c (struct _G): added field resDirect,
3436         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3437         send values read from stack directly to result and don't allocate
3438         temporary values,
3439         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3440         same registers,
3441         * (pic16_sameRegsOfs): NEW,
3442         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3443         free because they were not allocated from temporary pool,
3444         * pic16_popRegFromString): workaround to fix a problem with
3445         allocating variables twice or never,
3446         * (genGenPointerGet): using PRODL instead of FSR0H,
3447         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3448         instead of FSR0H,
3449         * (genAssign): take advantage of the _G.resDirect flag,
3450         * (genCast): around line 11844, use mov2f instead of directly
3451         MOVFF'ing between operands to account for literal values,
3452         * src/pic16/genutils.c: some new debug functions for gpsim have been
3453         added,
3454         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3455         float with integer part only,
3456         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3457         place variables in access bank
3458         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3459         updated sources to reflect recent changes in gen.c
3460
3461 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3462
3463         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3464         sources that searched for headers in installation path, now the
3465         device/include/pic16 is used,
3466         * src/pic16/glue.c (pic16glue),
3467         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3468         .line directives if not in debug mode, this suppresses assembler's
3469         warnings for ignored directives
3470
3471 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3472
3473         * src/port.h: made reset_regparms prototype void parameter explicit.
3474         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3475         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3476         * doc/sdccman.lyx: documented warning disabling and how to use
3477           printf_large to make it print floats.
3478         * device/include/stdbool.h: NEW
3479         * device/lib/_atof.c,
3480         * device/lib/_divuint.c,
3481         * device/lib/_divulong.c,
3482         * device/lib/expf.c,
3483         * device/lib/printf_large.c,
3484         * device/lib/sincosf.c,
3485         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3486         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3487           a completely reentrant lib.
3488
3489 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3490
3491         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3492         * device/include/pic16/stdio.h: fixed bug with colon
3493
3494 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3495
3496         * device/include/pic16/stdio.h,
3497         * device/include/pic16/stdlib.h,
3498         * device/include/pic16/math.h: NEW
3499         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3500         declared as _naked to reduce overhead
3501         * device/lib/Makefile.in (target port-specific-objects-pic16):
3502         changed * to *.* so to ignore the CVS directory,
3503         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3504         stacked variables back in stack,
3505         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3506         corruption
3507
3508 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3509
3510         * .version: bumped version number to 2.4.5
3511         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3512         * support/Util/SDCCerr.c (messages structure): added entry for
3513         W_POSSBUG2
3514
3515         Large cumulative patch for pic16 port and libraries.
3516         * device/include/pic16/sdcc-lib.h,
3517         * device/include/pic16/stdarg.h,
3518         * device/include/asm/pic16/features.h,
3519         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3520         * device/include/pic16/float.h: changes reentrant keyword with
3521         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3522         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3523         updated target build-libraries to include objects from gptr,
3524         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3525         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3526         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3527         all function headings,
3528         * src/SDCCmain.c: added global parameter userIncDirsSet,
3529         * (parseCmdLine): when option -I is encountered add directory to
3530         userIncDirsSet too,
3531         * src/version.awk: added space between control and long,
3532         * src/pic16/NOTES: added some notes for the port,
3533         * src/pic16/gen.c: added prototype for mov2fp function,
3534         * (fReturnpic16[]): properly named return value registers,
3535         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3536         * (aopForSym): added code to handle symbols with onStack flag set,
3537         symbols onStack are allocated PTRSIZE bytes,
3538         * (aopFreeAsmop): handles special case where asmops are stack objects,
3539         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3540         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3541         added argument lock to trace flaws in allocating temporary registers
3542         when developing port,
3543         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3544         * (pic16_popRegFromString): reenabled allocating a direct register
3545         from string,
3546         * (assignResultValue): various beautifications,
3547         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3548         referenced function argument,
3549         * (genIpush): reenabled to allow stacked arguments, handles only
3550         ic->parmPush iCodes,
3551         * (genCall, genPcall): major changes to allow for variable argument
3552         functions, fixed a bug with falsely restoring stack pointer after
3553         returning from call,
3554         * (genFunction): pending code for critical function,
3555         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3556         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3557         * (genNearPointerGet): fixed bug with indirect reading, was always
3558         reading from INDF0
3559         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3560         pointers,
3561         * (genAddrOf): rewrote code to take address of a stacked function parameter
3562         * (genCast): fixed casting to generic pointer type,
3563         * src/pic16/gen.h: added AOP_STA,
3564         * (struct asmop): added field stk,
3565         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3566         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3567         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3568         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3569         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3570         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3571         generic pointers,
3572         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3573         and library paths,
3574         * (pic16_port structure): generic pointer size is set to 3,
3575         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3576         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3577         compiler warning,
3578         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3579         operand is an iTemp,
3580
3581 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3582
3583         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3584         * debugger/mcs51/simi.c: addapt new syntax of s51
3585
3586 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3587
3588         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3589         * src/pic16/pcode.c: commented out some calls to free() in order to
3590         fix bug #989576,
3591
3592 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3593
3594         * src/SDCCicode.h,
3595         * src/SDCCicode.c (isiCodeInFunctionCall),
3596         * src/avr/ralloc.c (selectSpil),
3597         * src/pic/ralloc.c (selectSpil),
3598         * src/pic16/ralloc.c (selectSpil),
3599         * src/ds390/ralloc.c (selectSpil),
3600         * src/hc08/ralloc.c (selectSpil),
3601         * src/xa51/ralloc.c (selectSpil),
3602         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3603         stack in the middle of a function call sequence (fixes bug #1020268)
3604         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3605         costs associated with the minimum switch case.
3606
3607 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3608
3609         * src/SDCC.lex: fixed bug #1030549
3610
3611 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3612
3613         * src/SDCCcse.h (struct cseDef),
3614         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3615         over a function call if the CSE is derived from a symbol whose
3616         address has been taken (fixes bug #1029883)
3617         * support/regression/tests/bug-1029883: a new regression test for
3618         this bug
3619
3620 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3621
3622         * src/hc08/gen.c (emitinline): fixed bug #1029778
3623         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3624         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3625         and starts toward RFE #905167)
3626
3627 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3628
3629         * src/pic16/gen.c (mov2f): New function to move an operand to
3630         another without considering if it is a literal or a register,
3631         * (pic16_sameRegs): don't check if they are both AOP_REG,
3632         * (AccRsh): removed andmask=0 lines,
3633         * (genLeftShift): duplicated to be improved in future versions,
3634         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3635         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3636         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3637         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3638         * (insertBankSwitch): fixed inserting banksel directives algorithm
3639         for instructions that follow a skip instruction, this fixes a report
3640         for broken subtraction code generation,
3641         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3642         iCode is a left op, just in case result and right share the same
3643         registers
3644
3645 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3646
3647         * src/hc08/main.c,
3648         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3649         preservation of HX
3650         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3651         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3652         on 2004-09-12; it was buggy
3653
3654 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3655
3656         * src/SDCCsymt.h: removed RESULT_CHECK
3657         * src/SDCCast.c,
3658         * src/SDCCglue.c,
3659         * src/SDCCval.c,
3660         * src/pic/glue.c,
3661         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3662
3663 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3664
3665         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3666         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3667         configuration values no more rejected by compiler, they are assigned
3668         to configuration registers with a warning message instead,
3669         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3670         the for-loop so last conf register is emitted too,
3671         * (_pic16_initPaths): link library libsdcc.lib by default,
3672         * (_hasNativeMulFor): modified test for multiplication according to
3673         Raphael Neider's remarks. Integer multiplication is also done with
3674         support functions,
3675         * device/include/pic16/pic18fregs.h: corrected type error in while
3676         testing and including 18f6720 header file
3677
3678 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3679
3680         * src/pic16/device.h (pic16_options): removed field use_crt,
3681         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3682         until an optimization to handle single bits is added,
3683         * (pic16_loadFSR0): moved before genUnpackBits,
3684         * (genAnd): some white lines removed,
3685         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3686         leave_reset flags in pic16_options when using crt modules,
3687
3688 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3689
3690         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3691           for bugs 898889 & 979599. Also used some safer print instructions.
3692
3693 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3694
3695         * src/pic16/device.h (pic16_options_t): added field use_crt,
3696         crt_name, no_crt,
3697         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3698         catch a probable future bug,
3699         * src/pic16/gen.c: aopIdx function commented out,
3700         * (genAssign): commented out old code which used aopIdx,
3701         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3702         code, added if conditionals to take into account the --use-crt
3703         command line options,
3704         * src/pic16/main.c (pic16_optionsTable): added new command line
3705         options, --use-crt= and --no-crt,
3706         * (_pic16_linkEdit): now the proper crt object is added in the
3707         linker command line except than when --no-crt is specified,
3708         * src/pic16/pcode.c,
3709         * src/pic16/pcode.h: added some structures and functions for a new
3710         optimization scheme to compansate for instruction overhead between
3711         same iCodes, this scheme is currently under development and is not
3712         working in any way,
3713         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3714         to && operator,
3715         * device/lib/pic16/startup/crt0i.c,
3716         * device/lib/pic16/startup/crt0iz.c: added global char variable
3717         __uflags to force the generation of an idata section
3718
3719 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3720
3721         * doc/Makefile,
3722         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3723         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3724
3725 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3726
3727         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3728         Frieder) and clarified the default code optimization mode
3729
3730 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3731
3732         * src/SDCC.lex (doPragma, process_pragma),
3733         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3734         "opt_code_size", and "opt_code_balanced"
3735         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3736         regrouped options by category, added support for category headers
3737         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3738         and "--opt-code-size"
3739         * doc/sdccman.lyx: documented these new options and pragmas
3740         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3741         preference into account
3742
3743 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3744
3745         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3746           geniCodePreDec): Fixed bug 904237 by generating a warning
3747         * src/SDCCerr.h,
3748         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3749
3750 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3751
3752         * src/pic/device.c : When no max ram set validate full memory range.
3753         * src/pic/pcode.c,
3754         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3755
3756 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3757
3758         * device/lib/_gptrget.c,
3759         * device/lib/_gptrput.c: updated comment
3760         * device/lib/calloc.c,
3761         * device/lib/free.c,
3762         * device/lib/malloc.c,
3763         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3764         * src/SDCCcse.c (cseBBlock),
3765         * src/SDCCicode.c (printOperand, geniCodeArray),
3766         * src/SDCCicode.h (struct operand): fixed bug 868103
3767         * support/regression/tests/bug-868103.c: added
3768         * src/SDCCast.c (searchLitOp),
3769         * src/SDCCcse.h (struct cseDef),
3770         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3771         * src/SDCCicode.h (struct operand),
3772         * src/SDCCsymt.h (struct sym_link),
3773         * src/avr/gen.c (hasInc),
3774         * src/ds390/gen.c (hasInc),
3775         * src/hc08/gen.c (genPlusIncr, hasInc),
3776         * src/mcs51/gen.c (hasInc),
3777         * src/pic16/glue.c (pic16_printIvalChar),
3778         * src/pic16/ralloc.c (regWithIdx),
3779         * src/xa51/gen.c (hasInc) : removed warnings
3780         * src/SDCCast.c (createBlock): added comment ???
3781         * src/hc08/ralloc.c: updated comments
3782
3783 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3784
3785         * doc/sdccman.lyx: updated section on switch statements, added
3786         section about semaphore locking
3787         * doc/Makefile: added option -info for latex2html
3788         * device/lib/_gptrget.c,
3789         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3790
3791 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3792
3793         * src/pic/device.h,
3794         * src/pic/device.c,
3795         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3796          maxram is less than 0x100.
3797
3798 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3799
3800         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3801
3802 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3803
3804         * src/port.h,
3805         * src/mcs51/main.c,
3806         * src/ds390/main.c,
3807         * src/z80/main.c,
3808         * src/hc08/main.c,
3809         * src/pic/main.c,
3810         * src/pic16/main.c,
3811         * src/avr/main.c,
3812         * src/xa51/main.c
3813         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3814         a jump table is the best form for a switch statement, including
3815         automatic insertion of missing cases to make the case range
3816         continuous. Developed in collaboration with Frieder Ferlemann.
3817
3818 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3821         accumulator result if it needs sign extension
3822
3823 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3824
3825         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3826
3827 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3828
3829         * device/lib/gbz80/printf.c,
3830         * device/lib/z80/printf.c: removed define for NULL
3831
3832 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3833
3834         * as/xa51/xa_link.c,
3835         * device/examples/ds390/ow390/ad26.c,
3836         * device/examples/ds390/ow390/cnt1d.c,
3837         * device/examples/ds390/ow390/counter.c,
3838         * device/examples/ds390/ow390/ds2480.h,
3839         * device/examples/ds390/ow390/ds2480ut.c,
3840         * device/examples/ds390/ow390/findtype.c,
3841         * device/examples/ds390/ow390/gethumd.c,
3842         * device/examples/ds390/ow390/owllu.c,
3843         * device/examples/ds390/ow390/ownetu.c,
3844         * device/examples/ds390/ow390/swt12.c,
3845         * device/examples/ds390/ow390/swtloop.c,
3846         * device/examples/ds390/ow390/temp.c,
3847         * device/examples/ds390/ow390/temp10.c,
3848         * device/examples/ds390/ow390/thermo21.c,
3849         * device/examples/ds390/ow390/tinilnk.c,
3850         * device/examples/ds390/ow390/tstfind.c,
3851         * device/examples/serialcomm/windows/serial.cpp,
3852         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3853         * device/include/reg51.h: fixed line endings for cvs
3854
3855 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3856
3857         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3858         packRegsForAccUse, packRegisters): new accumulator register
3859         packing algorithm
3860         * support/regression/ports/hc08/support.c (_putchar): suppress
3861         warning of unused variable
3862         * src/SDCCicode.c: added SWAP entry to codeTable
3863
3864 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3865
3866         * device/lib/sprintf.c: forgot to add this file before previous commit
3867
3868 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3869
3870         * src/pic16/gen.c (genPackBits): added operand right in function
3871         parameters, load result directly if p_type is POINTER (that is
3872         called by genNearPointerSet)
3873         * (genUnPackBits): added operand left in function parameters,
3874         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3875         FSR0 if accessing bitfields,
3876
3877 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3878
3879         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3880           _print_format; updated printf, sprintf, vsprintf
3881         * device/include/asm/default/features.h: corrected comment/define
3882         * device/lib/Makefile.in: added sprintf.c
3883         * device/lib/libsdcc.lib: added sprintf module
3884         * device/lib/printf_large.c,
3885         * device/lib/vprintf.c,
3886         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3887           into these 3 files
3888         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3889         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3890         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3891           hc08 test
3892         * support/regression/tests/zeropad.c: define idata as data for hc08
3893
3894 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3895
3896         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3897         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3898         labels are referenced at least once (even if a reference is not found)
3899         * src/hc08/gen.c (emitcode): set isComment flag for comments
3900         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3901         loads), rules 6a..6b (optimize jumps to return)
3902
3903 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3904
3905         * device/lib/acosf.c (acosf),
3906         * device/lib/asinf.c (asinf),
3907         * device/lib/atanf.c (atanf),
3908         * device/lib/ceilf.c (ceilf),
3909         * device/lib/cosf.c (cosf),
3910         * device/lib/coshf.c (coshf),
3911         * device/lib/cotf.c (cotf),
3912         * device/lib/fabsf.c (fabsf),
3913         * device/lib/floorf.c (floorf),
3914         * device/lib/log10f.c (log10f),
3915         * device/lib/logf.c (logf),
3916         * device/lib/sinf.c (sinf),
3917         * device/lib/sinhf.c (sinhf),
3918         * device/lib/sqrtf.c (sqrtf),
3919         * device/lib/tanf.c (tanf),
3920         * device/lib/tanhf.c (tanhf),
3921         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3922         replaced all instances of "reentrant" in the library functions
3923         defined in math.h with this macro.
3924         * support/regression/tests/float_trans.c: reenabled test for hc08
3925
3926 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3927
3928         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3929         erroneously deleted
3930
3931 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3932
3933         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3934         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3935         multi-byte volatile operands are used
3936         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3937         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3938         initialization to area GSINIT0 so that it would always precede
3939         any static initializers in GSINIT
3940         * support/regression/tests/zeropad.c: fixed idata define for hc08
3941         * support/regression/tests/bug-927659.c,
3942         * support/regression/tests/float_trans.c: disabled tests for hc08
3943         pending missing library routines
3944         * .version: increased version number to 2.4.4 - hc08 port now passes
3945         regression tests
3946
3947
3948 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3949
3950         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3951         * Makefile.common.in,
3952         * as/Makefile,
3953         * as/hc08/Makefile.in,
3954         * as/mcs51/Makefile.in,
3955         * as/z80/Makefile.in,
3956         * debugger/mcs51/Makefile.in,
3957         * device/include/Makefile.in,
3958         * device/lib/Makefile.in,
3959         * doc/Makefile,
3960         * link/Makefile,
3961         * link/z80/Makefile.in,
3962         * packihx/Makefile.in,
3963         * sim/ucsim/main_in.mk,
3964         * sim/ucsim/avr.src/Makefile.in,
3965         * sim/ucsim/doc/Makefile.in,
3966         * sim/ucsim/gui.src/serio.src/Makefile.in,
3967         * sim/ucsim/hc08.src/Makefile.in,
3968         * sim/ucsim/s51.src/Makefile.in,
3969         * sim/ucsim/xa.src/Makefile.in,
3970         * sim/ucsim/z80.src/Makefile.in,
3971         * src/Makefile.in,
3972         * support/cpp2/Makefile.in,
3973         * support/librarian/Makefile,
3974         * support/makebin/Makefile: added DESTDIR to the install path proposed
3975         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3976         * doc/sdccman.lyx: added DESTDIR documentation
3977
3978 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3979
3980         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3981         instruction for interrupt handlers, use fast returns when returning
3982         from high priority interrupts
3983
3984 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3985
3986         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3987         code generation
3988         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3989         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3990         bugs, ported much of Bernhard's code from mcs51
3991         * src/mcs51/gen.c (genSend),
3992         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3993         than one when calling a reentrant function
3994         * device/lib/_mullong.c: defined an alternate struct layout for big
3995         endian ports (hc08)
3996
3997 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3998
3999         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4000         test
4001
4002 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4003
4004         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4005         are sane and complete before asking the port its prefered parameter
4006         passing method (fixes bug #1017633)
4007         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4008         and _ret3
4009
4010 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4011
4012         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4013         problem in bitfields >= 8 bits.
4014
4015 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4016
4017         * src/SDCCsymt.c: undid changes that were not meant to be committed
4018
4019 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4020
4021         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4022
4023 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4024
4025         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4026           copied and wrong bit got inverted
4027
4028 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4029
4030         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4031         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4032         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4033         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4034         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4035         assignments to bitfields at known addresses
4036         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4037         reads from bitfields at known addresses
4038         * src/hc08/ralloc.c (packRegisters),
4039         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4040         genhc08Code): optimize pointer get values used as conditionals
4041         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4042         and branch
4043
4044 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4045
4046         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4047         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4048         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4049         as conditionals
4050
4051 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4052
4053         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4054
4055 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4056
4057         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4058         related problems
4059
4060 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4061
4062         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4063
4064 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4065
4066         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4067         mcs51 port
4068
4069 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4070
4071         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4072
4073 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4074
4075         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4076         cases use more compact code.
4077
4078 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4079
4080         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4081
4082 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4083
4084         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4085
4086 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4087
4088         * src/SDCCsymt.h,
4089         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4090         parameter of changePointer() from symbol* to sym_link*
4091         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4092         * src/SDCCsymt.c (compareType): void* type is castable to other
4093         pointers, but not necesarily an exact match.
4094         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4095         is no longer blindly treated as an exact match.
4096         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4097
4098 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4099
4100         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4101
4102 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4103
4104         * src/pic/gen.c,
4105         * src/pic/pcode.c,
4106         * src/pic/ralloc.h,
4107         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4108
4109 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4110
4111         * src/pic/device.c,
4112         * src/pic/device.h,
4113         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4114
4115 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4116
4117         * src/mcs51/gen.c (emitcode): fixed bug #992819
4118
4119 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4120
4121         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4122           there's no need to make it worse
4123
4124 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4125
4126         * src/mcs51/ralloc.c (deassignLR),
4127         * src/ds390/ralloc.c (deassignLR),
4128         * src/hc08/ralloc.c (deassignLR),
4129         * src/z80/ralloc.c (deassignLR),
4130         * src/pic/ralloc.c (deassignLR),
4131         * src/pic16/ralloc.c (deassignLR),
4132         * src/avr/ralloc.c (deassignLR),
4133         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4134         rlivePoint): fixed another part of bug #971834
4135
4136 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4137
4138         * src/z80/main.c: enabled "critical" keyword
4139         * src/z80/mappings.i,
4140         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4141         functions (fixes bug #979646)
4142         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4143
4144 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4145
4146         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4147           such as c:\mydir.
4148
4149 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4150
4151         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4152           doesn't disable too much optimizations
4153
4154 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4155
4156         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4157
4158 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4159
4160         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4161
4162 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4163
4164         * src/pic/gen.c tidied up tabs
4165         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4166         * src/pic/main.c tidied up tabs
4167         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4168         * src/pic/pcoderegs.c tidied up tabs
4169         * src/pic/ralloc.c tidied up tabs
4170
4171 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4172
4173         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4174         to S_FIXED for pic16 port and when symbol is not in level 0,
4175         allocate for S_REGISTER storage class and pic16 port, too,
4176         * src/pic16/device.h: prototype for checkSym,
4177         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4178         * (pic16_assignConfigWordValue): test the value and the mask to
4179         validate that the value is suitable for the configuration word,
4180         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4181         collect extern declared symbols, don't emit symbol twice, check
4182         first if symbol is in publics set first,
4183         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4184         * added command line '--fstack' which enables an experimental
4185         feature for stack access, too buggy to be used yet...
4186         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4187         * (pic16_allocDirReg): when register has storage class S_REGISTER
4188         allocate in pic16_dynAccessRegs,
4189         * device/include/pic16/pic18f????.h: modified configuration word
4190         naming convention, words started as CONFIG0H but should be CONFIG1H
4191
4192 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4193
4194         * device/include/mcs51reg.h: fixed bug 970993
4195
4196 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4197
4198         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4199         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4200         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4201         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4202         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4203         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4204           error/warning numbers,
4205           added function setWarningDisabled()
4206         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4207         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4208           _memcmp.c _memmove.c calloc.c realloc.c free.c
4209         * support/regression/tests/malloc.c: added tests for new functionality
4210         * support/regression/tests/zeropad.c: added tests for truncated initializers
4211           and initialized char arrays starting with '\x0'
4212         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4213
4214 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4215
4216         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4217
4218 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4219
4220         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4221         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4222         peephole 177.e. Thanks to anonymous
4223
4224 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4225
4226         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4227         function isn't used in the source but referenced as a
4228         variable initializer then declare it as extern in .asm file
4229
4230 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4231
4232         * .version: increased version number to 2.4.3
4233
4234         Adding version extension according to ChangeLog CVS revision
4235         * src/Makefile.in (target all): added dependency 'version.h'
4236         * (rule version.h): added rule to create version.h from ChangeLog,
4237         * (rule dep): added dependency version.h,
4238         * src/version.awk: AWK script to create version.h
4239         * src/SDCCdwarf2.c (dwWriteModule),
4240         * src/SDCCglue.c (initialComments),
4241         * src/SDCCmain.c (printVersionInfo): modified to write after
4242         version string the version extension number,
4243         * src/SDCCutil.c: included "version.h"
4244         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4245         number,
4246         * src/SDCCutil.h: added prototype for getBuildNumber
4247
4248         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4249         includeDirsSet, too,
4250         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4251         const char [] is found in function prototype...
4252
4253         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4254         moving to WREG with source is already in WREG,
4255         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4256         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4257         * (aopForSym): stack'ed symbols are partially supported, added
4258         if-clause to support symbols in FARSPACE,
4259         * (sameRegs): added test for AOP_ACC to see if registers are same,
4260         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4261         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4262         * (pic16_popRegFromString): will not allocate a new register if it
4263         doesn't find one by name, bug may have introduced...
4264         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4265         * (genIpush): revived to use pic16 port's stack,
4266         * (genAddrOf): added incomplete case for stack'ed operand,
4267         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4268         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4269         can handle multibyte operands,
4270         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4271         * (pic16initialComments): added message for MPLAB compatibility
4272         mode enabled,
4273         * src/pic16/main.h: prototype for pic16_mplab_comp,
4274         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4275         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4276         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4277         because of increased complexity of procedure,
4278         * (_process_pragma): stack pragma changed to format 'stack pos len',
4279         emit symbol '_stack_end' to conform with gplink,
4280         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4281         to search for register,
4282         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4283         PO_GPR_REGISTER,
4284         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4285         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4286         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4287         case for PO_GPR_REGISTER,
4288         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4289         dies, the new era is ahead !...
4290         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4291         pic16_dynInternalRegs,
4292         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4293         * (pic16_allocDirReg): minor optimizations and bug fixes,
4294         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4295
4296         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4297         load stack and frame pointer with address of 'stack_end' symbol
4298
4299 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4300
4301         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4302         without source code but only variable initializers
4303
4304 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4305
4306         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4307         external are not declared as extern to reduce overhead while linking
4308
4309 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4310
4311         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4312
4313 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4314
4315         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4316           Yee Keat for the patch
4317         * src/SDCCast.c (decorateType): fixed bug #979599
4318         * src/ds390/gen.h: removed local fReturnSizeDS390
4319         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4320         * src/ds390/gen.c (genAnd, genOr, genXor),
4321         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4322
4323 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4324
4325         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4326         add relFilesSet to $3, manipulate $2 to handle linking of object
4327         files without source files in command line,
4328         * device/include/pic16 (all headers): added ID location macros,
4329         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4330         entries for ID location bytes,
4331         * (pic16_assignIdByteValue): NEW,
4332         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4333         added field dumpcalltree to pic16_options_t,
4334         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4335         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4336         emitting rFalseIfx label after check_carry label,
4337         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4338         pic16_emitDIRegs), NEW
4339         * (pic16glue): dump .calltree file when option --calltree found,
4340         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4341         * (_pic16_genAssemblerPreamble): emit ID locations after
4342         configuration registers,
4343         * (pic16_linkCmd): modifications of the link command,
4344         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4345         * (pic16_pCodeInitRegisters): don't init stack registers,
4346         * (pic16_findPrevInstruction): fixed bug,
4347         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4348         bug with immediate registers,
4349         * (buildCallTree): traces stack push and pop,
4350         * (pct2): dump also stack usage for each function,
4351         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4352         * (pic16_allocDirReg): various modifications,
4353         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4354         fixed to 1,
4355
4356 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4357
4358         * src/pic16/pcode.c: removed buggy double colon
4359
4360 2004-07-01 Borut Razem <borut.razem AT siol.net>
4361
4362         * support/scripts/sdcc.nsi: added include/pic16 to setup
4363
4364 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4365
4366         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4367         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4368         target 'clean',
4369         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4370         specific command line arguments. Also added sample lkr script
4371         for placing a variable at a specific memory bank.
4372         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4373         at a specific memory bank,
4374         * (pic16_dump_isection): fixed bug which caused string literals to
4375         be omitted when dumping idata section,
4376         * (pic16_groupRegistersInSection): added code to handle registers
4377         in specific memory banks,
4378         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4379         public, all references are renamed too,
4380         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4381         AOP_DPTR2,
4382         * (pic16_storeForReturn): added case to handle when dest is WREG,
4383         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4384         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4385         pic16_rel_udata, check to see if that register is marked as being
4386         a member of a specific memory bank,
4387         * (pic16_printIvalCharPtr): added code to add string literals either
4388         to code or the idata sections,
4389         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4390         also accept the 'udata' pragma,
4391         * src/pic16/main.h: new structure types sectName and sectSym
4392         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4393         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4394         * (pic16_findPrevInstruction): fixed, it returned nothing,
4395         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4396         instruction combinations,
4397         * (pic16_FixRegisterBanking): heavily reorganised,
4398         * (pic16_AnalyzeBanking): if generating banksel directives is
4399         disabled, then don't call FixRegisterBanking at all,
4400         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4401         completely removed,
4402         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4403
4404 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4405
4406         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4407         Phuah Yee Keat <yk.phuah AT nestac.com>
4408
4409 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4410
4411         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4412         correctly the IVT even if it is relocated to some other location
4413
4414 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4415
4416         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4417         * device/include/pic16/pic18f2220.h: NEW,
4418         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4419         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4420         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4421         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4422         nodefaultlibs, ivt_loc is the location of the interrupt vector
4423         table, and nodefaultlibs signs that default libraries should not be
4424         linked in link stage,
4425         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4426         according to --ivt-loc argument,
4427         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4428         when pragma stack is found,
4429
4430 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4431
4432         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4433         256 (range check), 257 (do while), 258.a-f (bit banging
4434         f.e. on 3-wire SPI bus)
4435
4436 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4437
4438         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4439         variables used exclusively within a loop
4440
4441 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4442
4443         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4444
4445 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/SDCClrange.c (computeClash): fixed bug #971834
4448
4449 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4450
4451         * src/mcs51/gen.c (genCmp): fixed bug #975903
4452         * src/hc08/gen.c (operandsEqu),
4453         * src/ds390/gen.c (operandsEqu),
4454         * src/z80/gen.c (operandsEqu),
4455         * src/pic/gen.c (operandsEqu),
4456         * src/pic16/gen.c (operandsEqu),
4457         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4458         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4459
4460 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4461
4462         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4463
4464 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4465
4466         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4467         default case in switch statement,
4468         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4469         to eliminate problem with initialisation of pointers, but problem
4470         still exists,
4471         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4472         * (emitStaticSegment): removed various lines emitting debug info,
4473         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4474         added processor registers for utilizing EEPROM,
4475         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4476         configurable and set 8
4477
4478 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4479
4480         * .version: increased version number to 2.4.2,
4481
4482         Cumulative patch for pic16 port
4483         * src/pic16/device.c: changed scheme to dump initial values for
4484         variables in idata segment, all print_idata* functions were removed,
4485         now the pic16_printIval* will be called,
4486         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4487         * _pic16_printPointerType, pic16_printPointerType,
4488         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4489         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4490         NEW, similar to the respective functions in SDCCglue.c,
4491         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4492         way, emitting hex bytes,
4493         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4494
4495 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/avr/ralloc.c (serialRegAssign),
4498         * src/xa51/ralloc.c (serialRegAssign),
4499         * src/pic/ralloc.c (serialRegAssign),
4500         * src/pic16/ralloc.c (serialRegAssign),
4501         * src/hc08/ralloc.c (serialRegAssign),
4502         * src/z80/ralloc.c (serialRegAssign),
4503         * src/ds390/ralloc.c (serialRegAssign),
4504         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4505
4506 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4507
4508         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4509         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4510
4511 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4512
4513         Cumulative patch for pic16 port:
4514         * src/pic16/device.h (typedef PIC16_device) modified fields for
4515         defining microcontrollers,
4516         * src/pic16/device.c: added new info for all devices in Pics16 array,
4517         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4518         to be optimised out by the pCode optimiser,
4519         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4520         specially, bug reported by G.M. Gallant,
4521         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4522         as force'd so that cannot be optimised out by pCode optimiser,
4523         * src/pic16/pcode.c,
4524         * src/pic16/pcodepeeph.c,
4525         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4526         they are disabled by default, but can be enabled explicit with
4527         command argument --denable-peeps, for testing,
4528         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4529         --pomit-ivt in COMPILE_FLAGS
4530
4531 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4532
4533         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4534           compilation on MSVC
4535
4536 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4537
4538         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4539
4540 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4541
4542         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4543         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4544
4545 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4546
4547         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4548         would only assign 0x300001 register.
4549
4550 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4551
4552         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4553         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4554
4555 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4556
4557         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4558         for ds80c400
4559         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4560         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4561         added peephole 254 (left shift), 255 (jump table)
4562
4563 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4564
4565         * device/lib/Makefile.in: removed comment line with model-pic16,
4566         * (target port-specific-objects-pic16): the libraries and objects
4567         are copied to the build directory form the device/lib/pic16/bin
4568         directory
4569
4570         Cumulative patch concerning pic16 port:
4571         * library directory has been re-organized,
4572         * added support for PIC18F1220,
4573         * added headers and library sources for chips 18f1220,18f6520,
4574         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4575
4576         * configuration registers setting has changed, now each supported
4577         device has a complete description of the registers it uses,
4578         * all initialisations are moved to idata sections, these section
4579         can be absolute or relocatable,
4580         * fixed initialisation of codespace variables,
4581         * fixed warning about PCLATU and gpsim,
4582         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4583         * (genAssign): use table reads when assigning from variables in codespace,
4584         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4585         char/int variables placed in codespace,
4586         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4587         registers set in .asm file, no need for --pomit-config-words anymore,
4588         * (pic16glue): some 8051 legacy segments are commented out
4589         (to be removed completely),
4590         * added support for alternative assembler and linker with --asm=
4591         and --link= command line arguments,
4592         * peepholes are disabled automatically in the port, no need to
4593         specify on command line,
4594         * port supports natively char/int/long multiplication, but converts
4595         all divisions to support functions,
4596         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4597         to the file set in variable $2,
4598         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4599         strings in ASCII format and not in hex,
4600         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4601         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4602         allocate proper register if iCodes aren't temporary,
4603
4604 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4605
4606         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4607
4608 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4609
4610         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4611         is commented out
4612
4613 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4614
4615         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4616         computed address is reused
4617         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4618         multi-byte bitfields
4619
4620 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4621
4622         * src/z80/gen.c: (genArrayInit): must check for pointers too
4623
4624 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4625
4626         * support/regression/tests/zeropad.c: never meant to commit the
4627           nestedstruct test: removed, added check for GCC version
4628
4629 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4630
4631         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4632         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4633         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4634           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4635           bugs 928906 and 954082 half-empty initializers
4636         * src/SDCCsymt.h,
4637         * src/SDCCsymt.c (getAllocSize): added for above fix
4638         * src/z80/gen.c (genArrayInit): fixed bug 741044
4639         * support/regression/tests/zeropad.c: added tests
4640
4641 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * src/pic16/device.c (pic16_dump_section): corrected bug which
4644         caused some symbols of the libraries to be misplaced
4645
4646 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4647
4648         * src/pic16/glue.c,
4649         * src/pic16/ralloc.h,
4650         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4651         to fix conflict with pic port
4652
4653 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4654
4655         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4656         externs configuration variables,
4657         * src/pic16/ralloc.h,
4658         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4659         prototype in header, commented out some debug messages
4660
4661 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4662
4663         * src/pic16/glue.c,
4664         * src/pic16/main.c,
4665         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4666         for gpasm COFF object generation. Thanks to D. Hawkins for
4667         his patch info
4668
4669 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4670
4671         * src/ds390/main.c,
4672         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4673         Brock for spotting this)
4674         * src/ds390/gen.c (genEndFunction),
4675         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4676         interrupt handler and critical. Disable push/pop optimizations when
4677         peephole optimizations disabled.
4678
4679 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4680
4681         Updated pic16 library sources and headers.
4682         * device/lib/pic16/pic18f*/ ,
4683         * device/include/pic16/*.h: modified to handle structured SFR
4684         definitions
4685
4686 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4687
4688         * src/port.h (PORT structure): added hook initPaths, now each
4689         port can declare its own default search paths,
4690         which can been seen with the --print-search-dirs option,
4691         see pic16 port for example,
4692         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4693         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4694         * (doPrintSearchDirs): NEW, replaces in a central manner the
4695         printing of search dirs which was split in set*Paths functions,
4696         * (main): added call to port->initPaths and doPrintSearchDirs,
4697         * src/avr/main.c,
4698         * src/ds390/main.c,
4699         * src/hc08/main.c,
4700         * src/izt/i186.c,
4701         * src/izt/tlcs900h.c,
4702         * src/mcs51/main.c,
4703         * src/pic/main.c,
4704         * src/pic16/main.c: modified port structures to reflect addition of
4705         initPaths hook,
4706
4707         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4708         * (pic16_dump_section): for registers in same address reserve memory once,
4709         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4710         to no_banksel,
4711         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4712         result is greater in size than right or left,
4713         * (pic16_genUMult8X8_8): there are some cases where the result can
4714         be 16 bits size, so handle these,
4715         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4716         * (pic16_outBitC): modified to emit pcodes,
4717         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4718         or not,
4719         * (genDivOneByte): implemented algorithm to divide 8-bits,
4720         * (genCmp): uncommented goto, but issues still exist,
4721         * (genAnd): fixed a bug with variables >8bits,
4722         * (genPackBits): optimization added that uses BCF/BSF to change a
4723         single bit,
4724         * (genAssign): fixed bug when assigning floating point literals,
4725         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4726         __sdcc_gsinit_startup label,
4727         * src/pic16/main.c (_pic16_init): removed search directory
4728         initialisations,
4729         * (_pic16_initPaths): NEW, used to initialise search directories,
4730         * (_hasNativeMulFor): support functions for all except char/int
4731         multiplication, and char division,
4732         * (PIC16_port struct): modified entry for native mul support,
4733         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4734         no_banksel option,
4735         * (buildCallTree): call to register_usage is ifdef'ed out,
4736
4737 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4738
4739         * device/include/string.h: applied Stas Sergeev's patch to make this
4740         header file compatible with the preprocessor -Wundef option
4741         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4742         failure (fixes bug #941458)
4743
4744 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4747         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4748         that the variable, not the function, should be static
4749         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4750         to be consistent with non-literal case
4751
4752 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4753
4754         * src/SDCCast.c (isConformingBody): fixed bug #949967
4755         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4756         convilong): fixed bug #952086
4757
4758 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4759
4760         * src/SDCCmem.c (allocVariables): fixed bug #955321
4761
4762 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4763
4764         * src/hc08/main.c (_hc08_genAssemblerEnd),
4765         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4766         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4767         completely eliminated the use of a temporary file
4768         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4769         when more than one file linked
4770         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4771
4772 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4773
4774         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4775         which fixes bug #543481
4776         * support/regression/tests/bug-751703.c: fixed comments left from a
4777         cut and paste error
4778         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4779         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4780         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4781         scopes
4782         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4783         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4784         are now changed to underscores in moduleName
4785
4786 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4787
4788         * as/mcs51/lkmem.c: better fix for bug #954173
4789
4790 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4791         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4792
4793         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4794         * device/include/c8051f000.h,
4795         * device/include/c8051f120.h,
4796         * device/include/c8051f300.h,
4797         * device/include/c8051f310.h,
4798         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4799         PWM16) and detab'ed
4800
4801 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4802
4803         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4804         and mailing lists, doc'ed --no-peep-comments, removed reference
4805         to knoppix (newest version has no LyX/LaTeX), other minor changes
4806         * src/SDCCglue.c (glue): save 2 bytes stack space with
4807         option --main-return. The ljmp could probably be avoided too
4808
4809 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4810
4811         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4812
4813 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4814
4815         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4816         * src/SDCCopt.c (isLocalWithoutDef),
4817         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4818         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4819         (credit to Maarten Brock for patch #949363, on which this is based)
4820         * support/regression/tests/bug-751703.c: some test cases of extern used
4821         within inner scopes.
4822
4823 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4824
4825         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4826         SPEC_STRUCT
4827         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4828         struct definitions
4829         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4830         dwWriteLabel): fix to create valid debugger symbols even when
4831         the module name has non-alphanumeric symbols in it
4832         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4833         when a variable's allocation has been optimized away
4834
4835
4836 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4837
4838         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4839         * src/hc08/main.c,
4840         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4841         * src/mcs51/main.c,
4842         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4843         * src/ds390/main.c,
4844         * src/z80/gen.c (z80_emitDebuggerSymbol),
4845         * src/z80/main.c,
4846         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4847         * src/pic/main.c,
4848         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4849         * src/pic16/main.c,
4850         * src/avr/gen.c (avr_emitDebuggerSymbol),
4851         * src/avr/main.c,
4852         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4853         * src/xa51/main.c,
4854         * src/SDCCdebug.c (emitDebuggerSymbol),
4855         * src/SDCCdebug.h,
4856         * src/port.h: added a debugger struct to the port struct. Added a
4857         callback for defining debugger symbols
4858
4859         * src/SDCCast.c (createLabel),
4860         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4861         with isitmp = 1
4862         * src/SDCCicode.h,
4863         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4864         iCode back to the ast for the function
4865
4866         * src/hc08/ralloc.c (hc08_assignRegisters),
4867         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4868         unneeded fields from the regs struct.
4869         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4870         pushReg() & pullReg() functions instead of emitcode()
4871
4872         * src/hc08/gen.c (genLabel, genhc08Code),
4873         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4874
4875         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4876         debugger hooks
4877
4878         * src/hc08/gen.c (genEndFunction, genhc08Code),
4879         * src/hc08/gen.h,
4880         * src/mcs51/gen.c (genEndFunction, gen51Code),
4881         * src/mcs51/gen.h,
4882         * src/ds390/gen.c (genEndFunction, gen390Code),
4883         * src/ds390/gen.h,
4884         * src/z80/gen.c (genEndFunction, genZ80Code),
4885         * src/z80/gen.h,
4886         * src/z80/z80.h,
4887         * src/pic/gen.c (genEndFunction, genpic14Code),
4888         * src/pic/gen.h,
4889         * src/pic16/gen.c (genEndFunction, genpic16Code),
4890         * src/pic16/gen.h,
4891         * src/avr/gen.c (genEndFunction, genAVRCode),
4892         * src/avr/gen.h,
4893         * src/xa51/gen.c (genEndFunction, genXA51Code),
4894         * src/xa51/gen.h,
4895         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4896         specific code to cdbFile.c and out of the backend code generators
4897
4898         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4899         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4900         starting address is now 0
4901
4902         * as/hc08/asm.h,
4903         * as/hc08/m08pst.c,
4904         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4905         assembler directive for DWARF support
4906         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4907
4908         * src/src.dsp,
4909         * src/Makefile.in,
4910         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4911
4912 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4915         and inappropriate peephole optimization in jump tables
4916
4917 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4918
4919         * as/hc08/m08pst.c,
4920         * src/SDCCglue.c: sdccopt works for the hc08 port now
4921
4922 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4923
4924         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4925
4926 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4927
4928         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4929
4930 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4931
4932         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4933         rules
4934         * src/SDCCmain.c,
4935         * src/SDCCglobl.h,
4936         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4937         comments from the peephole optimizer replacement rules
4938         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4939         symbols
4940         * src/SDCCcse.c (updateSpillLocation),
4941         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4942         equivalents
4943         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4944         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4945         objects far pointers
4946
4947 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4948
4949         * src/SDCCsymt.h: a missing part of my last change
4950         * src/pic/ralloc.c (regTypeNum),
4951         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4952
4953 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4954
4955         * src/SDCCicode.h,
4956         * src/SDCCicode.c (aggrToPtrDclType),
4957         * src/SDCCptropt.h,
4958         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4959         ptrPseudoSymConvert),
4960         * src/pic/ralloc.c (regTypeNum),
4961         * src/pic16/ralloc.c (regTypeNum),
4962         * src/hc08/ralloc.c (regTypeNum),
4963         * src/ds390/ralloc.c (regTypeNum),
4964         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4965         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4966
4967 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4968
4969         * link/z80/lkmain.c (afile),
4970         * as/hc08/lkmain.c (afile),
4971         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4972         prevent a pointer problem when a filename has no directory and
4973         no extension specified.
4974
4975 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4976
4977         * link/z80/lkmain.c (afile): allow periods in directory names
4978         * link/z80/lkmain.c (afile),
4979         * as/mcs51/lkmain.c (afile),
4980         * as/hc08/lkmain.c (afile): allow linker script file to have an
4981         extension other than ".lnk"
4982         * link/z80/lklex.c (getfid),
4983         * link/z80/lkmain.c (parse),
4984         * as/mcs51/lklex.c (getfid),
4985         * as/mcs51/lkmain.c (parse),
4986         * as/hc08/lklex.c (getfid),
4987         * as/hc08/lkmain.c (parse): Support comments in the linker script
4988         file on lines by themselves and after filenames
4989
4990 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4991
4992         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4993
4994 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4995
4996         * src/z80/peeph-z80.def: removed some peephole rules that don't
4997         work with multibyte arithmetic (fixed bug #937126)
4998         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4999         to registers and not global variables
5000         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5001         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5002         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5003         checking for assignments not internally generated (fixed bug #931895)
5004         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5005         structure member (fixed bug #930072)
5006
5007 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/SDCCmain.c (linkEdit),
5010         * src/hc08/main.c (_hc08_parseOptions),
5011         * as/hc08/Makefile.in,
5012         * as/hc08/aslink.h,
5013         * as/hc08/asm.h,
5014         * as/hc08/m08pst.c,
5015         * as/hc08/lkrloc.c (relr, rele),
5016         * as/hc08/lkarea.c (lnkarea)
5017         * as/hc08/lkmain.c (afile, parse),
5018         * as/hc08/lkelf.c: support for ELF output
5019         * as/hc08/lks19.c (s19),
5020         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5021
5022 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5023
5024         * as/mcs51/lkihx.c: Fixed bug #899105.
5025
5026 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5027
5028         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5029         .dsp files from Unix to DOS.
5030
5031 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5032
5033         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5034         function pointers; we have been compliant for several months now.
5035         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5036         change that was accidently commented out
5037         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5038         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5039         bug #922319
5040
5041 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5042
5043         * src/hc08/gen.c: output of all of the internal debugging information
5044         is now controlled by the D() macro; it is disabled by default
5045
5046 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5049         harder to keep the same registers during a CAST iCode
5050         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5051         long via int can be done in a single cast, if the signedness is
5052         correct.
5053         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5054         putchar() in tinibios.c in ds390's library
5055
5056 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5057
5058         * src/SDCCast.c (decorateType): fixed bug #898889,
5059         cast result of a literal complement too
5060         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5061         fixed check for bitfields
5062
5063 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5064
5065         * src/SDCCicode.c (geniCodeLogic): made it static,
5066         (geniCodeLogicAndOr): added in order to fix bug #905492,
5067         (ast2iCode): fixed bug #905492
5068         * support/regression/tests/bug-905492.c: added
5069         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5070         (processParms): fixed bug #927659: don't copy parms, this will clear
5071         decorated flag
5072         * support/regression/tests/bug-927659.c: added
5073
5074 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5075
5076         * src/SDCCast.c (addCast): don't cast float to char
5077         * device/lib/libsdcc.lib: added _memmove
5078
5079 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5080
5081         * device/lib/large/Makefile: fixed parallel execution by
5082         replacing `make` by `$(MAKE)`
5083
5084 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5085
5086         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5087         offsets (fixes bug #923936)
5088
5089 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5090
5091         * device/lib/small/Makefile: fixed parallel execution by
5092         replacing `make` by `$(MAKE)`
5093
5094 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5095
5096         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5097
5098 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5099
5100         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5101         * src/regression/Makefile: Regression test was not running.
5102
5103 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5104
5105         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5106         complement if possible
5107         * src/SDCCval.c (valComplement),
5108         * src/SDCCicode.c (operandOperation): fixed complement of literal
5109         * support/regression/tests/onebyte.c (testComplement): added
5110
5111 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5112
5113         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5114         return an optimized tree; actually replace actParm with the new tree
5115         * src/SDCCast.h: added some parantheses to remove side effects
5116         * support/regression/tests/bug-920866.c
5117
5118 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5119         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5120         Bit operands were not being handled properly in the pic14 port.
5121         (now src/regression/add.c passes again).
5122
5123 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5124
5125         * src/SDCC.y (labeled_statement): case and default no longer require
5126         a following statement (RFE #893037)
5127
5128 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5129
5130         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5131         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5132         disabled (fixes bug #916294)
5133         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5134         "mov a,acc"; patch provided by Lenny Story
5135         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5136
5137 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5138
5139         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5140         functions
5141         * src/ds390/gen.c (genFunction, genEndFunction),
5142         * src/ds390/ralloc.c (ds390_assignRegisters),
5143         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5144         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5145         pushed if there are parameters passed on the stack. Also, a cleaner
5146         way to decide if r0/r1 should be pushed/popped. (Together they fix
5147         bug #918693)
5148
5149 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5150
5151         * doc/sdccman.lyx,
5152         * device/lib/mcs51/crtpagesfr.asm,
5153         * device/lib/mcs51/crtxinit.asm,
5154         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5155         to avoid confusion with Si Lab's SFRPAGE register.
5156
5157 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5158
5159         * src/SDCCglue.c (emitMaps): allow public sfr variables
5160         * src/SDCCglue.c (initialComments): include compiler build date
5161         with compiler version and put the timestamp of the generated
5162         assembly file on a serperate line to be less confusing.
5163         * src/port.h: added genInitStartup hook
5164         * src/avr/main.c,
5165         * src/ds390/main.c,
5166         * src/hc08/main.c,
5167         * src/pic/main.c,
5168         * src/pic16/main.c,
5169         * src/xa51/main.c,
5170         * src/z80/main.c: genInitStartup initialize as NULL (default to
5171         historical behaviour)
5172         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5173         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5174         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5175         library instead of hard coding it into the compiler.
5176         * support/regression/ports/mcs51-stack-auto/spec.mk,
5177         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5178         * device/lib/mcs51/Makefile,
5179         * device/lib/small/Makefile,
5180         * device/lib/large/Makefile,
5181         * device/lib/mcs51/crtpagesfr.asm,
5182         * device/lib/mcs51/crtstart.asm,
5183         * device/lib/mcs51/crtxclear.asm,
5184         * device/lib/mcs51/crtxinit.asm,
5185         * device/lib/mcs51/crtclear.asm,
5186         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5187         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5188         and into user configurable files.
5189         * device/lib/clean.mk: clean mcs51 directory too
5190         * support/regression/tests/longlit.c: added static to T1 declaration
5191         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5192         accesses in the initialization code
5193
5194 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5195
5196         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5197         OSCTRIMVAL as noted in bug #916008
5198
5199 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5200
5201         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5202         in loops with multiple exits (reported as incorrect registers
5203         used by Martin Helmling in Sdcc-user list)
5204
5205 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5206
5207         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5208         made ds390 register extensions look less like error messages
5209
5210 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5211
5212         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5213         reported by Adam Wozniak in Sdcc-user list
5214
5215 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5216
5217         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5218         arithmetic optimizations, added debug output
5219
5220 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5221
5222         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5223         * sdcc.spec: updated and split sdcc into 3 rpms
5224         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5225         needed for literals of LEFT_OP and '+'
5226         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5227         introduced RESULT_TYPE_NOPROM
5228         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5229         left shift
5230         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5231         limited promotion to int only for '*'
5232         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5233
5234 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5235
5236         * src/pic16/gen.c (genSkip),
5237         (genc16bit2lit), (gencjneshort): commented out
5238         (is_LitOp): new helper function, checks operand type
5239         (genCmpEq): rewritten
5240
5241 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5242
5243         * support/regression/tests/bug-908454.c: added
5244
5245 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5246
5247         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5248         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5249         (geniCodeCast): cosmetic, don't preserve bit storage class
5250         (geniCodeLeftShift): added promotion
5251         (geniCodeLogic): fixed regression
5252         * src/SDCCsymt.c (computeTypeOr): accept bits too
5253         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5254
5255 2004-03-07  Borut Razem <borut.razem AT siol.net>
5256
5257         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5258
5259 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5260
5261         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5262         version of pic16_genPackRegisters which does not check if ic is a
5263         CAST operator,
5264         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5265         function cause string1.c regression test fails
5266
5267 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5268
5269         * sim/ucsim/configure.in,
5270         * sim/ucsim/configure,
5271         * sim/ucsim/doc/Makefile.in: use docdir
5272         * src/SDCC.y: fixed sbit atrributes
5273         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5274         * src/SDCCast.c (decorateType): |^& need special promotion handling
5275         * src/SDCCast.h,
5276         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5277         * src/SDCCsymt.h (computeType),
5278         * src/SDCCicode.c: computeType() needs op
5279         * src/SDCCsymt.c (checkTypeSanity),
5280         * doc/sddman.lyx: "plain" bitfields are unsigned
5281         * src/SDCCsymt.c (computeTypeOr): added
5282         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5283         |^& ops
5284         * src/SDCCval.c (val*): computeType() needs op
5285         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5286         * support/regression/tests/onebyte.c: added tests for |^&
5287
5288 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5289
5290         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5291         for writing icode into asm output.
5292
5293 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5294
5295         * src/pic16/device.c: added some debug lines enabled
5296         with macro DEBUG_CHECK,
5297         * src/pic16/genarith.c: more debug in genPlus,
5298         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5299         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5300         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5301         * (aopForSym): onStack symbols are re-placed in data memspace,
5302         and onStack flag is cleared,
5303         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5304         copy temporary pcodeop,
5305         * (genPcall): added warning for not updating PCLATU,
5306         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5307         always true for pic16 port,
5308         * (genMultOneWord): NEW, supports integer multiplication,
5309         * (genMult): modified to call genMultOneWord,
5310         * (ifxForOp): added warning when return NULL,
5311         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5312         flag is set before call to operandFromSymbol for implicit
5313         added structures,
5314         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5315         options.intlong_rent are set by default,
5316         * (_hasNativeMulFor): modified to allow port generation of integer
5317         multiplication,
5318         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5319         set regtype to REG_SFR for all registers, restricting seting the
5320         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5321
5322 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5323
5324         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5325         more than 500 times in the regression tests
5326
5327 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5328
5329         * support/Util/SDCCerr.h,
5330         * support/Util/SDCCerr.c,
5331         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5332         enumerator_list),
5333         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5334         for symbol conflicts.
5335         * support/valdiags/tests/enum.c,
5336         * support/valdiags/tests/tentdecl.c,
5337         * support/valdiags/tests/struct.c: expect possible error messages
5338         referring to original symbol definitions.
5339         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5340         * src/SDCCsymt.h,
5341         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5342
5343 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5344
5345         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5346
5347 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5348
5349         * src/pic16/ralloc.c (newReg): fixed bug #908929
5350
5351 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5352
5353         * src/ds390/gen.c: added missing #include "main.h"
5354
5355 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5356
5357         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5358         checking if symbol is already in set,
5359         * src/pic16/device.h: prototype for checkAddSym,
5360         * src/pic16/gen.c: (_G): added entry interruptvector,
5361         * (assignResultValue): removed some commented out lines,
5362         * (genFunction): check for ISR via sym->type, absolute section for
5363         interrupt code is created via a new pBlock, the goto instruction is
5364         placed now correctly at the interrupt vector position, changed all
5365         references from ivec to _G.interruptvector,
5366         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5367         is the interrupt is a high priority one, same for return from ISR,
5368         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5369         externs to calls of checkAddSym,
5370         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5371         pic16_pcode_verbose flag is set,
5372         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5373         * src/pic16/pcoderegs.c: message about how many registers are saved
5374         will only be emitted if pic16_pcode_verbose flag is set,
5375
5376 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5377
5378         * src/ds390/ralloc.h,
5379         * src/ds390/ralloc.c (ds390_regWithIdx),
5380         * src/ds390/gen.c (emitcode),
5381         * src/ds390/main.h,
5382         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5383         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5384         ds390operandCompare, getRegsRead, getRegsWritten,
5385         initializeAsmLineNode): customized instruction size calculation for
5386         ds390, started basis for some register optimizations
5387         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5388         corresponding assembly output
5389         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5390         missing push/pop of r0/r1. Optimized push/pops
5391
5392 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5393
5394         * src/mcs51/main.c (instructionSize): fixed ACALL size
5395         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5396
5397 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5398
5399         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5400         the sorting of rlist with NULL elements
5401         * (print_idataType, print_idata): NEW to create idata sections
5402         * src/pic16/device.h: idataSymSet new variable
5403         * src/pic16/gen.c (genFunction): fixed some bugs in string
5404         comparing, improved the absolute section creation for ISRs,
5405         added FSR0L/FSR0H in registers that are saved in an ISR,
5406         * (genInline): fixed the processing of inline snippets,
5407         now they undergo no process by the peephole optimizer
5408         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5409         are placed in idataSymSet,
5410         * (pic16emitStaticSeg): extern symbols are added in externs,
5411         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5412         switching when aboslute variables are placed in access bank memory
5413         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5414         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5415         commented out with #if,
5416         * (pic16_packRegisters): reintroduce the check for CAST because some
5417         symbols are not correctly handled,
5418         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5419         pCodeInstruction instead of pCode,
5420         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5421         pCodeAsmDir definition,
5422         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5423         directive, then the argument directive is emitted without the leading
5424         tab, hack for inline labels which must be in the first column,
5425         * (compareLabel,pic16_findNextInstruction),
5426         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5427         * (insertBankSwitch): modified for the new pCodeAsmDir,
5428
5429 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5430         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5431
5432         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5433         instance,
5434         * (pushSide): commented out with #if,
5435         * (assignResultValue): fixed some typos in saving
5436         registers,
5437         * (genPcall): FIXED and sync'ed with genCall,
5438         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5439         * (genNearPointerGet): fixed to handle some more cases,
5440         implementation scheme via table reads,
5441         * (genConstPointerGet): modified to access code memory correct,
5442         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5443         and improved to handle some cases
5444         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5445         instead of "RETLW" for init data
5446         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5447         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5448         variables are placed in access bank memory (<0x80 and >=0xf80),
5449         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5450         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5451         TBLWT_POSTDEC,TBLWT_PREINC
5452         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5453         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5454         directives
5455         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5456         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5457         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5458         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5459
5460 2004-02-29  Borut Razem <borut.razem AT siol.net>
5461
5462         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5463         support/Util/findme.h, support/Util/system.h: enhance binary relative
5464         search for lib and include by using findProgramPath()
5465
5466 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/SDCCpeeph.h,
5469         * src/SDCCpeeph.c (pcDistance),
5470         * src/port.h,
5471         * src/mcs51/ralloc.h,
5472         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5473         * src/mcs51/main.h,
5474         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5475         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5476         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5477         size calculation port specific, started basis for some register
5478         optimizations
5479         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5480         missing push/pop of r0/r1. Optimized push/pops
5481         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5482         * device/lib/_modsint.c (_modsint),
5483         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5484         and stack version so regression tests pass
5485
5486 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5487
5488         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5489         * src/SDCCast.c (decorateType): catch another small optimization
5490         with '?' operator
5491         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5492         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5493         modified to finally use computeType() all over SDCC,
5494         see Feature Request #877103
5495         * src/SDCCval.h: cosmetic
5496         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5497         valCompare(); regression tested in muldiv.c
5498         * support/regression/tests/muldiv.c (testMod): mod sign follows
5499         dividend only
5500
5501 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5502
5503         * src/SDCCast.c (decorateType): fixed bug #902362
5504         * doc/INSTALL.txt: fixed install instructions for win32
5505
5506 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5507
5508         * device/include/Makefile.in (install): fixed by replacing spaces
5509         by tabs
5510         * doc/README.txt,
5511         * doc/INSTALL.txt: updated for release
5512         * doc/sdccman.lyx: added warning for --xstack being buggy
5513
5514 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5517         to eliminate build warnings.
5518         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5519
5520 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5521            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5522
5523         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5524         removed -penable-stack, added comment for stack pragma, added
5525         warning for not initializing the stack/frame registers, removed
5526         comment at interrupts section
5527
5528         Stack is made permanent, there is no ability to disable stack usage.
5529         * src/pic16/device.h,
5530         * src/pic16/device.c: removed all references to USE_STACK macro,
5531         * src/pic16/device.c (pic16_dump_section): when no elements in
5532         rlist, free rlist before return,
5533         * (pic16_dump_int_registers): NEW, internal registers are a new set
5534         of general purpose registers reused by each function,
5535         * (checkAddReg): returns 1 if registers is added to set,
5536         * (pic16_groupRegistersInSection): when a registers is of type
5537         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5538         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5539         SRCASECMP macro is moved here from device.c
5540         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5541         PO_PCLATU, PO_PRODL, PO_PRODH,
5542         * (pic16_pCodeOpType, genMinus,
5543         changed compares to "a" register, with AOP_ACC,
5544         * (pic16_genPlus): fixed some bugs and indented properly,
5545         * (pic16_addSign): changed size to size+offset in the MOVWF
5546         instruction,
5547         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5548         multiply 8-bit operand by literal, result is 8-bit,
5549         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5550         multiply 2 8-bit operand, result is 8-bit,
5551         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5552         genUMult8X*_16,
5553         * src/pic16/gen.c: changed accUse to contain WREG only,
5554         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5555         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5556         true, do not use immediate addressing any more unless sym is a
5557         pointer in codespace,
5558         * (aopForRemat): do not use immediate addressing when symbol not in
5559         codespace and when symbol's address is requested,
5560         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5561         accUse size (= 1),
5562         * (aopGet): added case for AOP_ACC and don't return "accumulator
5563         bug" but WREG instead,
5564         * (popGetTempReg): pushes contents of temporary register in stack,
5565         * (popReleaseTempReg): pops contents of temporary register from
5566         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5567         * (pic16_popGet): separated case AOP_ACC to return register WREG
5568         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5569         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5570         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5571         the use of immediate pointers to certain cases only.
5572
5573         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5574         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5575         * (assignResultValue, genCall, genRet): modified to use the new
5576         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5577         genPcall is still broken,
5578         * (genFunction): added code to create 'A' type pBlocks when
5579         interrupt functions are generated, code not extensively tested yet,
5580         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5581         * (genEndFunction): modified so ISRs pop stored registers from stack,
5582         * (genMultOneByte): cleanup,
5583         * (AccRsh): added flag andmask, to and result with appropriate mask,
5584         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5585         * (genDataPointerGet): fixed and reenabled its use,
5586         * (genNearDataPointerGet): bugs fixed,
5587         * (genDataPointerSet): bugs fixed,
5588         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5589         pic16_DumpSymbol, pic16_DumpOp,
5590         * src/pic16/genutils.h: function prototypes for the above functions,
5591         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5592         pointers,
5593         * (pic16emitRegularMap): many many many improvements, but needs a
5594         major cleanup,
5595         * src/pic16/main.c: enable_stack in pic16_options is removed,
5596         * (_pic16_parseOptions): removed command line options -penable-stack,
5597         * (_process_pragma): emit stack symbol only when stack pragma is
5598         processed,
5599         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5600         redirected to FSR0L/FSR0H pair,
5601         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5602         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5603         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5604         for immediates,
5605         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5606         * (dumpPicOptype): NEW,
5607         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5608         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5609         with movff instruction,
5610         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5611         added pic16_int_regs, some packRegsFor* functions are commented out,
5612         because produce errors,
5613         * src/pic16/NOTES: minor modifications
5614
5615 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5616
5617         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5618         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5619         --pack-iram.
5620         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5621         * as/mcs51/lkaomf51.c: fixed bug #895763
5622
5623 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5624
5625         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5626
5627 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5628
5629         * doc/sdccman.lyx: added details about the HC08 storage classes and
5630         interrupts, fixed the register usage info for z80 & gbz80
5631
5632 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5633
5634         * doc/sdccman.lyx: added more pic16 port documentation
5635         * device/include/pic16/: added header pic18fregs.h
5636
5637 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5638
5639         * doc/sdccman.lyx: added Vangelis' contribution
5640
5641 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5642
5643         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5644         extend to the next CALL or PCALL, not just to the next CALL.
5645
5646 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5647
5648         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5649
5650 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5653         bug #895752 and a better fix for bug #716790
5654
5655 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5658
5659 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5660
5661         * doc/sdccman.lyx: minor changes, minor changed
5662
5663 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5664
5665         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5666         which can't handle SDCC_NEWONEBYTEOPS,
5667         (geniCodeMultiply): removed conversion from mult to shift for pic14
5668         and pic16
5669
5670 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5671
5672         * src/hc08/gen.h,
5673         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5674         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5675         thus fixing bug #895406
5676
5677 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5678
5679         * device/lib/_modsint.c,
5680         * device/lib/_modslong.c: sign follows divisor only
5681         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5682         signs or signedness can be ignored
5683         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5684         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5685         added optimization for IFX,
5686         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5687         arguments;
5688         reenabled optimization for IFX, which was removed on 2004-01-11
5689         * src/SDCCast.h: added return type IFX
5690         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5691         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5692         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5693         SDCC_OLDONEBYTEOPS selects the old behaviour
5694         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5695         changed again and commented promotion rule
5696         * src/SDCCval.c (valDiv): promotion no longer necessary
5697         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5698         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5699         rewritten
5700         * support/regression/tests/onebyte.c: added
5701
5702 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5703
5704         * gen.c (genInline): reverted to old code for assemnling inline
5705         code because of bug reported James Chadd
5706
5707 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5708
5709         * ralloc.h: missing declarations from previous patch,
5710         seems that patch for ralloc.h was never applied, fixed
5711
5712 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5713            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5714
5715         * pcode.c,
5716         * pcode.h,
5717         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5718         indirect addressing. Marked FSR0 as deprecated
5719         * gen.c (pointerCode): commented out, not needed now
5720         (pic16_popGet2p): new MOVFF helper function
5721         (genGenPointerGet),
5722         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5723         (shiftRLong): removed duplicate debugging info
5724
5725 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5726
5727         * src/ds390/gen.c (genNearPointerGet),
5728         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5729         optimization with bits, but not bitfields.
5730         * src/ds390/ralloc.c (packRegisters),
5731         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5732
5733 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5734
5735         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5736
5737 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5738
5739         * src/SDCCsymt.h,
5740         * src/SDCCicode.c (operandFromSymbol),
5741         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5742         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5743         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5744         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5745         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5746         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5747         bug #892038
5748         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5749         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5750         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5751         * src/SDCCsymt.c (newSymbol),
5752         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5753         enumerator_list),
5754         * src/SDCCval.h,
5755         * src/SDCCval.c (newiList): fixed bug #885705
5756
5757 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5758
5759         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5760         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5761
5762 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5763
5764         * device/include/c8051f120.h,
5765         * device/include/c8051f300.h,
5766         * device/include/c8051f310.h: added/updated header files for Silicon
5767         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5768         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5769         in new section Submitting patches
5770
5771 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5772
5773         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5774         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5775         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5776         genGenPointerSet),
5777         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5778         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5779         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5780         genGenPointerSet),
5781         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5782         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5783         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5784         genGenPointerSet),
5785         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5786         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5787         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5788         genGenPointerSet): fixed bug #892400
5789         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5790         to eliminate build warnings.
5791         * src/SDCCast.c (processParms),
5792         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5793         fixed bug 751859
5794         * support/valdiag/valdiag.py: added GCC to the list of defines active
5795         when compiling with gcc
5796
5797 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5798
5799         * support/Util/SDCCerr.h,
5800         * support/Util/SDCCerr.c,
5801         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5802         with an incomplete type (fixed bug #883734)
5803         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5804
5805 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5806
5807         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5808
5809 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * src/SDCCast.c (decorateType),
5812         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5813         function pointer implementation
5814         * support/regression/tests/funptrs.c: added tests to verify both forms
5815         of function pointers work correctly. Added tests to verify parameters
5816         are passed in the correct order.
5817
5818 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5819
5820         * device.c (regCompare): registers are sorted by ascending
5821         address and increasing size,
5822         * main.c (_pic16_finaliseOptions): removed the declaration
5823         of compiler macro MCU. Now a macro of the format pic18fxxxx
5824         will be defined from the command line
5825
5826 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5827             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5828
5829         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5830         PCOP_RLCF was overwritten!
5831         * gen.c (genSkip): commented out calls to pic16_emitcode,
5832         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5833         * (genlshTwo),
5834         * (genRRC): added debugging info,
5835         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5836         overwritten while shifting,
5837         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5838         overwritten while shifting,
5839         * (AccLsh),
5840         * (AccRsh),
5841         * (shiftLLeftOrResult),
5842         * (shiftRLeftOrResult),
5843         * (shiftRLong),
5844         * (shiftLLong): Implemented with pic16_emitpcode
5845         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5846         * (genLeftShift): Fixed bug, operand for shift by variable always
5847         was "and"ed with 0x0f,
5848         * (genLeftShiftLiteral),
5849         * (genrshTwo),
5850         * (genRightShiftLiteral): added debugging info,
5851         * (genrshFour): added comment,
5852         * (genRightShift): determined signedness from operand "left"
5853         instead of "result"
5854
5855 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5856
5857         * src/SDCCicode.c (geniCodeParms),
5858         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5859         function pointers, fixed function pointer bugs #861242 and #861896
5860
5861 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5862
5863         * device/include/c8051f000.h,
5864         * device/include/c8051f120.h,
5865         * device/include/c8051f300.h: added header files for Silicon
5866         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5867
5868 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5869
5870         * src/SDCCast.c (processParams): added new type flow and restructured
5871         (gatherAutoInit): added new type flow
5872         (addCast): cosmetic changes
5873         (getLeftResultType): added new type flow for array indices, patch
5874         provided by Stas, see FR #877103
5875         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5876         array index patch by Stas
5877         * src/SDCCast.h: added prototype getResultTypeFromType()
5878         * src/SDCCval.h,
5879         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5880         * src/pic/glue.c (pic14emitStaticSeg),
5881         * src/pic16/glue.c (pic16emitStaticSeg),
5882         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5883         for initialization of symbols
5884         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5885         * support/Util/SDCCerr.h:
5886         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5887         * .version: bumped version number to 2.3.8
5888         * device/include/Makefile.in (install),
5889         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5890         avoid warnings
5891
5892 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5893
5894         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5895         Slade Rich fixed an optimization bug
5896         * src/pic/pcodepeep.c,
5897         * src/pic/pcoderegs.c
5898         * doc/Makefile (install): added test for directory
5899
5900 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5903         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5904         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5905         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5906         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5907         * as/mcs51/asexpr.c (term),
5908         * as/hc08/asexpr.c (term): fixed bug #887146
5909
5910 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/z80/gen.c (genMult): handle single byte result product
5913         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5914         DUMMY_READ_VOLATILE (fixed bug #886367)
5915
5916 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5917
5918         * support/regression/tests/libmullong.c: fixed logic, on little endian
5919         hosts we ended without a mullong_wrapper()
5920
5921 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5924         virus/worm forged address usage.
5925
5926 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5927
5928         Fixed promotion, it should be done on AST level:
5929         * src/SDCCast.c (addCast): added promotion to int
5930         (decorateType): updated call to upCast()
5931         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5932         usualUnaryConversions()
5933
5934 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5935
5936         * support/regression/tests/literalop.c (mulWrapper): Added a
5937         wrapper to remove integer overflow warnings.
5938
5939         * support/regression/tests/float_trans.c: Made work on host.
5940
5941         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5942         location of sz80.
5943
5944         * support/regression/generate-cases.py (main): Changed from inline
5945         to a main method.
5946
5947         * doc/Makefile (install): Changed to depth first to get rid of
5948         missing directory install warning.
5949
5950         * as/Makefile (install-doc): Made work on Mac.
5951
5952 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5953
5954         * src/SDCCast.c: added an additional type flow in decorateType() of
5955         opposite direction, see feature request #860006; it's enabled at runtime
5956         by setting the environment variable SDCC_NEWTYPEFLOW
5957         * src/SDCCast.h: changed prototype of decorateType()
5958         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5959         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5960         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5961         see feature request #877103
5962         * src/SDCCval.c: updated call of decorateType()
5963         (valBitwise): fixed bug #882876
5964         (valMinus): added promotion
5965         (valLogicAndOr): result is unsigned
5966         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5967         * src/SDCCsymt.c (computeType),
5968         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5969         must not cause an unsigned operation
5970         * src/pic/glue (pic14emitRegularMap),
5971         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5972
5973 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5974
5975         * src/pic/pcode.c (PCodeID): commented out left over debug code
5976
5977 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5978
5979         * support/valdiag/tests/overflow.c: added shift tests
5980         * src/pic/device.c,
5981         * src/pic/gen.c,
5982         * src/pic/gen.h,
5983         * src/pic/glue.c,
5984         * src/pic/main.c,
5985         * src/pic/pcode.c,
5986         * src/pic/pcode.h,
5987         * src/pic/pcodepeep.c,
5988         * src/pic/pcoderegs.c,
5989         * src/pic/ralloc.c,
5990         * src/pic/ralloc.h: applied patch from Slade Rich;
5991         added support for multiple code pages and multiple RAM banks on the
5992         PIC 14 port. The ASM files now no longer simply assume all the
5993         code / RAM are in the same page / bank. This means the linker can
5994         safely allocate code/RAM of separate ASM files to different pages/banks.
5995         * doc/sdccman.lyx: added Slade's tips
5996         * src/mcs51/peeph.def: fixed bug #880768
5997
5998 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6001         * src/SDCCast.c (decorateType): fixed bug #880197
6002
6003 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6004
6005         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6006         getopt.h.
6007
6008         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6009         strtof is not part of C89 and isn't included with Mac OS X.
6010
6011 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6012
6013         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6014         shiftL2Left2Result): fixed bug #879326
6015         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6016         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6017         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6018         address fetch for clr instruction
6019         * device/lib/hc08/_mulint.c: created optimized assembly version
6020         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6021
6022 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6023
6024         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6025         proposed in FR #877103
6026
6027 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6028
6029         * src/SDCCval.c (cheapestVal): added missing checks
6030         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6031         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6032
6033 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6034
6035         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6036         equal operands
6037
6038 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6039
6040         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6041         loaded with the linker search paths (-L arguments) and the libraries
6042         to be linked with the current source (-l arguments). Changes
6043         currently will affect only the pic16 port.
6044         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6045         include path the port specific paths and port specific libraries,
6046         * gplink command now contains the $3 argument,
6047         * src/pic16/device.h,
6048         * src/pic16/device.c,: structure PIC_device is made public and
6049         renamed to PIC16_device, the same for variable Pics which is renamed
6050         to Pics16. Updated all references to them.
6051         * src/pic16/glue.c (pic16glue): corrected bug with code
6052         initialization which bypassed the variable initializations block.
6053
6054         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6055         COMPILE_FLAGS and added the --nostdinc option
6056
6057 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * device/include/mc68hc908jb8.h: Register defs for another member
6060         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6061
6062 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6063
6064         Documenting changes from previous commits.
6065         * configure.in (version 1.56),
6066         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6067         when generating output files to configure the pic16 library,
6068         but now I've commented it out, since gputils aren't installed in the
6069         SF compile farm, so library won't compile
6070
6071         * device/lib/Makefile.in (version 1.56): initially I've added in
6072         target 'all' the prerequestive 'model-pic16' so it compiled the
6073         pic16 library, but now I've commented it out for the same reasons
6074         above,
6075         * added targets 'model-pic16' and 'objects-pic16' to compile the
6076         library
6077         * added target 'port-specific-objects-pic16' to handle the
6078         generated libraries and copy them into the build/ directory
6079         * added target 'clean-intermediate-pic16' to clean intermediate
6080         files into pic16 directory
6081         * in target 'installdirs' added line to create directory pic16 in
6082         the installation path
6083
6084         * device/include/Makefile.in (version 1.11): in target 'install'
6085         added lines to copy all header files to installation path,
6086         * in target 'installdirs' added line create directory for pic16
6087         headers in the installation path
6088
6089 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6090
6091         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6092          a function call
6093
6094 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6095
6096         * configure,
6097         * device/lib/configure.in,
6098         * device/lib/configure: fixed for autoconf 2.57
6099
6100 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6101
6102         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6103         option so that it actually works. Made it specific to the z80, since
6104         the gbz80 doesn't have these kinds of I/O ports.
6105
6106 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6107
6108         * device/include/z180.h,
6109         * device/lib/_memcpy.c,
6110         * device/lib/_memmove.c,
6111         * device/lib/_mulint.c,
6112         * device/lib/ser_ir.c,
6113         * device/lib/ser_ir_cts_rts.c,
6114         * device/lib/_strcmp.c,
6115         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6116         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6117         portmode; added deprecation warning for bank= and protmode= forms.
6118         Also, guard against buffer overflow.
6119         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6120
6121 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6122
6123         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6124         changed interrupt vector table generation to only emit declared vectors.
6125         * device/include/Makefile.in: added missing backslash
6126         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6127
6128 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6129
6130         Mainly changes to support compilation of the device libraries
6131         * src/pic16/device.c: stack is allocated via symbol and not
6132         via literal number. The symbol is placed in the corresponding
6133         position of the data ram
6134         * (pic16_dump_section): relocatable and absolute uninitialized
6135         data are now emitted in sorted order to reduce section naming,
6136         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6137         weren't marked as being in the access bank,
6138
6139 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6140
6141         Added portion of GNU PIC Library under the directory
6142         device/include/pic16 and device/lib/pic16. These files
6143         contain the declarations of SFRs for the PIC18Fxx2 devices.
6144         The directory is initialized via configure from toplevel.
6145
6146 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6147
6148         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6149         the spilllocations to be compared correctly
6150
6151 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6152
6153         * src/SDCCast.c (decorateType): fixed bug introduced today
6154
6155 2004-01-12  Borut Razem <borut.razem AT siol.net>
6156
6157         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6158         doc/sdccman.lyx: upper case pragmas are deprecated
6159
6160 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6161
6162         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6163         in simpler and even better code
6164
6165 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         * src/SDCCicode.c (operandOperation): fixed bug #874819
6168         * src/SDCCast.c (decorateType): fixed
6169         char foo (unsigned long ul) { return ul > 0; }
6170
6171 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6172
6173         * doc/sdccman.lyx: Moved and added some sections, small changes
6174         all over. Telling LaTeX to be less strict with word spacing
6175         to better keep the right margin. Changed some notes about
6176         maintainance of the ports in section 3.2.1 - is it OK like this?
6177
6178 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6179
6180         SDCC source changes:
6181         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6182         convilong): modified to inform the pic16 port that builtin functions
6183         are external
6184
6185         PIC16 PORT specific changes:
6186         * src/pic16/device.c pic16_dump_equates() added,
6187         processor registers declared internally by the port are emitted in
6188         the translation as equates,
6189         * src/pic16/gen.c: inline code is passed unprocessed to the
6190         translation,
6191         * (pic16_popGetLit2): fnuction modified to take second operand as
6192         pCodeOp pointer and not as literal,
6193         * (popRegFromIdx): prefixed with pic16_,
6194         * (pic16_popCombine2): modified to receive already allocated pCode
6195         operands,
6196         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6197         * (genFunction): initializes local stack frame and pushes on stack
6198         all the registers used by this function,
6199         * (genEndFunction): restores all registers from stack and restores
6200         stack frame,
6201         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6202         improvements,
6203         * (pic16glue): changed the program startup sequence,
6204         * added new dbName code 'A' for functions placed in absolute section
6205         * src/pic16/main.c: added function attribute _naked,
6206         * added pragma 'code' to place a fnuction at an absolute address,
6207         * added command line arguments --debug-ralloc and --pcode-verbose,
6208         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6209         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6210         * (pic16_newpCodeOpLit2): modified to take the second operand as
6211         pCodeOp pointer,
6212         * (pic16_printpBlock): modified to emit each function in a separate
6213         section,
6214         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6215         UPPER for immediate operands,
6216         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6217         instruction,
6218         * src/pic16/peeph.def: all peepholes with movff are commented out,
6219         because there is a problem in the pcode peep optimizer,
6220         * src/pic16/ralloc.c: the register allocator can now reuse local
6221         function symbols for another function. This saves register usage.
6222         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6223
6224         Added file src/pic16/NOTES with information about program writing on
6225         the current port version.
6226
6227 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6228
6229         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6230         and peephole 252 (array access)
6231
6232 2004-01-09  Borut Razem <borut.razem AT siol.net>
6233
6234         * src/SDCCmain.c : fixed #872250: -l command line defined library
6235           files are scanned before standard library files
6236
6237 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/SDCCast.c (decorateType): fixed bug #874046
6240
6241 2004-01-09  Borut Razem <borut.razem AT siol.net>
6242
6243         * support/scripts/sdcc.nsi: remove previous installation
6244
6245 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6246
6247         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6248         bytes for last interrupt vector (mcs51)
6249         * sdcc.spec: fixed typo
6250
6251 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6252
6253         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6254         gen51Code): more efficient parameter receive for --model-large
6255         ("bug" #845294)
6256
6257 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * src/ds390/main.c,
6260         * src/z80/main.c: added missed needLinkerScript flags (more than
6261         one port structure defined in these file)
6262         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6263         bug #795325
6264
6265 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6266
6267         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6268         * src/port.h: added flag needLinkerScript in port->linker
6269         structure to inform whether to create a .lnk file or not,
6270         * src/avr/main.c,
6271         * src/ds390/main.c,
6272         * src/hc08/main.c,
6273         * src/mcs51/main.c,
6274         * src/pic/main.c,
6275         * src/pic16/main.c,
6276         * src/xa51/main.c,
6277         * src/z80/main.c: changed appropriately to configure
6278         needLinkerScript flag
6279         * src/pic/gen.c,
6280         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6281         * src/pic/glue.c: added variable udata_section_name to
6282         override default uninitialized data segment definition for
6283         devices only with SHAREBANK memory (reported from Erik Epetrich)
6284         * (pic14emitOverlay): modified to emit a commented overlay segment
6285         directive when no overlay data exist
6286         * (picglue): modified to emit uninitialized data segment
6287         according to udata_section_name
6288         * src/pic/main.c (_pic14_parseOptions): added command line
6289         options --udata-section-name=[name] to override default
6290         udata definition name
6291         * modified _linkCmd and _asmCmd to include compiler passed
6292         arguments via -W option
6293         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6294         object file from '.rel' to '.o' in port->linker structure,
6295         changed size of fptr from 2 to 3 in port structure
6296
6297 2004-01-07  Borut Razem <borut.razem AT siol.net>
6298
6299         * support/scripts/sdcc.nsi: update PATH
6300         * support/scripts/sdcc.ico: craeted
6301
6302 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6303
6304         * device/include/Makefile.in: fix install
6305         * doc/Makefile: fix install
6306
6307 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6310         in bug #860505
6311         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6312         how the function variable allocation summary is displayed; also
6313         include information about variables allocated to the overlay
6314         segment
6315
6316 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6317
6318         * as/mcs51/lkmain.c: Help about -Y option
6319         * as/mcs51/lkarea.c: Fixed gcc warnings
6320
6321 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6324         fixed warning
6325         * support/valdiag/tests/overflow.c: added
6326         * src/SDCCast.c (decorateType),
6327         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6328         LEFT_OP (left shift)
6329
6330 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6331
6332         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6333         (default behaviour).
6334
6335 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6336
6337         A python script to validate compiler diagnostic messages. It can be
6338         used to verify that sdcc complains about bad c source code and
6339         gives a good location of the error.
6340         * support/valdiag/Makefile,
6341         * support/valdiag/valdiag.py,
6342         * support/valdiag/tests/*
6343
6344 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6347         * src/SDCCsymt.c (newEnumType),
6348         * src/SDCCsymt.h
6349         * support/Util/SDCCerr.c,
6350         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6351         enum related bugs.
6352         * support/regression/tests/enum.c: added test for enum values that
6353         require at least 2 bytes of storage.
6354
6355 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6356
6357         * src/common.h: added ifndef/define/endif macros
6358         around the header file.
6359         Bug reported from Jesus Calvino-Fraga
6360
6361 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6362
6363         * sdcc.spec: updated
6364         * device/include/Makefile.in: don't install CVS directories
6365         * device/lib/Makefile.in: added removal of CVS directories after install
6366         * doc/Makefile: fixed install, added local_icons
6367         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6368         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6369         * src/ds390/gen.c (genRightShift): fixed bug #870788
6370         * src/SDCCast.c (decorateType): fixed bug #870781
6371
6372 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6373
6374         PIC16 port related changes:
6375         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6376         added variable stackPos,
6377
6378         * gen.c: genCall, assignResultValue: added support for
6379         pushing/retrieving function parameters to/from stack,
6380         genFunction,genEndFunction: setup stack frame for the
6381         generated function,
6382         genAddrOf: will be changed according to bug 863624
6383
6384         * added files genutils.c and genutils.h which contain gen*
6385         debugged and optimised functions extracted from gen.c
6386
6387         * glue.c: added variable 'externs' which holds extern symbols,
6388         pic16emitRegularMap: is modified to properly handle relocatable
6389          symbols under the new scheme,
6390         pic16createInterruptVect: is modified
6391         pic16printPublics: is modified to emit 'global' assembler directives,
6392         added pic16_printExterns to print extern symbols,
6393         pic16glue: initializes stack/frame pointer in the beginning of
6394         the assembly output. Temporary hack, will be corrected later,
6395         because gplink yet does not support stack and SDCC does not
6396         yet support a type of crt0.o object to create the final binary.
6397
6398         * Removed many lines that contain 8051 legacy code.
6399         * The code is finally placed under a 'code' directive.
6400         * Added port specific options.
6401
6402         * _process_pragma: simplified since now we do not need *special*
6403         include file to define SFR registers. But a separate header
6404         will be needed. This will be developed later.
6405         * _pic16_parseOptions: added, parses port specific options:
6406         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6407         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6408         --preplace-udata-with=
6409
6410         * _pic16_setDefaultOptions: modified to initialize section names,
6411         but hack is temporarly out of order since it needs improvement.
6412         * _pic16_genAssemblerPreamble: configuration words are emitted by
6413         their address instead of their name. This part is incomplete and
6414         supports only the 18Fxx2 devices. Other devices will emit an error
6415         during assembly since they do not contain the same set of config
6416         registers
6417         * _pic16_genIVT: is modified,
6418
6419         * pcode.c: added definitions for some hardware registers that are needed
6420         for stack support
6421         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6422         All PCI entries are updated. Now LFSR is supported.
6423         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6424         * added pic16_newpCodeOpLit2 to support instructions with
6425         two literal arguments
6426         * pic16_pCode2str: corrected code that emits assembler instructions
6427         with two literal operands and those that have an access bit modifier
6428         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6429         this fixes a bug which caused some labels to be lost, when an
6430         assembler directive was added, i.e. banksel,
6431         * pic16_FixRegisterBanking: improved logic that causes the insertion
6432         of bank switching,
6433         * InlineFunction: functions that are called once, are not any more
6434         inlined. This can be a port option in the future,
6435
6436         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6437
6438         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6439         hold the corresponding uninitialized symbols,
6440         * pic16_allocProcessorRegister: registers have explicit marked the
6441         accessBank field,
6442         * pic16_allocInternalRegister: registers are explicit marked as
6443         not used,
6444         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6445         processing list, so bit registers were lost,
6446         *
6447
6448         * ralloc.h: added field 'accessBank' and original symbol operand
6449         in register definition,
6450         * removed the field isMapped from register definition,
6451
6452         ** Several functions have been removed from various sources:
6453         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6454         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6455         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6456         pic16_assignRelocatableRegisters
6457
6458         ** others have been introduced:
6459         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6460         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6461
6462 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6463
6464         * support/scripts/inc2h.pl: changed definition of BIT_AT
6465         to emit 'sbit at' instead of 'bit at'. This was a request.
6466
6467         PIC16 port related preliminary changes:
6468         * gen.c: prefixed function popRegFromString with
6469         pic16_ and all references to it corrected
6470         * pcode.c: all pic16_pc_* hardware registers prefixed
6471         with underscore (_),
6472         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6473         * ralloc.c: newReg(): when register is REG_SFR then
6474         set address to rIdx,
6475         pic16_allocProcessorRegister(): marks register wasUsed=0
6476         pic16_writeUsedRegs(): added a call to assign processor
6477         registers via pic16_assignFixedRegisters
6478
6479 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6480
6481         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6482         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6483         variables in unused register banks.  Also the SSEG is placed
6484         wherever there is enough space for it, and IDATA can be anywhere
6485         in internal RAM.  For now compile using -Wl-Y[stack_size].
6486         The mem file is different for this option as well, since it
6487         makes no sense of talking about DSEG lenght.
6488
6489 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6490
6491         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6492         in certain cases, e.g. when ROM assignment, patch provided
6493         from Albert den Haan.
6494
6495 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6496
6497         Many signedness and type propagation fixes:
6498         * src/SDCCicode.c: made geniCodeCast() static
6499         replaced SPEC_ by IS_ (cosmetic)
6500         (operandOperation): fixed div and mod operation
6501         (usualBinaryConversions): added support for promotion of char
6502         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6503         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6504         (geniCodeAdd): an array index will stay unsigned, even if promoted
6505         from char to int
6506         (geniCodeArray): ditto
6507         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6508         * src/SDCCsymt.c (computeType): added more support for char;
6509         promotion of char is selectable by promoteCharToInt, fixed signedness
6510         for all cases
6511         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6512         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6513         * src/SDCCval (val*): replaced signedness calculation by
6514         computeType()
6515         rearranged if-branches (cosmetic)
6516         (valShift): added warning W_SHIFT_CHANGED
6517         (valCompare): fixed problem with different types
6518         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6519         * support/regression/tests/literalop.c: added many cases
6520         * support/regression/tests/ast_constant_folding.c: changed finally to
6521         'unsigned int'
6522         * .version: new year, new version: 2.3.7
6523         * src/SDCCmain.c (main): applied patch #866468
6524         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6525         provided by Scott Bronson
6526         * doc/sdccman.lyx: updated documentation for sdcdb
6527         updated and added chapter tips
6528
6529 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6530
6531         * src/SDCCsymt.h: missing from yesterday's commits
6532
6533 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6534
6535         * src/SDCC.y (struct_or_union_specifier),
6536         * support/Util/SDCCerr.c,
6537         * support/Util/SDCCerr.h: verify that struct & union tags are used
6538         as declared.
6539
6540 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6541
6542         * src/SDCCglobl.h: missing from yesterday's commits
6543
6544 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6545
6546         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6547         sft_attributes, struct_declaration, parameter_declaration,
6548         type_name, start_block, declaration_list),
6549         * src/SDCC.lex (check_type): support redefinition of typedef names
6550
6551 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6552
6553         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6554         aligned xdata arrays. Erik helped me with the if clause.
6555
6556 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6559         warning
6560
6561 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6562
6563         * src/SDCCast.h,
6564         * src/SDCCast.c (newAst_),
6565         * src/SDCCicode.h,
6566         * src/SDCCicode.c (ast2iCode, newiCode),
6567         * src/SDCCglobl.h,
6568         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6569         expr, statement, expression_statement, selection_statement,
6570         iteration_statement, expr_opt, jump_statement): foundation for tracking
6571         sequence points
6572         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6573         point code too)
6574
6575 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * support/Util/SDCCerr.c,
6578         * src/SDCCast.h,
6579         * src/SDCCast.c (createCase, createDefault, decorateType),
6580         * src/SDCClabel.c (labelUnreach),
6581         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6582         to error messages.
6583         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6584         (with thanks to Stas Sergeev)
6585         * device/include/time.h,
6586         * device/lib/time.c (CheckTime): suppress unreachable code warning
6587
6588 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6589
6590         * src/SDCCast.c (createIvalCharPtr),
6591         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6592         bug #753752)
6593         * support/regression/tests/nullstring.c: tests for these two bugs
6594
6595 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6596
6597         * support/Util/SDCCerr.h,
6598         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6599         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6600         about storage class and 'at' used inside struct or union
6601         * src/SDCCBBlock.c (iCodeFromeBBlock),
6602         * src/SDCCcse.c (ifxOptimize),
6603         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6604         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6605         printIval, emitStaticSeg, emitOverlay),
6606         * src/SDCClabel.c (deleteIfx),
6607         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6608         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6609         gatherAutoInit, processParms),
6610         * support/Util/SDCCerr.h,
6611         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6612         reporting for post-parse errors.
6613
6614 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6617         implicit casts via union; they don't work on big endian systems
6618         (possible fix for bug #861138)
6619
6620 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6621
6622         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6623         * src/mcs51/main.c: fixed the fix for bug #737001
6624
6625 2003-12-15  Borut Razem <borut.razem AT siol.net>
6626
6627         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6628
6629 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6630
6631         * support/makebin/makebin.c: put output in binary mode
6632
6633 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6634
6635         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6636         xdata and data memory on startup. Set the environment variable
6637         SDCC_NOGENRAMCLEAR to disable this.
6638         * src/mcs51/peephole.def,
6639         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6640         (allows non-interrupt and interrupt code to safely compete for a resource
6641         without the non-interrupt code having to disable interrupts)
6642
6643 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6644
6645         * src/SDCCicode.c (geniCodeAdd),
6646         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6647         with valFromType if type might be a pointer and host is big endian).
6648         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6649         types, not just integer types.
6650         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6651         multiply defined with mismatching "at" address.
6652
6653 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6654
6655         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6656         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6657         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6658         with embedded nulls (fixed bug #753752)
6659
6660 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6661
6662         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6663         Apparently this did not see much testing (endless loop)
6664
6665 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6666
6667         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6668
6669 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6670
6671         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6672         gracefully handle NULL memmap pointers
6673
6674 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6675
6676         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6677         instead of deleting the iCode when an operand is volatile
6678         * src/z80/gen.c (genDummyRead),
6679         * src/mcs51/gen.c (genDummyRead),
6680         * src/ds390/gen.c (genDummyRead),
6681         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6682         not just IC_RIGHT
6683         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6684         * src/SDCC.y: fixed bug #850420
6685
6686 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6687
6688         Applied z80 i/o port patch from Peter Townson and fixed some operators
6689         to better handle operands in A register.
6690         * device/include/z180.h
6691         * src/SDCC.y
6692         * src/SDCCglue.c
6693         * src/z80/gen.c
6694         * src/z80/gen.h
6695         * src/z80/main.c
6696         * src/z80/peeph-z80.def
6697         * src/z80/peeph.def
6698         * src/z80/z80.h
6699
6700 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6703
6704 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * device/lib/hc08/_mullong.c: Removed extra #endif
6707
6708 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         * sim/ucsim/hc08.src/inst.cc,
6711         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6712         carries from x to h
6713         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6714         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6715         * device/include/stdarg.h: fixed varargs for hc08
6716         * device/lib/Makefile.in,
6717         * device/lib/hc08/Makefile,
6718         * device/lib/hc08/_mulint.c,
6719         * device/lib/hc08/_mullong.c: fixed some endian problems
6720
6721 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6722
6723         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6724         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6725         * device/lib/_gptrget.c,
6726         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6727
6728 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6729
6730         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6731         * src/SDCCast.c (astErrors): fixed bug #846007
6732         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6733
6734 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6735
6736         * src/SDCCast.c (decorateType): disabled a transformation I added in
6737         revision 1.188 (access to fields of a structure at an absolute address);
6738         it breaks with bitfields, extern declarations, and gcse analysis.
6739         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6740         could be assigned through a pointer, so don't complain.
6741         * src/SDCCast.c (astErrors),
6742         * src/SDCCast.h,
6743         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6744
6745 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6746
6747         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6748         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6749         output of __config directives, since gpasm now supports them
6750         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6751         pre-processor macro, i.e. -DMCU=p18f452
6752         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6753         and modified to handle 'cast' icode similarly to '=' icode
6754         * src/pic16/device.h (typedef struct PIC_device): added field
6755         'extMIface' to indicate that chip has external memory interface
6756         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6757         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6758         18F8720
6759
6760 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6761
6762         * src/SDCC.y (pointer): fixed bug #846006
6763         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6764         * src/SDCCast.c (decorateType): fixed bug #846009
6765         * src/ds390/peeph.def,
6766         * src/ds390/gen.c (genAnd, genOr),
6767         * src/mcs51/peeph.def,
6768         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6769
6770 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6771
6772         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6773         * src/SDCCdflow.c
6774         * src/SDCCcse.c
6775         * src/SDCCcse.h
6776         * src/SDCCBBlock.h
6777         * src/SDCCBBlock.c
6778
6779 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6780
6781         fixed bug #845089
6782         * src/SDCCbitv.h,
6783         * src/SDCCbitv.c: added function to free a bitvector
6784         * src/SDCClrange.h,
6785         * src/SDCClrange.c: added function to recompute the liveranges
6786         * src/avr/ralloc.c,
6787         * src/ds390/ralloc.c,
6788         * src/hc08/ralloc.c,
6789         * src/mcs51/ralloc.c,
6790         * src/pic/ralloc.c,
6791         * src/pic16/ralloc.c,
6792         * src/xa51/ralloc.c,
6793         * src/z80/ralloc.c: recompute the liveranges after register packing
6794
6795 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6796
6797         * src/SDCCloop.c (newInduction): fixed bug #845630
6798
6799 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6800
6801         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6802         inadvertantly left behind from my 2003-11-12 change
6803
6804 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6805
6806         Updated headers I neglected to commit yesterday.
6807         * src/SDCClrange.h,
6808         * src/SDCCicode.h
6809
6810 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6811
6812         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6813         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6814         * src/SDCCopt.c (eBBlockFromiCode),
6815         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6816         the creation of the key hash table from the sequencing so it can be used
6817         earlier (for some GCSE bug fixes still pending)
6818
6819 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6820
6821         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6822         * support/regression/tests/addsub.c: testing genPlus shortcut
6823
6824 2003-11-15  Borut Razem <borut.razem AT siol.net>
6825
6826         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6827
6828 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6831         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6832         ordering is immaterial.
6833         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6834
6835 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6836
6837         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6838         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6839         (SIGSEV) of bug #840381
6840         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6841         unlink new file before rename if new and old filenames are the same)
6842
6843 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6844
6845         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6846         uninitialized variables) for the mcs51. Set environment variable
6847         SDCC_GENRAMCLEAR to test.
6848         xdata initialization slightly shorter
6849
6850 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         * src/SDCCsymt.h,
6853         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6854         #838241 & 780691 (basicly the same bug)
6855         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6856         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6857
6858 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6859
6860         * src/SDCCmain.c (linkEdit): "fix" #834252
6861
6862 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6865         * src/SDCCast.h,
6866         * src/SDCC.y: fixed bug #819403
6867
6868 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6871         the reentrant attribute.
6872         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6873         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6874         simulation
6875         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6876         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6877         erroneously reduced to a literal.
6878         * src/hc08/ralloc.c (packRegisters, rematStr),
6879         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6880         some cases
6881
6882 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6883
6884         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6885         * doc/sdccman.lyx: changed from 'article' to 'book'
6886         * doc/Makefile: readded test_suite_spec and cdbfileformat
6887
6888 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6889
6890         * device/include/stdlib.h: include malloc.h to comply with ANSI
6891         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6892
6893 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6894
6895         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6896         * doc/clean.mk: also remove *.out files
6897         * doc/sdccman.lyx: some additions, larger top/bottom margins
6898
6899 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6900
6901         * src/SDCC.y: fixed bug #837365
6902         * support/regression/tests/bitopcse.c
6903         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6904         a symbol (might be valop instead)
6905         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6906         * device/lib/clean.mk: added hc08 to the cleaning list
6907
6908 2003-11-04  Borut Razem <borut.razem AT siol.net>
6909
6910         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6911           made 2003-11-04
6912         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6913           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6914           malloc is declared in standard stdlib.h
6915
6916 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         * device/lib/hc08/Makefile: need to clean .rel not .o files
6919         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6920
6921 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6922
6923         * src/port.h,
6924         * src/hc08/main.c,
6925         * src/mcs51/main.c,
6926         * src/ds390/main.c,
6927         * src/z80/main.c,
6928         * src/avr/main.c,
6929         * src/pic/main.c,
6930         * src/pic16/main.c,
6931         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6932         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6933         tests (which uses the port's oclsExpense function)
6934         * src/SDCC.y,
6935         * src/SDCCast.c,
6936         * src/SDCCicode.c,
6937         * src/hc08/gen.c,
6938         * src/ds390/gen.c,
6939         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6940
6941 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/SDCCcse.c (ifxOptimize),
6944         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6945         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6946         deleting the IFX iCode.
6947         * src/hc08/ralloc.c: reduced unneeded slocs
6948         * src/hc08/gen.c: fixed bug in asmopToBoolean
6949
6950 2003-11-04  Borut Razem <borut.razem AT siol.net>
6951
6952         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6953           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6954           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6955           transferred to configure
6956
6957 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6958
6959         Use headers defined in the C[++] standards:
6960         * sim/ucsim/gui.src/serio.src/fileio.cc
6961         * sim/ucsim/gui.src/serio.src/frontend.cc
6962         * sim/ucsim/gui.src/serio.src/main.cc
6963         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6964         * support/Util/NewAlloc.c
6965         * as/hc08/lklibr.c
6966         * as/mcs51/lklibr.c
6967         * as/z80/aslist.c
6968         * as/z80/assym.c
6969
6970 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6971
6972         * Added MSVC projects for hc08 assembler and linker:
6973         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6974         /as/hc08/link_hc08.dsp
6975
6976 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6977
6978         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6979
6980 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6981
6982         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6983
6984 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6985
6986         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6987
6988 2003-10-31  Borut Razem <borut.razem AT siol.net>
6989
6990         * support/cpp2/cpplib.h,
6991           support/cpp2/cpplib.c,
6992           support/cpp2/cpplex.c,
6993           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6994           to switch _asm block preprocessing on / off. Default is
6995           #pragma preproc_asm +
6996
6997 2003-10-31  Borut Razem <borut.razem AT siol.net>
6998
6999         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7000           when outputting comment blocks (when executed with -C option) and
7001           _asm (SDCPP specific) blocks
7002
7003 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7006
7007 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7008
7009         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7010
7011 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7012
7013         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7014         * src/SDCCast.c (decorateType): fixed bug #832664
7015
7016 2003-10-31  Borut Razem <borut.razem AT siol.net>
7017
7018         * support\cpp2\cpplex.c: fixed for SDCPP:
7019           comments(when executed with -C option) and _asm blocks
7020           were included even if they where in skipped #if block.
7021           Applied solution from GCC cpp 3.3.2
7022
7023 2003-10-31  Borut Razem <borut.razem AT siol.net>
7024
7025         * src/SDCC.lex: sdcc now understands both formats:
7026           '# <line_number> <file_name>' and
7027           '#line <line_number> <file_name>'
7028         * support/cpp2/cppmain.c: sdcpp now generates the standard
7029           '# <line_number> <file_name>' instead of former
7030           '#line <line_number> <file_name>'
7031
7032 2003-10-30  Borut Razem <borut.razem AT siol.net>
7033
7034         * support/cpp2/cpphash.h,
7035         * support/cpp2/cpplib.h
7036         * support/cpp2/cpplex.c,
7037         * support/cpp2/cppmain.c,
7038         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7039
7040 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7041
7042         Fixed a number of problems revealed by bug #827883.
7043         * src/SDCCloop.c (loopInvariants): Spill location of the
7044         result operand should be recomputed if extracted from
7045         a loop. Also, don't extract assignments of an iTemp
7046         from a literal.
7047         * src/SDCCast.c (isConformingBody): loop reversal should
7048         not occur if the control variable is involved with a
7049         relational operator.
7050
7051 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7052
7053         * .version: bumped to 2.3.6 to reflect the big improvements
7054         made by Erik and Klaus. Thanks!
7055
7056 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7057
7058         Replaced the livrange code.
7059         * src/SDCClrange.c: added new LR code
7060         * src/SDCCloop.c,
7061         * src/SDCCBBlock.h: removed remainig parts from old LR code
7062         * src/ds390/ralloc.c,
7063         * src/ds390/gen.c: minor fixes to make it work with new code
7064
7065 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7066
7067         * as/hc08/asm.h,
7068         * as/hc08/lkrloc.c,
7069         * src/hc08/gen.c,
7070         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7071         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7072         (tweaked fix for bug #818696)
7073
7074 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7075
7076         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7077
7078 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7079
7080         * src/SDCCmain.c,
7081         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7082         * src/mcs51/gen.c (gencjneshort),
7083         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7084         more efficient (per Scott Bronson's suggestion)
7085
7086 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7087
7088         Extended the semantics of the critical keyword to include
7089         individual statements. See RFE #827755 and #799831
7090         * src/SDCC.y
7091         * src/SDCCicode.c
7092         * src/SDCCopt.c
7093         * src/SDCCast.c
7094         * support/Util/SDCCerr.c
7095         * support/Util/SDCCerr.h
7096         * src/mcs51/gen.c
7097         * src/ds390/gen.c
7098         * src/hc08/gen.c
7099
7100 2003-10-19  Borut Razem <borut.razem AT siol.net>
7101
7102         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7103
7104 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7105
7106         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7107         Fixed bug #818696
7108         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7109         and predecrement operand is displayed
7110
7111 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7112
7113         * src/SDCCval.c (valMinus): fixed bug #826041
7114
7115 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7116
7117         Some hc08 related updates that I missed earlier
7118         * sim/ucsim/stypes.h
7119         * support/regression/ports/hc08/spec.mk
7120
7121 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7122
7123         New target "hc08" for the Motorola 68hc08 family of micros
7124
7125         * configure
7126         * configure.in
7127         * Makefile
7128         * src/hc08/*
7129         * src/SDCCmain.c
7130         * src/port.h
7131         * sim/ucsim/hc08.src/*
7132         * sim/ucsim/configure.in
7133         * src/ucsim/configure
7134         * sim/ucsim/packages_in.mk
7135         * as/hc08/*
7136         * as/Makefile
7137         * device/include/mc68hc908qy.h
7138         * device/lib/hc08/*
7139         * device/lib/Makefile.in
7140         * support/regression/ports/hc08/*
7141         * support/regression/Makefile
7142
7143 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7146         regression test
7147         * src/ds390/gen.c (genCast): fixed bug #821957
7148
7149 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7150
7151         * device/lib/logf.c: "fixed" overlay bug
7152         * support/regression/ports/host/spec.mk: added m library
7153         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7154         * support/regression/tests/float_trans: added (for Eric)
7155
7156 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7157
7158         * src/mcs51/gen.c (genCpl): fixed bug
7159         http://sf.net/mailarchive/message.php?msg_id=6263915
7160
7161 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7162
7163         * src/SDCCast.c (decorateType): added extended constant folding
7164         * src/SDCCsymt.c (computeType): cleanup
7165         * src/SDCCval.c (valShift): minor optimization
7166         * support/regression/tests/ast_constant_folding.c: added
7167
7168 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7169
7170         * src/SDCCmain.c: removed some unintended changes
7171
7172 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7175         * src/z80/gen.c: fixed part of bug #817589
7176         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7177
7178 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7179
7180         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7181         * src/SDCCcflow.c
7182         * src/SDCCcse.c
7183         * src/SDCCdflow.c
7184         * src/SDCClabel.c
7185         * src/SDCClrange.c
7186         * src/SDCCmem.c
7187         * src/SDCCopt.c
7188         * src/SDCCpeeph.c
7189         * src/SDCCset.c
7190         * src/avr/ralloc.c
7191         * src/ds390/ralloc.c
7192         * src/izt/ralloc.c
7193         * src/mcs51/ralloc.c
7194         * src/pic/ralloc.c
7195         * src/pic16/ralloc.c
7196         * src/xa51/ralloc.c
7197         * src/z80/ralloc.c
7198         * src/z80/gen.c: removed unused label "release:"
7199
7200 2003-10-06  Borut Razem <borut.razem AT siol.net>
7201
7202         * src/SDCC.lex: removed definition of unused variables
7203           save_optimize and save_options
7204
7205 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7206
7207         * clean.mk: removed '=' in "-maxdepth=1"
7208         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7209         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7210
7211 2003-10-06  Borut Razem <borut.razem AT siol.net>
7212
7213         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7214           my_unput() replaced by unput()
7215
7216 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7217
7218         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7219         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7220         type-punned pointer will break strict-aliasing rules"
7221         Old LR behaviour is again default; Klaus' LR can be choosen by
7222         defining the environment variable LRKLAUS
7223         * src/SDCCBBlock.h
7224         * src/SDCCloop.c
7225         * src/SDCClrange.c
7226         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7227         * clean.mk: fixed removal of files in bin/CVS/
7228         * device/lib/clean.mk: fixed removal of directories small and large
7229         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7230         * src/SDCCicode.c,
7231         * src/SDCCval.c: removed superflous test for pedantic
7232
7233 2003-10-05  Borut Razem <borut.razem AT siol.net>
7234
7235         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7236           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7237           message "unmatched #pragma SAVE and #pragma RESTORE"
7238
7239 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7240
7241         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7242           assembly, critical functions, atomic, nojtbound)
7243
7244 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7245
7246         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7247         * src/SDCCBBlock.h
7248         * src/SDCCloop.c
7249         * src/SDCCloop.h
7250         * src/SDCClrange.c
7251
7252 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7253
7254         * src/z80/gen.h,
7255         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7256         * src/mcs51/gen.h
7257         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7258         * src/ds390/gen.h
7259         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7260         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7261         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7262
7263 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7264
7265         * src/z80/gen.c (genRet): fixed bug #524753
7266         * src/z80/gen.c (genCast): fixed internal error on cast from
7267         pointer to long
7268         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7269         fix for bug #477835 to the z80
7270         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7271         for tracking iCodes in the peephole optimizer for z80
7272
7273 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7274
7275         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7276         the other part of bug #814548
7277         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7278
7279 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7280
7281         * src/SDCCcse.c: fixed part of bug #814548
7282
7283 2003-09-28  Borut Razem <borut.razem AT siol.net>
7284
7285         * src/asm.c: rewrite of printILine() to use temporary file instead
7286           a pipe
7287         * src/xa51/main.c: commented out declaration of int rewinds
7288
7289 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7290
7291         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7292
7293 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7294
7295         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7296         * src/asm.c (printILine): Fixed bug #811015
7297
7298 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7299
7300         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7301         freeing.
7302
7303 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7304
7305         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7306         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7307         to correctly handle general case of AOP_PAIRPTR
7308         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7309
7310 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7311
7312         * src/mcs51/ralloc.c (fillGaps),
7313         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7314         register positioning bug)
7315
7316 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7317
7318         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7319
7320 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7321
7322         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7323         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7324         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7325         (ralloc doesn't intentionally do this now, but perhaps later)
7326         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7327         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7328         register positioning bugs (Fixed bug #762602 and #795325)
7329         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7330         (Fixed bug #808779)
7331         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7332         lines that --i-code-in-asm generates
7333
7334 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7335
7336         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7337         trying to fclose a FILE* that was already closed.
7338
7339 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7340
7341         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7342         of const struct should be treated as if const themselves)
7343
7344 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7345
7346         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7347
7348 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7349
7350         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7351         Unix (/n) and DOS (/r/n) line terminations.
7352
7353 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7354
7355         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7356         bug #613775
7357
7358 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7359
7360         * src/mcs51/gen.c (genFunction, genEndFunction),
7361         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7362         and restore of EA so that stack offsets to parameters are
7363         correct when using both critical and reentrant/stack-auto.
7364         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7365         size (can be triggered in error if sloc is shared between
7366         different sized objects)
7367         * device/include/float.h: fixed macros to explicitly use
7368         unsigned long where needed
7369
7370 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7371
7372         Feature req. 799831: added code to allow nesting of critical functions
7373         * src/mcs51/gen.c (genFunction, genEndFunction)
7374         * src/ds390/gen.c (genFunction, genEndFunction)
7375
7376 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7377
7378         * src/SDCCsymt.c (sclsFromPtr),
7379         * src/SDCCsymt.h,
7380         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7381         support for standard C idiom of memory mapped variables; for
7382         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7383         to xdata int at 0x1234 tempvar = 1.
7384         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7385         provided by Akiya ISHIDA
7386
7387 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7388
7389         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7390         * src/SDCCval.c (constVal): added reduction from int to char
7391         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7392         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7393         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7394         to ignore the sign
7395         * support/regression/tests/shifts.c: fixed
7396
7397 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7398
7399         * src/z80/gen.c (genXor): Fixed bug #805445
7400
7401 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7402
7403         Fixed bug #621531 (const & volatile confusion in the type chain).
7404         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7405         refer to the const or volatile state of the pointer itself.
7406
7407         * src/SDCCast.c
7408         * src/SDCCglue.c
7409         * src/SDCCicode.c
7410         * src/SDCCsymt.c
7411         * src/SDCCval.c
7412         * src/SDCC.y
7413         * src/SDCCsymt.h
7414         * src/pic/gen.c
7415         * src/pic/ralloc.c
7416         * src/pic16/gen.c
7417         * src/pic16/ralloc.c
7418         * support/regression/tests/const.c
7419
7420 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7421
7422         When checking for duplicated modules, use absolute paths
7423         instead of relative paths.  Files changed:
7424
7425         * as/mcs51/lklib.c
7426         * link/z80/lklib.c
7427
7428 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7429
7430         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7431
7432 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7433
7434         * device/include/string.h: added size_t typedef, changed
7435         prototypes to use size_t, eliminated separate reentrant and
7436         non-reentrant declarations, added _memmove declaration
7437         * device/lib/_memcpy.c: changed to use size_t instead of int,
7438         changed /4 to >>2 to avoid division library call
7439         * device/lib/_memcmp.c,
7440         * device/lib/_memset.c,
7441         * device/lib/_strncat.c,
7442         * device/lib/_strncpy.c,
7443         * device/lib/_strncmp.c: changed to use size_t instead of int
7444         * device/lib/_memmove.c: new file (fixed bug #772294)
7445         * device/lib/Makefile.in: added _memmove.c
7446         * device/lib/z80/asm_strings.s: fixed bug #772290
7447         * support/regression/tests/bitfields.c: attempt to fix host assertion
7448         failure on amd64-unknown-linux2.2
7449
7450 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7451
7452         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7453         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7454         * as/z80/asmain.c (main): fixed bug #801766
7455
7456 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7457
7458         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7459         compilers
7460
7461 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7462
7463         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7464         reported in bug #800609
7465
7466 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7467
7468         * Top header beautifications in src/pic16 directory:
7469           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7470           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7471           pcoderegs.h, ralloc.c, ralloc.h
7472         * main.c: added top header and GPL license notice
7473         * pcode.c: fixed the if-conditional warning
7474
7475 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7476
7477         * device/lib/_mullong.c: replaced int by short for gcc
7478
7479 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7480
7481         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7482         and JUMPTABLE iCodes properly now (worked by accident before)
7483         * src/mcs51/gen.c (leftRightUseAcc),
7484         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7485         iCode properly now. Use getSize instead of nRegs since a & b
7486         aren't part of the nRegs tally.
7487
7488 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7489
7490         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7491         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7492           before instructions that use the _STATUS register
7493
7494 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7495
7496         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7497         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7498         fetching of the pointer
7499         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7500         copied from genNearPointerSet()
7501         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7502         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7503         If they pop r0/r1 they must be called in the opposite order than aopOp().
7504         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7505         (resp. --stack-auto), prepared for --xstack
7506
7507 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7508
7509         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7510
7511 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7512
7513         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7514         these ports have their own __sdcc_external_start()
7515
7516 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7519         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7520         type for bits was changed. It resulted in bit variables becoming
7521         global, which is not permitted in PIC 14 assembly output.
7522
7523 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7524
7525         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7526
7527 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7528
7529         Z80 and MCS51 linkers complaint if a public symbol is defined
7530         in more than one library module:
7531
7532         * as/mcs51/lklib.c
7533         * link/z80/lklib.c
7534         * as/mcs51/Makefile.in
7535
7536 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7537
7538         A few small changes that speed up the peephole optimizer.
7539
7540         * src/SDCCpeeph.c
7541
7542 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7543
7544         Try to make the peephole optimizer smarter by maintaining
7545         an association between the assembly source code and the
7546         iCodes that originated them. Put this information to use
7547         with a new peephole rule condition "notVolatile" so that
7548         the rules can be aggressive yet still safe.
7549
7550         * src/SDCCpeeph.c
7551         * src/SDCCpeeph.h
7552         * src/mcs51/gen.c
7553         * src/mcs51/peeph.def
7554
7555 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7556
7557         Fixed bug #741761
7558
7559         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7560         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7561         if the left or right operand symbols have the accuse flag set.
7562
7563 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7564
7565         Changed the type of the result of the ! (NOT) operator to char;
7566         previously it returned the same type as the source. This allows
7567         us to eliminate all the genFloatNot functions (all of its target
7568         implementations were very buggy) since !float can use the same
7569         code as !long now.
7570
7571         * src/SDCCicode.c (ast2iCode): ! returns char
7572         * src/mcs51/gen.c (genNot, genNotFloat),
7573         * src/ds390/gen.c (genNot, genNotFloat),
7574         * src/z80/gen.c (genNot, genNotFloat),
7575         * src/pic/gen.c (genNot, genNotFloat),
7576         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7577
7578 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7581         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7582            during interrupts. Ensure WSAVE is located at a shared bank address.
7583         2. Fixed page selection in some places
7584         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7585            the registers name strings.
7586         4. Fixed "signed / unsigned compare" compiler warnings.
7587         5. The PIC port manages its own allocation of the general purpose
7588            registers, but makes no attempt to reuse them. As a result when
7589            compiling it soon runs out of general purpose registers. Some
7590            additional code was added to the files pcode.c and device.c to walk
7591            through the function call tree and rename the registers so that they
7592            get reused.
7593
7594         * src/pic/device.c
7595         * src/pic/gen.c
7596         * src/pic/glue.c
7597         * src/pic/pcode.c
7598         * src/pic/pcode.h
7599         * src/pic/ralloc.c
7600         * src/pic/ralloc.h
7601         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7602         genPlus() & genMinus() when the result is the same as left or right
7603
7604 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7605
7606         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7607
7608 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         Made bitfield a distinct type from bit so that bitfields
7611         convert as per ANSI C and bits retain their traditional
7612         boolean style behaviour. Implemented bitfield support in
7613         the z80 port.
7614
7615         * src/SDCCsymt.h,
7616         * src/SDCCsymt.c,
7617         * src/SDCCast.c,
7618         * src/cdbFile.c,
7619         * src/mcs51/gen.c,
7620         * src/ds390/gen.c: bit v bitfield split
7621         * src/z80/gen.c: New support for bitfields
7622         * support/regression/tests/bitfields.c: reenabled z80,
7623         added more tests
7624
7625 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7626
7627         Rules 246.x, 247.x relate to bitfields, the others speed up
7628         access to xdata mapped I/O devices.
7629
7630         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7631
7632 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7633
7634         Cleaned up genPackBits and genUnpackBits and added two helper
7635         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7636         for literal assignments in genPackBits (thanks to Frieder for
7637         reminding me).
7638
7639         * src/mcs51/gen.c
7640         * src/ds390/gen.c
7641
7642 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7643
7644         Fixed bug #748310 (pointer to function type mishandled when the
7645         function name is omitted). Also fixed a SIGSEGV when a function
7646         attribute (reentrant, etc) is used on a non-function or on a
7647         function but misplaced before the parameter list.
7648
7649         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7650         bug #748310
7651         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7652         * support/Util/SDCCerr.h,
7653         * support/Util/SDCCerr.c: Added func attr misuse error msg
7654
7655 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7656
7657         Fixed bug #787649 by anonymous
7658         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7659         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7660
7661 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7662
7663         Fixed numerous bitfield problems.
7664
7665         * src/SDCC.y: More bitfield related error checking
7666         * src/SDCCsymt.h,
7667         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7668         * support/Util/SDCCerr.h,
7669         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7670         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7671         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7672         * support/regression/tests/bitfields.c: tests added
7673
7674 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7675
7676         Made the constant following the "interrupt" keyword optional. If
7677         omitted, the function will not automatically be given an entry
7678         in the interrupt vector table (similar to #pragma NOIV, but
7679         less syntacticly kludgy). The interrupt number is also now
7680         range checked. Also fixed a bug in the high order bit example
7681         in the manual.
7682
7683         * src/SDCC.y
7684         * src/SDCCmem.c
7685         * src/SDCCglue.c
7686         * src/SDCCsymt.h
7687         * support/Util/SDCCerr.c
7688         * support/Util/SDCCerr.h
7689         * doc/sdccman.lyx
7690
7691 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7692
7693         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7694         * src/SDCCicode.c (operandOperation): rewritten some ops
7695         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7696         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7697         other type
7698         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7699         be re-activated by defining REDUCE_LITERALS)
7700         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7701         unsigned, but are signed by default
7702         * src/SDCCval.c (constVal): rearranged
7703         * src/SDCCval.c (valMod): preliminary fix
7704         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7705         * support/regression/literalop.c: added, work in progress
7706
7707 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7708
7709         Generate warnings for useless declarations like "char data;"
7710         that don't do what new users expect.
7711
7712         * src/SDCC.y
7713         * support/Util/SDCCerr.h
7714         * support/Util/SDCCerr.c
7715
7716 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7717
7718         * src/SDCCval.c (valMult): fix overflow detection of negative int
7719
7720 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7723
7724         Changes to support big endian targets:
7725
7726         * src/ports.h
7727         * src/SDCCglue.c
7728         * src/avr/main.c
7729         * src/ds390/main.c
7730         * src/izt/i186.c
7731         * src/mcs51/main.c
7732         * src/pic/main.c
7733         * src/pic16/main.c
7734         * src/xa51/main.c
7735         * src/z80/main.c
7736
7737 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7740         * device/lib/time.c: fixed warning "integer overflow in expression"
7741
7742 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7743
7744         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7745         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7746         constants are unsigned; added recognition of "u" flag for unsigned
7747         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7748         * src/SDCCval.c (valDiv, valMod): fixed signdness
7749         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7750         signedness of modulo, left and right shift
7751         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7752         * support/Util/SDCCerr.h: added warning W_INT_OVL
7753         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7754         * src/SDCCast.c (ast_print): improved output of constants
7755
7756 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7757
7758         Fixed some warnings when building with MSVC:
7759
7760         * as\mcs51\asdata.c
7761         * as\z80\asdata.c
7762         * as\mcs51\asm.h
7763         * as\z80\asm.h
7764         * link\z80\aslink.h
7765         * link\z80\lkdata.c
7766         * link\z80\lkeval.c
7767         * link\z80\lkgb.c
7768         * link\z80\lkihx.c
7769         * link\z80\lks19.c
7770         * link\z80\lksym.c
7771         * support\cpp2\cpplib.c
7772         * src\ds390\gen.c
7773         * src\mcs51\gen.c
7774
7775 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7776
7777         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7778
7779 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7780
7781         * support\librarian\clean.mk: Do not remove Makefile.
7782         * support\librarian\Makefile: added.
7783
7784 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7785
7786         Added librarian to MSVC build:
7787         * all.dsp
7788         * sdcc.dsw
7789         * support\librarian\librarian.dsp
7790
7791         'configure' not needed for librarian, removed:
7792         * support\librarian\configure
7793         * support\librarian\configure.in
7794         * support\librarian\config_in.h
7795         * support\librarian\Makefile.in
7796
7797         Hopefully these ones built the librarian and the rest of sdcc properly:
7798         * Makefile
7799         * Makefile.common.in
7800
7801         Messed up 'configure', so revert to previous version:
7802         * configure
7803         * configure.in
7804
7805 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7806
7807         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7808         there, while the mantissa of a double is "only" 53 bits wide.
7809
7810 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7811
7812         Adding sdcclib to the build.  MSVC project coming soon.
7813         Files added/changed:
7814
7815         * support\librarian\clean.mk
7816         * support\librarian\configure
7817         * support\librarian\configure.in
7818         * support\librarian\config_in.h
7819         * support\librarian\Makefile.bcc
7820         * support\librarian\Makefile.in
7821         * support\librarian\sdcclib.c
7822         * Makefile.bcc
7823         * Makefile
7824         * Makefile.common.in
7825         * configure
7826         * configure.in
7827
7828 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7829
7830         Linker now complaints if linked modules have conflicting options, for
7831         example, one compiled using --model-large and another one compiled with
7832         --model-small.  The following files were modified:
7833
7834         * as\mcs51\asdata.c
7835         * as\mcs51\aslink.h
7836         * as\mcs51\asm.h
7837         * as\mcs51\asmain.c
7838         * as\mcs51\asout.c
7839         * as\mcs51\i51pst.c
7840         * as\mcs51\lkdata.c
7841         * as\mcs51\lklibr.c
7842         * as\mcs51\lkmain.c
7843         * as\z80\asdata.c
7844         * as\z80\asm.h
7845         * as\z80\asmain.c
7846         * as\z80\asout.c
7847         * as\z80\z80pst.c
7848         * link\z80\aslink.h
7849         * link\z80\lkdata.c
7850         * link\z80\lklibr.c
7851         * link\z80\lkmain.c
7852         * src\SDCCglue.c
7853
7854 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7855
7856         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7857         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7858
7859 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7860
7861         * src/z80/mappings.i: fix _mul[us][int,long] entries
7862
7863 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7864
7865         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7866
7867 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7868
7869         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7870         * support/regression/tests/bitopcse.c: added
7871         fixed warning:
7872         * src/avr/gen.c:
7873         * src/pic/gen.c:
7874         * src/pic16/gen.c:
7875         * src/z80/gen.c:
7876         * src/xa51/gen.c:
7877
7878 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7879
7880         added support for new library format to z80, gbz80 linkers:
7881         *link/z80/aslink.h
7882         *link/z80/lklex.c
7883         *link/z80/lklib.c
7884         *link/z80/lklist.c
7885
7886 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7887
7888         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7889         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7890
7891 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7892
7893         added DUMMY_READ_VOLATILE:
7894         * src/SDCC.y:
7895         * src/avr/gen.c:
7896         * src/xa51/gen.c:
7897         * src/z80/gen.c:
7898         * src/pic/gen.c:
7899         * src/pic16/gen.c:
7900         * src/mcs51/gen.c:
7901         * src/ds390/gen.c:
7902         * src/SDCCcse.c (algebraicOpts): many improvements
7903         * src/SDCCcse.h: removed algebraicOpts()
7904         * src/SDCCicode.c (picDummyRead): added
7905
7906 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7907
7908         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7909         "Insufficient space in data memory".
7910
7911 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7912
7913         * src/mcs51/gen.c: fixed bug #771358
7914         * src/z80/gen.c: fixed bug #759087
7915
7916 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7917
7918         * src/pic16/glue.c: minor cleanup by Vangelis
7919
7920 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7921
7922         * device/include/regc515c.h: fixed #758477
7923         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7924         * device/lib/_gptrput.c: saved a few bytes
7925         * my tab spacing is 8, yours too?)
7926         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7927         * device/lib/serial.c: process RX bytes earlier than TX bytes
7928         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7929
7930 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7931
7932         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7933
7934 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7935
7936     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7937
7938 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7939
7940         * device/lib/Makefile.in: bad fix, reverted to 1.43
7941
7942 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7943
7944         * device/lib/Makefile.in: added missing z80 object files
7945
7946 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7949         pic16 progress by Vangelis:
7950         * src/SDCCglobl.h:
7951         * src/SDCCmain.c:
7952         * src/pic/Makefile:
7953         * src/pic:
7954         * pic/Makefile:
7955         * pic16/device.c:
7956         * pic16/device.h:
7957         * pic16/gen.c:
7958         * pic16/gen.h:
7959         * pic16/genarith.c:
7960         * pic16/glue.c:
7961         * pic16/main.c:
7962         * pic16/pcode.c:
7963         * pic16/pcode.h:
7964         * pic16/pcodepeep.c:
7965         * pic16/peeph.def:
7966
7967 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7968
7969     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7970
7971 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7972
7973     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7974     added gbz80 build to MSVC project.
7975     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7976     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7977     from 8051 stuff and setup so it links using a .lnk file.
7978
7979 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7980
7981     * support/librarian/sdcclib.c: sdcc librarian.
7982     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7983     with sdcclib.
7984
7985 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7986
7987     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7988
7989 2003-07-02  Borut Razem <borut.razem AT siol.net>
7990
7991         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7992         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7993         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7994         src/xa51/main.c, src/z80/main.c:
7995         virtualization of glue() function: each port has it's own glue function,
7996         which is accessed by do_glue function pointer in PORT.general structure
7997
7998 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7999
8000         * DS800C400 fun, improved ROM interface and tinibios.
8001
8002 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8003
8004         * More support for DS80C400. Now includes beginning of interface to ROM.
8005
8006 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8007
8008         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8009
8010 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8011
8012         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8013
8014 2003-06-19  Borut Razem <borut.razem AT siol.net>
8015
8016         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8017
8018 2003-06-19  Borut Razem <borut.razem AT siol.net>
8019
8020         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8021         fixed Z80 port - crt0.o: cannot open.
8022
8023 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8024
8025         * support/Util/MySystem.c (merge_command): revert bad fix
8026
8027 2003-06-18  Borut Razem <borut.razem AT siol.net>
8028
8029         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8030
8031 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8032
8033         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8034         option --use-stdout sends errors to stdout instead of stderr.
8035
8036 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8037
8038         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8039
8040 2003-06-15  Borut Razem <borut.razem AT siol.net>
8041
8042         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8043         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8044         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8045         fixed width array of pointers replaced with sets;
8046         multiple include and lib paths ared transferred to preprocessor and linker
8047         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8048         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8049         fixed width array of pointers
8050         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8051         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8052         fixupPath(), getPathDifference()
8053         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8054         fixed width array of pointers
8055
8056 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8057
8058         * src/pic16/ralloc.c: fix warnings
8059         * src/pic16/pcode.c: fix warning
8060
8061 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8062
8063          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8064         know all the details, but essentially this set of changes enable
8065         the pic16 port to generate movff instructions and generate assembler
8066         directives,
8067         * src/SDCCmain.c:
8068         * src/pic16/gen.c:
8069         * src/pic16/glue.c:
8070         * src/pic16/pcode.c:
8071         * src/pic16/device.c:
8072         * src/pic16/main.c:
8073         * src/pic16/pcode.h:
8074         * src/pic16/pcoderegs.c:
8075         * src/pic16/ralloc.c:
8076         * src/pic16/ralloc.h:
8077
8078 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8079
8080         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8081         added option --vc, so sdcc errors and warnings are compatible with
8082         Microsoft Visual Studio.
8083
8084 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8085
8086         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8087           device/lib/libfloat.lib: added atof function.
8088
8089 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * doc/sdccman.lyx: updated to Lyx 1.3
8092         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8093         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8094         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8095
8096 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8099
8100 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8101
8102         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8103           additions to the "related tools/documentation" section
8104
8105 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8106
8107         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8108
8109 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8110
8111         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8112         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8113
8114 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8115
8116         * doc/sdccman.lyx: fix double dash and other minor things
8117         * doc/Makefile: fix double dash
8118
8119 2003-05-28  Karl Bongers(patches from Martin Helmling)
8120         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8121           condition and ignore commands.
8122
8123 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8124
8125         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8126           is in parts still quite out of date, I did changes as far as I felt makes sense
8127           for a non-native english speaker.
8128           Please feel free to add to the manual or to correct my changes.
8129         * doc/Makefile: undid touching the date of intermediate tex files.
8130
8131 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8132
8133         * doc/sdccman.lyx: Manual has an index now
8134
8135 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         Finalize muluint/mulsint and mululong/mulslong merging:
8138         * device/lib/_mulint.c
8139         * device/lib/_mullong.c
8140         * device/lib/gbz80/mul.s
8141         * device/lib/gbz80/stubs.s
8142         * device/lib/z80/mul.s
8143         * device/lib/z80/stubs.s
8144         * src/SDCCsymt.c (initCSupport)
8145
8146 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8147
8148         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8149         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8150           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8151           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8152           instead of /Zm500.
8153
8154 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8155
8156         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8157           the regression tests I'm not brave enough to enable 245.b, 245.c
8158         * doc/sdccman.lyx: added latex preamble for hyperref package.
8159           Using pdflatex this will give you a hyperlinked pdf file with
8160           bookmarks. (prepend '%' before /usepackage if this breaks something)
8161
8162 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8163
8164          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8165
8166 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8167
8168         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8169
8170 2003-05-21    <johan AT balder>
8171
8172         * src/SDCCglue.c (printIval): fixed bug #739934
8173
8174 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8175
8176         Applied patch from bug 737905 (renamed yylineo to mylineno):
8177         * src/altlex.c
8178         * src/SDCCast.c
8179         * src/SDCglobl.h
8180         * src/SDCC.lex
8181         * src/SDCCsymt.c
8182         * src/SDCCval.c
8183         * src/pic16/pcode.c: Cleaned warnings
8184         * src/pic16/pcodeflow.c: Cleaned warnings
8185         * src/pic16/pcoderegs.c: Cleaned warnings
8186
8187 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8188
8189         * src/pic16/pcode.c: Cleaned warnings
8190         * src/pic16/pcodepeep.c: Cleaned warnings
8191         * src/pic16/ralloc.c: Cleaned warnings
8192
8193 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * doc/sdccman.lyx: fixed bug 739745
8196         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8197
8198 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8199
8200         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8201         it can be defined with CFLAGS when running configure
8202         * src/SDCCmain.c: fixed compiling + linking with object files
8203
8204 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8205
8206         * configure.in: configure for pic16 port,
8207             added --disable-pic16-port
8208         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8209         * src/SDCCmain.c: linkOptions is changed to set *,
8210             added if/endif conditional macros to remove options help
8211             messages from optionsTable when a port is not configured, added
8212             support for the PIc16 port in the ports table, when executing
8213             the compiler with no port specified on command line, a default
8214             port is selected with the new macro DEFAULT_PORT which is
8215             defined in port.h, in setDefaultOptions() linkOptions is removed
8216             from initialization assignment, since now it is a set,
8217             parseCmdLine uses setParseWithComma for linkOptions, in
8218             linkEdit() linkOptions are accessed with new function indexSet()
8219             which returns the i'th item of a set variable. See SDCCset.c, in
8220             linkEdit() when calling buildCmdLine(), added linkOptions as
8221             last argument. Now users can pass arguments to gplink via the
8222             -Wl option, main() uses pic16glue() to glue up pic16 programs
8223         * src/SDCCpeeph.c: various changes to support pic16
8224         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8225             return the i'th item of the set
8226         * src/SDCCset.h: added function prototype for indexSet()
8227         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8228         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8229         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8230             added macro DEFAULT_PORT
8231         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8232         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8233             generated
8234         * src/pic16/glue.c: commented out some error producing lines
8235         * src/pic16/main.c: __config directives are commented out to stop
8236             gpasm complaining and test the linkage with gplink, _linkCmd and
8237             _asmCmd changed to be more gplink and gpasm friendly
8238         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8239             produced an error when parsed, peep rule 12 is added to utilize
8240             movff, but it is commented out since the pCode does not support
8241             yet a command with 2 address arguments
8242
8243 2003-05-18    <johan AT balder>
8244
8245         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8246         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8247 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8248
8249         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8250   Added feature to script commands from file.
8251
8252 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8253
8254         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8255         * src/SDCCutil.c: include ctype.h for win32
8256
8257 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8258
8259         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8260
8261 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8262
8263         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8264   Fixed so you can set breakpoints prior to run, run does not stop
8265   on entry now.  Add tbreak.  Other enhancements and fixes for use
8266   with ddd.
8267
8268 2003-05-12  Borut Razem <borut.razem AT siol.net>
8269
8270         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8271
8272 2003-05-11  Borut Razem <borut.razem AT siol.net>
8273
8274         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8275         the path of bin directory, so that PATH is the only env. variable, which has to be set
8276         in case of standard installation.
8277         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8278         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8279         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8280
8281 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8282
8283         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8284         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8285         temp files are in the port dir; clean the gen/test directory when
8286         generating new test.c
8287         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8288         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8289         * support/regression/tests/zeropad.c: added
8290
8291 2003-05-09    <johan AT balder>
8292
8293         * src/SDCCglue.c: fixed bug #597940
8294
8295 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8296
8297         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8298   cache sfr, optimize next,step, fix off by one sourceline,
8299   support ddd list function.
8300         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8301
8302 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * support/regression/HTMLgen.py: added compare_s2f()
8305         * support/regression/Makefile: redo 1.27
8306         * support/regression/generate-cases.py: redo 1.5
8307
8308 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         * support/regression/tests/float.c: workaround 33 bit hex constant
8311         * support/regression/tests/simplefloat.c: fix division for host
8312
8313 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8314
8315         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8316         that tame's the PIC's over-aggressive optimizer.
8317
8318 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8319
8320          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8321          support for MSVC.
8322
8323 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8324
8325         Initial support for DS80C400. "Hello world" runs on TINIm400
8326         (with polled I/O).
8327
8328 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8329
8330          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8331          * Some notes on ddd usage added in debugger/README
8332          Martin Helmling adding more features and fixes for ddd GUI debugger.
8333          Code added for nexti, stepi, up, down, and other adjustments.
8334
8335 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8336
8337         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8338         * src/pic/peeph.def Added two rules to optimize carry manipulation
8339         * src/pic/* removed debug printfs
8340
8341 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8342
8343         * debugger/mcs51/cmd.c: added header newalloc.h
8344
8345 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8346
8347         * as/Makefile: new EXEEXT
8348         * as/z80/Makefile: remove trailing slash of BUILDIR
8349         * as/z80/clean.mk: new EXEEXT
8350         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8351         * support/cpp2/Makefile.in: new EXEEXT
8352         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8353
8354 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8357         EXEEXT was introduced to fix all related problems with targets
8358         "clean", "install" and "uninstall"; a couple of further flaws
8359         especially with "clean" have been fixed too
8360         * as/mcs51/Makefile.in
8361         * as/mcs51/clean.mk
8362         * as/z80/Makefile
8363         * Makefile
8364         * clean.mk
8365         * debugger/mcs51/Makefile.in
8366         * debugger/mcs51/clean.mk
8367         * link/z80/Makefile
8368         * link/z80/Makefile.in
8369         * link/z80/clean.mk
8370         * link/Makefile
8371         * packihx/Makefile.in
8372         * packihx/clean.mk
8373         * sim/ucsim/Makefile
8374         * sim/ucsim/clean.mk
8375         * sim/ucsim/avr.src/Makefile.in
8376         * sim/ucsim/avr.src/clean.mk
8377         * sim/ucsim/s51.src/Makefile.in
8378         * sim/ucsim/s51.src/clean.mk
8379         * sim/ucsim/xa.src/Makefile.in
8380         * sim/ucsim/xa.src/clean.mk
8381         * sim/ucsim/z80.src/Makefile.in
8382         * sim/ucsim/z80.src/clean.mk
8383         * sim/ucsim/main_in.mk
8384         * sim/ucsim/packages_in.mk
8385         * sim/ucsim/gui.src/Makefile.in
8386         * sim/ucsim/gui.src/serio.src/Makefile.in
8387         * sim/ucsim/gui.src/serio.src/clean.mk
8388         * src/Makefile.in
8389         * src/clean.mk
8390         * support/cpp2/Makefile.in
8391         * support/cpp2/clean.mk
8392         * support/makebin/Makefile
8393         * support/makebin/clean.mk
8394         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8395         * doc/sdccman.lyx: --program-suffix no longer needed
8396
8397 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8398
8399          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8400          Martin Helmling added support for ddd GUI debugger.
8401          Code added to display assembly, set variables, and other commands
8402          to interface to ddd.
8403
8404 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * as/Makefile: fix target clean
8407         * as/clean.mk: fix target clean
8408         * as/z80/clean.mk: fix target clean
8409
8410 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8411
8412         * Makefile.common.in: added  AT EXEEXT AT
8413         * configure.in: removed all mingw32 stuff
8414         * configure: rebuilt from configure.in
8415         * doc/sdccman.lyx: updated section "installation"
8416         * support/scripts/sdcc_mingw32: adapted to configure
8417         * support/scripts/sdcc_cygwin_mingw32: added
8418
8419 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8420
8421         * src/pic Added object file support for the PIC port
8422         * src/pic Applied patch from Craig Franklin (this started the object file support)
8423         * src/regression Updated the PIC regression tests for object files
8424
8425 2003-04-20  Borut Razem <borut.razem AT siol.net>
8426
8427         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8428           lklex.c: In function `getfid':
8429           lklex.c:203: warning: array subscript has type `char'
8430         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8431           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8432         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8433           stack handling macros
8434
8435 2003-04-19  Borut Razem <borut.razem AT siol.net>
8436
8437         * "handling space characters in file path" task:
8438         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8439         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8440         * support/Util/MySystem.h: make it self-sufficient
8441         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8442           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8443           handling space characters in file path
8444         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8445           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8446         * support/Util/MySystem.c: handling space characters in executable's path
8447
8448 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * as/z80/Makefile: fix permanent rebuild of z80
8451         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8452         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8453
8454 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8455
8456         * src/SDCCopt.c: add special case optimization to replace modulo by
8457           a power of two with a bitwise AND.
8458
8459 2003-04-18    <johan AT balder>
8460
8461         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8462
8463 2003-04-17    <johan AT balder>
8464
8465         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8466         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8467
8468 2003-04-13  Borut Razem <borut.razem AT siol.net>
8469
8470         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8471         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8472           fixed mingw problem in adl_NORMALIZE_PATH
8473
8474 2003-04-12  Borut Razem <borut.razem AT siol.net>
8475
8476         * fixed "#pragma SAVE/RESTORE can not be nested":
8477         * src/SDCC.lex: reworked pragma handling functions
8478         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8479         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8480
8481 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8482
8483         * src/SDCCutil.c (pathEquivalent): defined but not used
8484         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8485         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8486         * configure: rebuilt from configure.in
8487         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8488         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8489         * device/include/Makefile.in: replace sdcc_datadir
8490         * device/lib/Makefile.in: replace sdcc_datadir
8491         * Makefile.common.in: add LDFLAGS from configure
8492         * packihx/Makefile.in: use LDFLAGS
8493         * src/Makefile.in: use LDFLAGS
8494         * support/cpp2/Makefile.in: add LDFLAGS from configure
8495         * support/makebin/Makefile: use LDFLAGS
8496         * .version: bumped version number to 2.3.5
8497
8498 2003-04-12  Borut Razem <borut.razem AT siol.net>
8499
8500         * completed "different paths" task:
8501         * src/SDCCmacro.c: fixed bug in handling quotes
8502         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8503         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8504
8505 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8506
8507         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8508
8509 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8510
8511         * ds390/gen.c ds390/peeph.def: fix bug 706781
8512
8513 2003-04-11  Borut Razem <borut.razem AT siol.net>
8514
8515         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8516
8517 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8518
8519         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8520         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8521          set - this bit used to not be set...).
8522         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8523           bad code in PIC Port
8524         * src/regression/and2.c added to test bug 609268
8525         * src/regression/Makefile added and2.c to regression test
8526
8527
8528 2003-04-08    <johan AT CP255758-A>
8529
8530         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8531         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8532         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8533
8534 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8535
8536         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8537         fix bug #487815
8538         * support/cpp2/Makefile.in: fix bug #487815
8539         * configure: rebuilt from configure.in
8540         * Makefile.common.in: docdir changed, new path suffixes
8541         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8542         * sdcc_vc_in.h: reflect changes from sdccconf.h
8543         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8544         * src/SDCCutil.h: remove BINDIR hack
8545         * doc/sdccman.lyx: update new path hierarchy
8546
8547 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8548
8549         * src/SDCCpeeph.c: added okToRemoveSLOC test
8550
8551 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8552
8553         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8554
8555 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8556
8557         * src/SDCCpeeph.c: added labelIsReturnOnly test
8558         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8559
8560 2003-04-05    <johan AT balder>
8561
8562         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8563         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8564         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8565         * src/SDCCast.c: fixed a warning
8566         * src/SDCCast.h: fixed a warning
8567         * src/SDCCicode.c (operandFromAst): fixed a warning
8568
8569 2003-04-04    <johan AT balder>
8570
8571         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8572         * src/SDCCast.c (decorateType): fixed bug #715076
8573         * src/SDCC.y: fixed bug #702907
8574
8575 2003-04-03    <johan AT balder>
8576
8577         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8578         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8579         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8580         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8581         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8582
8583 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8584
8585         * _decdptr.c: fix return values
8586         * _gptrget.c: fix return values
8587         * _gptrgetc.c: fix return values
8588         * _gptrput.c: fix return values
8589         * _mulint.c: fix return values
8590         * as/z80/Makefile: fix 'make -j' problem
8591
8592 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8595         * configure.in: big cleanup, updated to autoconf 2.5x
8596         * configure: rebuilt from configure.in
8597         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8598         * sdcc_vc_in.h: reflect changes from sdccconf.h
8599         * doc/Makefile: fixed a flaw in "make install"
8600
8601 2003-04-02    <johan AT balder>
8602
8603         * src/ds390/gen.c (genCmp): no comments
8604         * src/mcs51/gen.c (genCmp): no comments
8605         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8606         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8607
8608 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8609
8610         * support/regression/generate-cases.py: place generated file in given sub directory
8611         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8612         * support/regression/Makefile: improvements for 'make -j';
8613         side effect: it's simpler and faster now
8614
8615 2003-03-31  Borut Razem <borut.razem AT siol.net>
8616
8617         * src/z80/main.c: link-{port} and as-{port} defined without path
8618         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8619
8620 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8623
8624 2003-03-30  Borut Razem <borut.razem AT siol.net>
8625
8626         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8627           changed type of list parameter to set
8628         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8629         * src/port.h: changed type of do_assemble() parameter to set
8630         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8631           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8632           definition of "cppoutfilename" macro with NULL value in preProcess()
8633         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8634         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8635         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8636           replaced with set *binPathSet
8637         * shash_add() deallocates the item, if allready exsists, before adding the new one
8638         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8639
8640 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8641
8642         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8643           a nested for loop bug in the PIC port
8644         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8645           for loops
8646
8647 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8648
8649         * support/Util/dbuf.h: remove C++ stuff to make it portable
8650
8651 2003-03-28  Borut Razem <borut.razem AT siol.net>
8652
8653         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8654           literal strings in stringLiteral()
8655         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8656         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8657           to the project
8658
8659 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8660
8661         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8662
8663 2003-03-26    <johan AT balder>
8664
8665         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8666         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8667         * src/SDCCast.c (decorateType): fixed " -v < 3"
8668
8669 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8670
8671         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8672         Added Lenny Story's debug infrastructure changes:
8673         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8674         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8675         * src/cdbFile.c: added
8676         * src/SDCCdebug.c: added
8677         * src/SDCCdebug.h: added
8678         * src/SDCCast.c (createFunction)
8679         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8680         * src/SDCCmain.c (parseCmdLine, main)
8681         * src/SDCCmem.c (redoStackOffsets)
8682         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8683         * src/SDCCsymt.h
8684         * src/common.h
8685         * src/avr/gen.c (genAVRCode)
8686         * src/ds390/gen.c (gen390Code)
8687         * src/mcs51/gen.c (gen51Code)
8688         * src/pic/gen.c (genpic14Code)
8689         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8690         * src/xa51/gen.c (genXA51Code)
8691         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8692
8693 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8694
8695         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8696         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8697
8698 2003-03-22    <johan AT balder>
8699
8700         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8701
8702 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8703
8704         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8705         * doc/cdbfileformat.lyx: added, written by Lenny Story
8706         * doc/Makefile: added cdbfileformat.lyx
8707         * doc/clean.mk: added cdbfileformat.lyx
8708
8709 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8710
8711         * src/mcs51/peeph.def: fix bug #705773
8712
8713 2003-03-20    <johan AT balder>
8714
8715         An sfr/sbit can have an "at #" AND an initializer
8716         * src/SDCCsymt.c (checkSClass):
8717         * src/SDCCmem.c (allocGlobal):
8718         * src/SDCCmem.c (allocLocal):
8719         * src/SDCCast.c (createBlock):
8720
8721 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8724
8725 2003-03-16    <johan AT balder>
8726
8727         Undid the hackup of const and volatile, the problem is much bigger
8728         * src/SDCC.y:1.65
8729         * src/SDCCast.c:1.171
8730         * src/SDCCglue.c:1.138
8731         * src/SDCCicode.c:1.146
8732         * src/SDCCsymt.c:1.150
8733         * src/SDCCval.c:1.65
8734
8735 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8736
8737         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8738         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8739
8740 2003-03-13    <johan AT balder>
8741
8742         Hackup const and volatile modifiers in type chains a bit:
8743         * src/SDCC.y:1.63
8744         * src/SDCCast.c:1.169
8745         * src/SDCCglue.c:1.136
8746         * src/SDCCicode.c:1.143
8747         * src/SDCCsymt.c1.146
8748         * src/SDCCsymt.h1.59
8749         * src/SDCCval.c:1.63
8750
8751 2003-03-12    <johan AT balder>
8752
8753         * src/SDCCBBlock.h: more LRH debugging junk
8754         * src/SDCCcflow.h: more LRH debugging junk
8755         * src/SDCCloop.c: more LRH debugging junk
8756         * src/SDCC.y (struct_declaration): fixed bug #697590
8757         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8758         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8759         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8760
8761 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8762         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8763         test function names must now match exactly).
8764         * src/SDCCcse.c: added special case in findCheaperOp to allow
8765         extending a short integer. Makes less awful code for bug 700121 test case.
8766
8767 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8768
8769         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8770         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8771
8772 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8773
8774         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8775         actually called (operandsNotEqual() was called for all
8776         operandsNotEqualX tests).
8777
8778 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8779
8780         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8781         with shorter literals. Fixes bug 700121.
8782
8783 2003-03-11    <johan AT balder>
8784
8785         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8786
8787 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8788
8789         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8790         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8791
8792 2003-03-10  Borut Razem <borut.razem AT siol.net>
8793
8794         * src/SDCCmain.c: pipe preprocessor's output
8795         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8796         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8797         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8798         which closes all pipes in pipeSet set
8799         * src/SDCCset.c: free deleted item in function deleteSetItem()
8800         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8801         moved from z80 to src subproject
8802         * .version: increased version number to 2.3.4
8803
8804 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8805
8806         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8807         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8808         * support/regression/ports/xa51/spec.mk: fix typo
8809
8810 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8811
8812         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8813
8814 2003-03-09  Borut Razem <borut.razem AT siol.net>
8815
8816         * src/SDCCmain.c: pipe preprocessor's output
8817         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8818         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8819         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8820         which closes all pipes in pipeSet set
8821         * src/SDCCset.c: free deleted item in function deleteSetItem()
8822         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8823         moved from z80 to src subproject
8824
8825 2003-03-09  Borut Razem <borut.razem AT siol.net>
8826
8827         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8828         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8829         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8830         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8831         * src/SDCCglobl.h: unification of WIN32 native definitions
8832
8833 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8834
8835         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8836
8837 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8838
8839         * src/configure.in:   check for endianess (even while cross-compiling)
8840         * src/configure:      check for endianess (even while cross-compiling)
8841         * src/configure_in.h: check for endianess (even while cross-compiling)
8842         * src/avr/gen.c:        remove old endianess stuff
8843         * src/mcs51/gen.c:      remove old endianess stuff
8844         * src/ds390/gen.c:      remove old endianess stuff
8845         * src/pic/gen.c:        remove old endianess stuff
8846         * src/pic/genarith.c:   remove old endianess stuff
8847         * src/pic/glue.c:       fix endianess check
8848         * src/pic16/gen.c:      remove old endianess stuff
8849         * src/pic16/genarith.c: remove old endianess stuff
8850         * src/pic16/glue.c:     fix endianess check
8851         * src/xa51/gen.c:       remove old endianess stuff
8852         * src/z80/gen.c:        fix endianess check
8853         * src/SDCCglue.c:       fix endianess check
8854         * src/ds390/peeph.def: fix bug 700036
8855
8856 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8857
8858         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8859         * src/configure: find appropriate data-types on host for SDCC's int and long
8860         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8861         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8862         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8863
8864 2003-03-07    <johan AT balder>
8865
8866         Just a big NOOP:
8867                 some minor cleanups before the big shot
8868                 OP_DEFS and OP_USES now use Kevin's protection
8869                 new option --nolabelopt
8870
8871         * src/SDCCBBlock.c:
8872         * src/SDCCast.c,:
8873         * src/SDCCcflow.c:
8874         * src/SDCCcse.c:
8875         * src/SDCCicode.c:
8876         * src/SDCCicode.h:
8877         * src/SDCClabel.c:
8878         * src/SDCCloop.c:
8879         * src/SDCCmain.c:
8880         * src/ds390/ralloc.c:
8881         * src/mcs51/ralloc.c:
8882         * src/pic/ralloc.c:
8883         * src/xa51/ralloc.c:
8884         * src/z80/ralloc.c:
8885
8886 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8887
8888         * src/pic/pcode.c (get_op): fix 64 bit warnings
8889         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8890         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8891         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8892         * support/regression/tests/malloc.c: fix 64 bit warnings
8893
8894 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8895
8896         * src/mcs51/gen.c (genMinus): fixed bug 696436
8897
8898 2003-03-02  Borut Razem <borut.razem AT siol.net>
8899
8900         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8901
8902 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8903
8904         * configure.in: test for mkstemp
8905         * sdccconf_in.h: add HAVE_MKSTEMP
8906
8907 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8908
8909         * device/include/ctype.h: removed warning while using --stack-auto
8910         * device/include/malloc.h: removed warning while using --stack-auto
8911         * device/include/string.h: removed warning while using --stack-auto
8912
8913 2003-02-23  Borut Razem <borut.razem AT siol.net>
8914
8915         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8916         because NDEBUG is defined (see man assert)
8917         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8918
8919 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8920
8921         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8922         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8923
8924 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8925
8926         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8927         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8928
8929 2003-02-18    <johan AT balder>
8930
8931         * as/mcs51/asmain.c (asmbl): module can start with a digit
8932         * as/z80/asmain.c (asmbl): module can start with a digit
8933
8934 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8935
8936         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8937         * src/asm.c: fix pipe() for Mingw32
8938
8939 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8940
8941         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8942         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8943         make -V work again; --c1mode reads now from stdin
8944         * doc/sdccman.lyx: added --c1mode
8945         * support/Util/SDCCerr.c: new messages for c1 mode
8946         * support/Util/SDCCerr.h: new messages for c1 mode
8947         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8948
8949 2003-02-15    <johan AT balder>
8950
8951         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8952
8953 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8954
8955         * doc/sdccman.lyx: Environment variables, -o and other minor things
8956
8957 2003-02-14    <johan AT balder>
8958
8959         * src/xa51/main.c: before anyone really tries to use it :)
8960
8961         * Install doc's in share/sdcc/doc
8962         * removed some obsolete files
8963         * Do a proper make distclean and uninstall
8964         M Makefile.common.in
8965         R sdccbuild.sh
8966         M as/Makefile
8967         M device/include/Makefile.in
8968         M device/lib/Makefile.in
8969         M doc/sdccman.lyx
8970         M link/Makefile
8971         M sim/ucsim/doc/Makefile.in
8972         M src/clean.mk
8973         R src/avr/peeph.rul
8974         R src/xa51/peeph.rul
8975         M support/cpp2/Makefile.in
8976         M support/makebin/Makefile
8977
8978
8979 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8980
8981         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8982
8983 2003-02-10  Borut Razem <borut.razem AT siol.net>
8984
8985         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8986         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8987         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8988         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8989         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8990         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8991         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8992         src/z80/Makefile.bcc: Borland Makefile cleanup
8993         * as/z80/Makefile.bcc: Added Borland Makefile
8994         * support/cpp2/borland.h: Removed
8995
8996 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8999         * src/SDCC.lex: new pragma NOIV
9000         * src/SDCCglobl.h: new pragma NOIV
9001         * src/SDCCmem.c: new pragma NOIV
9002
9003 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9004
9005         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9006
9007 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9008
9009         * src/SDCCmain.c: signal handling is switched off by --debug
9010         * doc/Makefile: small fix for install; use clean.mk again
9011         * doc/clean.mk: clean *.pdf and *.html too
9012
9013 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9014
9015         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9016         * device/lib/printfl.c: fix a ds390 bug by making it portable
9017         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9018         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9019         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9020         * debugger/mcs51/cmd.c: converted multi-line string literals
9021         * sim/ucsim/globals.cc: converted multi-line string literals
9022         * src/SDCCmain.c: introduced signal handler to remove temp files
9023         * doc/Makefile: small tweaks, implement clean
9024         * doc: removed generated files
9025
9026 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9027
9028         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9029         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9030         Address Record is not correctly generated for DS390."
9031
9032 2003-02-02  Borut Razem <borut.razem AT siol.net>
9033
9034         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9035         * as/mcs51/asm.h: fixed compilation with Borland C
9036         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9037         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9038         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9039         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9040         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9041         src/z80/Makefile.bcc: delete $(LIB) only if exist
9042         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9043
9044 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9045
9046         * device/include/malloc.h: introduced NULL
9047         * device/include/string.h: introduced NULL
9048         * device/include/stdlib.h: introduced NULL
9049         * device/lib/_memcpy.c: removed NULL
9050         * device/lib/_strcat.c: removed NULL
9051         * device/lib/_strchr.c: removed NULL
9052         * device/lib/_strcmp.c: removed NULL
9053         * device/lib/_strcpy.c: removed NULL
9054         * device/lib/_strcspn.c: removed NULL
9055         * device/lib/_strlen.c: removed NULL
9056         * device/lib/_strncat.c: removed NULL
9057         * device/lib/_strncmp.c: removed NULL
9058         * device/lib/_strncpy.c: removed NULL
9059         * device/lib/_strpbrk.c: removed NULL
9060         * device/lib/_strrchr.c: removed NULL
9061         * device/lib/_strspn.c: removed NULL
9062         * device/lib/_strstr.c: removed NULL
9063         * device/lib/_strtok.c: removed NULL
9064         * device/lib/malloc.c: removed NULL, include own header
9065
9066 2003-02-02    <johan AT balder>
9067
9068         * 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
9069         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9070         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9071         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9072         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9073         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9074
9075 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9076
9077         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9078         area 'DATA'"
9079
9080 2003-02-01    <johan AT balder>
9081
9082         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9083
9084 2003-01-31    <johan AT CP255758-A>
9085
9086         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9087
9088 2003-01-30    <johan AT balder>
9089
9090         * src/SDCCBBlock.c: automatic bug detection
9091         * src/SDCCicode.c: automatic bug detection
9092
9093 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9094
9095         * src/SDCCglobl.h:   now --xram-size 0 works
9096         * src/SDCCmain.c:    now --xram-size 0 works
9097
9098 2003-01-29    <johan AT balder>
9099
9100         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9101
9102 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9103
9104         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9105         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9106         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9107         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9108         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9109         * src/SDCCmain.c:    Added options --xram-size and --code-size
9110
9111 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9114         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9115
9116 2003-01-27    <johan AT balder>
9117
9118         * src/SDCC.y: fixed bug #613764
9119
9120 2003-01-26    <johan AT balder>
9121
9122         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9123         * src/SDCCsymt.h: fixed bug #673374
9124         * src/SDCCglue.c: fixed bug #661910
9125         * src/SDCCast.c: fixed bug #458099 and 673374
9126
9127 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9128
9129         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9130         * as/mcs51/strcmpi.h: added
9131         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9132         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9133         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9134         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9135         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9136         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9137         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9138         * as/mcs51/Makefile.aslink: new module strcmpi
9139         * as/mcs51/Makefile.asx8051: new module strcmpi
9140         * as/mcs51/Makefil.bcc: new module strcmpi
9141         * as/mcs51/Makefile.in: new module strcmpi
9142         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9143
9144 2003-01-26    <johan AT balder>
9145
9146         * src/SDCCglue.c: reverted back to 1.124
9147         * src/SDCCast.c: reverted back to 1.156
9148         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9149
9150 2003-01-25    <johan AT balder>
9151
9152         * src/SDCCglue.c: A better fix for bug #661910
9153         * src/SDCCast.c: A better fix for bug #661910
9154         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9155
9156 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * src/Makefile.in: remove spawn.o
9159         * src/SDCCmain.c: remove spawn.h
9160         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9161         * src/spawn.c: removed
9162         * src/spawn.h: removed
9163         * support/regression/ports/ds390/spec.mk: link with -r
9164
9165 2003-01-24    <johan AT CP255758-A>
9166
9167         * src/ds390/gen.c (aopOp): fixed bug #667458
9168         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9169         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9170         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9171
9172 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9173
9174         * src/mcs51/peeph.def: better assembler identation by Frieder
9175         * src/mcs51/gen.c: better assembler identation by Frieder
9176
9177 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9178
9179         * as/z80/string.h: removed for gcc 3.2
9180         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9181         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9182
9183 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9184
9185         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9186         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9187         * support/regression/Makefile: separate temp files for ports
9188         * support/regression/generate-cases.py: separate temp files for ports
9189         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9190         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9191
9192 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9193
9194         * moved tinitalk to device/examples/ds390
9195
9196 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9197
9198         * as/mcs51/lkmem.c: rflag is for DS390
9199         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9200         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9201                          (linkEdit): move mem- and map-files the same way as ihx-files
9202         * src/z80/main.c (_setDefaultOptions): removed --generic
9203         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9204         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9205         * src/pic/glue.c (picglue): --c1mode works again
9206         * src/pic16/glue.c (pic16glue): --c1mode works again
9207         * src/asm.c (printCLine): fix #660034
9208
9209 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9210
9211         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9212         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9213         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9214         * as/mcs51/lkmem (summary): better fix for sp problem
9215         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9216         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9217         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9218                                               remove --stack-after-data
9219
9220 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9221
9222         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9223         * src/SDCCutil.c (join): ugly bug: missing '\0'
9224         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9225
9226 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9229         * src/port.h: typo
9230         * src/pic/main.c (_asmCmd): gpasm supports -o
9231         * src/z80/main.c: more general macros
9232         * device/lib/Makefile.in: remove intermediate files
9233
9234 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9235
9236         * .version: Bumped version number to 2.3.3
9237         * src/SDCCBBlock.c: new option -o
9238         * src/SDCCglobl.h: new option -o
9239         * src/SDCCglue.c: new option -o
9240         * src/SDCCmain.c: new option -o
9241         * src/asm.c: new option -o
9242         * src/ds390/main.c: new option -o
9243         * src/pic/glue.c: new option -o
9244         * src/pic/pcode.c: new option -o
9245         * src/pic/ralloc.c: new option -o
9246         * src/pic16/glue.c: new option -o
9247         * src/pic16/pcode.c: new option -o
9248         * src/pic16/ralloc.c: new option -o
9249         * src/z80/main.c: new option -o
9250         * device/lib/Makefile.in: use -o
9251         * support/regression/ports/ds390/spec.mk: use -o
9252         * support/regression/ports/gbz80/spec.mk: use -o
9253         * support/regression/ports/mcs51/spec.mk: use -o
9254         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9255         * support/regression/ports/z80/spec.mk: use -o
9256         * support/regression/ports/ucz80/spec.mk: use -o
9257         * support/regression/ports/xa51/spec.mk: use -o
9258         * support/regression/fwk/lib/timeout.c: fix usage string
9259
9260 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9261         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9262
9263 2003-01-07    <johan AT balder>
9264
9265         * src/SDCCast.c (decorateType): fixed bug #600035
9266
9267 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9268         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9269         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9270         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9271         * src/pic/pcode.c: outcommented unused variable to remove warnings
9272         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9273
9274 2003-01-06    <karl AT turbobit.com>
9275         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9276    regression tests.
9277
9278 2003-01-06    <johan AT balder>
9279
9280         * src/SDCCicode.c: fixed array add
9281
9282 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9283         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9284         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9285
9286 2003-01-04    <johan AT balder>
9287
9288         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9289
9290 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9291         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9292
9293 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9294         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9295         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9296
9297 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9298         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9299
9300 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9301         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9302
9303 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9304         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9305
9306 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9307
9308     * in \sdcc\as\mcs51\ changed these files in order to create an
9309     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9310     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9311     following files to include the previous two files: aslink.dsp,
9312     Makefile.aslink, Makefile.bcc, and Makefile.in.
9313
9314     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9315     .adb instead of .cdb
9316
9317 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9318
9319         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9320         value from option --iram-size.
9321
9322 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9323
9324         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9325         dram[] array.
9326
9327 2002-09-18    <wiml AT hhhh.org>
9328
9329         * SDCClrange.h: exposed setFromRange() and setToRange()
9330         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9331           packRegsForAccUse() (bug 542397)
9332         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9333           multiple times and emitting the fetch operations more than once
9334           added aopGetUsesAcc() function to allow binary operators to
9335           fetch their operands in the correct order; made genMinus() emit
9336           compact code for X = LITERAL - Y
9337
9338 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9339         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9340         sprintf() in line 1267.
9341
9342 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9343         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9344         like ports.
9345
9346 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9347         Changes to aslink (All the changes are marked with 'JCF'):
9348
9349         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9350         summary().
9351
9352         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9353         area BSEG.  Also moves, if possible, the DATA area down into the internal
9354         ram so more space is available.
9355
9356         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9357         sflag.
9358
9359         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9360         not bytes.  Function summary() which creates a memory usage summary
9361         file with extension .mem.  Reports of overlaping stack and small stack
9362         size.  If the space for the stack is less than 16 bytes aslink trows a
9363         warning.
9364
9365         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9366         the 8051.  Option 'y' for memory summary output file.
9367
9368         Changes to sdcc (All the changes are marked with 'JCF'):
9369
9370         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9371
9372         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9373         overlaying area for it (uses RegBankUsed[4]).
9374
9375         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9376         bank zero as used by default.  By default aslink locates the stack
9377         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9378         the creation of the .mem file.  Delegates the allocation of data area
9379         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9380         the begining of the stack area to aslink.
9381
9382         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9383         glue() in SDCCglue.c creates an area for it.
9384
9385 2002-09-03  Borut Razem <borut.razem AT siol.net>
9386         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9387         sdcc/src/pic/glue.c:
9388         introduced atexit() handler for teporay files removal in case of
9389         errors, assertions, ...
9390
9391 2002-08-29  Borut Razem <borut.razem AT siol.net>
9392         * sdcc/support/cpp2/auto-host_vc_in.h:
9393         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9394         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9395         Maybe there is a similar problem with BORLANDC? It should be checked!
9396
9397         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9398         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9399         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9400         was not executed, and the compiler (cl) launched a warning:
9401         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9402
9403 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9404         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9405
9406 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9407         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9408
9409         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9410           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9411           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9412           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9413           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9414           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9415           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9416         - added Release configuration in VS projects
9417         - review of compiler an linker options
9418         - VC .exe files are generated in bin_vc directory, not to interfere
9419           with binaries generated from other projects (cygwin, mingw, bcc ...)
9420
9421         * sdcc/src/yacc.dsp: added
9422
9423         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9424         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9425         and insert the version number definitions from .version
9426
9427         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9428
9429         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9430         added - genarate auto-host.h using auto-host_vc_in.h as template
9431
9432         * sdcc/sdcc_vc.h,
9433         removed from CVS, generated automatically
9434
9435 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9436         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9437
9438 2002-08-11  Borut Razem <borut.razem AT siol.net>
9439         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9440
9441 2002-08-10  Borut Razem <borut.razem AT siol.net>
9442         * src/SDCCmain.c (main):
9443         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9444         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9445         The consequence was that some temporary files were not removed.
9446
9447         * src/SDCCglue.c:
9448         unification of code in functions tempfilename() and tempfile():
9449         function tempnam() is defined in Visual Studio 6.0 and .NET
9450
9451         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9452
9453         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9454           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9455         - removed compiler command line option /WX: Treats all warnings as errors
9456         - update a list of source files, included into the project
9457
9458         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9459           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9460         changed project type to Generic Project so that can be correcly converted to VS.NET project
9461
9462         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9463
9464         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9465
9466         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9467
9468         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9469         added return 0 statements after assert() to make compiler happy
9470
9471         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9472         added newline in the def file to keep MSC compiler satisfied
9473
9474         * sdcc/src/z80/gen.c:
9475         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9476           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9477         - solved MSC error in function aopDump()
9478
9479         * sdcc_vc.h: define PREFIX as "\\sdcc"
9480
9481 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9482         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9483
9484 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9485         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9486         - Rewrote the register banking algorithm.
9487         - Added pCode live-range analysis to registers (for now, only non-used and
9488         singly-used registers optimized away)
9489
9490         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9491
9492         * 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.
9493
9494 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9495         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9496
9497 2002-04-22  Michael Hope  <michaelh AT vroom>
9498
9499         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9500
9501         * configure.in (DD_COPT): Added include support required for gbdk.
9502
9503         * .version: Bumped version number just to increase it.
9504
9505         * src/SDCCmain.c: Added -nostdinc to the default options.
9506
9507 2002-04-15  Michael Hope  <michaelh AT vroom>
9508
9509         * device/lib/z80/printf.c (sprintf): Added.
9510
9511         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9512
9513         * src/z80/peeph.def: Added transpose redundent load rule.
9514
9515         * src/z80/main.c: Added force callee saves for jaune.
9516
9517         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9518
9519         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9520
9521 2002-03-28  Johan Knol  <johan AT balder>
9522
9523         * src/SDCCval.c: fixed bug #532436
9524
9525 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9526         * /src/port.h:
9527         Added "char *Processor" field to the port structure.
9528
9529         * /src/SDCCmain.c:
9530         Added -p option. Allows port dependent processor to be specified.
9531
9532         * all ports:
9533         Initialized the new field char *Processor field to NULL in all ports
9534
9535         * /src/pic/*:
9536         Compiler generated registers for interrupt context saving
9537         were not getting allocated.
9538
9539 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9540
9541         * /src/SDCCast.c:
9542         Fixed left shift. Will promote the left side of a left shift
9543         if a) left shifting more than size of operand or b) when assigned
9544         to something size > size of left side
9545
9546 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9547         * src/pic/*
9548         tons of changes. Register allocation has been
9549         rewritten. Added customization for the various PICs. Flow
9550         analysis is restructured. ...
9551
9552         * src/pic/device.h:
9553         Added
9554
9555         * src/pic/device.c:
9556         Added. device.c is a PIC port hack to accomodate variations
9557         in PIC devices.
9558
9559 2002-03-13  Michael Hope  <michaelh AT vroom>
9560
9561         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9562
9563 2002-03-04  johanknol  <johanknol AT manik>
9564
9565         * /src/SDCCval.c: fixed
9566
9567         const unsigned char arr[][2] = { { 0, 1 } };
9568         t18.c:1: error: Initializer element is not constant
9569
9570 2002-03-04  bela  <bela AT manik>
9571
9572         * /device/include/mcs51reg.h:
9573         ds89c420 register definition update
9574
9575 2002-03-03    <johan AT FRIJA>
9576
9577         * support/Util/SDCCerr.c: did something, but don't no why anymore
9578
9579         * support/regression/tests/bug-524691.c: made it a little less shy
9580
9581         * src/SDCCast.c (decorateType): fixed bug #524697
9582
9583         * src/SDCCast.c: made some lineno improvements
9584
9585         * src/SDCCval.c (getNelements): changed warning to error
9586
9587         * src/SDCCglue.c (printIvalArray): changed warning to error
9588
9589         * src/SDCCicode.c: fixed a warning for mingw
9590
9591         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9592
9593         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9594
9595 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9596
9597         * src/ds390/peeph.def:
9598         Added some more peephole rules
9599
9600         * src/ds390/gen.c: Various fixes & enhancements
9601
9602         * src/SDCClrange.c, src/SDCClrange.h:
9603         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9604
9605         * src/ds390/ralloc.c:
9606         various fixes & enhancements (ds390) specific
9607
9608         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9609         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9610         from rallocs.
9611
9612         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9613
9614 2002-03-02    <johan AT FRIJA>
9615
9616         * src/SDCCast.c (decorateType): fixed bug #524708
9617
9618         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9619
9620         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9621
9622 2002-03-01  Michael Hope  <michaelh AT vroom>
9623
9624         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9625
9626         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9627
9628 2002-03-01    <johan AT FRIJA>
9629
9630         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9631
9632         * src/SDCCast.c (decorateType): fixed bug #524209
9633
9634         * src/SDCCval.c (valNot): fixed bug #524195
9635
9636 2002-02-26    <johan AT balder>
9637
9638         * src/xa51/gen.c: fixed a warning
9639
9640         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9641
9642         * src/SDCCast.c (decorateType): fixed bug #522534
9643
9644 2002-02-23    <johan AT balder>
9645
9646         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9647
9648 2002-02-22    <johan AT balder>
9649
9650         * src/SDCCast.c: fixed bug #514865
9651
9652         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9653
9654 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9655
9656         * sdcc/src/SDCCloop.c:
9657         Previous fix was not good. basic blocks that have "break" or "return" are
9658         not really partof a loop , but live ranges used in these blocks should
9659         be live thru the entire loop, so set partOfLoop but don't add them to
9660         loop region
9661
9662 2002-02-21    <johan AT FRIJA>
9663
9664         * src/SDCCcse.c: fixed bug #514308
9665
9666 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9667
9668         * src/SDCCloop.c:
9669         Fixed BUG #519583. If a conditional block ended in a return/break
9670         statement inside a loop, it was not being considered part of the loop.
9671
9672         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9673
9674 2002-02-10  Karl Bongers <karl AT turbobit.com>
9675
9676         * debugger/*:
9677         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9678         with lots of comments and notes.
9679
9680         * device/examples/test2.c:
9681         Fix bug, "red" variable not being initialized(compiler complained).
9682
9683         * device/examples/Makefile, examples/test3.c:
9684         Add Makefile in device/examples folder, compiles test3.c
9685         for use as a multiple module SDCDB test case.
9686
9687         * sim/ucsim/cmd.src/cmdset.cc:
9688         Took out debug printfs in ucsim "next" command.
9689
9690         * sim/ucsim/xa.src:
9691         Karl and Johan start ucsim XA support.  Most dissassembly working,
9692         about 75% emulation done(plenty of work remaining).
9693
9694         * sim/ucsim/z80.src:
9695         Add Z80 support to ucsim, add test-ucz80 regression test,
9696         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9697         Notice z80 compiler fails on examples/test3.c/crc code.
9698
9699 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9700
9701         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9702         Added support for --parms-in-bank1
9703
9704         * src/ds390/peeph.def:
9705         added a few more peephole optimzations
9706
9707         * src/ds390/main.c:
9708         1) added __builtin_inp & __builtin_outp used to read in data of given length
9709            from a memory mapped port
9710         2) added __builtin_memcmp
9711         3) added __builtin_swapw swap bytes of a short
9712
9713         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9714         1) handle multiple send & receives from register bank1
9715         2) ralloc can now allocate DPTR1 to some liveRanges
9716
9717         * src/SDCCsymt.c, src/SDCCsymt.h:
9718         changes to handle multiple sends & receives
9719
9720         * src/SDCCptropt.h:
9721         added some pointer arithmetic optimization
9722
9723         * src/SDCCptropt.c:
9724         added some pointer arithmetic optimizations but not stable yet so not
9725         called from anywhere (will get this working shortly)
9726
9727         * src/SDCCopt.c: fixed for multiple sends & receives
9728
9729         * src/SDCCmain.c:
9730         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9731         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9732            set preprocessor defines (depending on options)
9733
9734         * src/SDCCicode.c, src/SDCCicode.h:
9735         changes made to handle multiple sends & receives
9736
9737         * src/SDCCglobl.h:
9738         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9739
9740         * src/SDCCcse.c, src/SDCCcse.h:
9741         added function findbackward def (to be used in upcoming optimization)
9742
9743         * src/SDCCcflow.c, src/SDCCcflow.h:
9744         added function returnAtEnd - to determine if a basic block terminates with
9745         a RETURN iCode
9746
9747         * src/SDCCast.c, src/SDCCast.h:
9748         added option parms-in-bank1
9749
9750         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9751         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9752         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9753         adjusted for --parms-in-bank1 option
9754
9755         * device/include/string.h:
9756         donot redefine "reentrant" keyword
9757
9758         * device/include/ds80c390.h: Added some more SFRs
9759
9760 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9761
9762         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9763
9764 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9765
9766         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9767
9768 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9769
9770         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9771
9772 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9773
9774         * Added --xram-movc option
9775
9776 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9777
9778         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9779
9780 2002-01-11  Johan Knol
9781
9782         * Added math lib of Jesus Calvino-Fraga
9783
9784 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9785
9786         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9787         * support/regression/Makefile: new target test-mcs51-stack-auto
9788         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9789
9790 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9791
9792         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9793
9794 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9795
9796         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9797
9798 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9799
9800         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9801
9802         * src/SDCCglue.h: add definition for printIvalChar()
9803
9804 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9805
9806         * src/SDCCast.c: fix #498138 by Johan
9807
9808         * src/SDCCglue.c: fix #498138 by Johan
9809
9810 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9811
9812         * support/regression/Makefile: fix clean
9813
9814         * support/regression/ports/ds390/support.c: fix transmission of last character
9815
9816 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9817
9818         * /sdcc/src/ds390/gen.c:
9819         a) improved computing address of stack variable
9820         b) took out some #if 0 code
9821         c) improved parmBytes adjustment
9822         d) improved genPlusIncr & genMinusIncr
9823         e) genCmp could generate bad code (when left assigned to DPTR)
9824         f) Fixed bug in hasInc
9825
9826         * /sdcc/src/ds390/ralloc.c:
9827         a) packRegsForSupport could mess up live information (Fixed)
9828         b) packRegsDPTRuse could be incorrect for left & right shift
9829
9830         * /sdcc/src/mcs51/ralloc.c:
9831         packRegsForSupport could mess up the live information (Fixed)
9832
9833         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9834
9835         * /sdcc/src/SDCCast.c:
9836         can reverse a loop even if function call is present as long
9837         as the loop control variable is local & is not passed as parameter
9838
9839 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9840
9841         * /sdcc/ChangeLog: *** empty log message ***
9842
9843         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9844         More builtin function additions for TININative
9845
9846         * /sdcc/src/ds390/ralloc.c:
9847         Had broken the regression testsuite
9848
9849         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9850
9851         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9852         Added funcattr hasStackParms will be set for reentrant functions when there
9853         are paramteres on the stack, this helps in minimizing frame pointer generation
9854         typeFromStr can handle function pointers now
9855
9856         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9857         *** empty log message ***
9858
9859 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9860
9861         * /src/ds390/gen.c, /src/ds390/main.c:
9862         More builtin function additions for TININative
9863
9864         * /src/ds390/ralloc.c:
9865         Had broken the regression testsuite
9866
9867         * /src/SDCCast.c: Fixed a bug in dumptree
9868
9869         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9870         Added funcattr hasStackParms will be set for reentrant functions when there
9871         are paramteres on the stack, this helps in minimizing frame pointer generation
9872         typeFromStr can handle function pointers now
9873
9874         * /doc/builtins.txt, /doc/TININative.txt:
9875         *** empty log message ***
9876
9877
9878 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9879
9880         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9881         ALPHA version for -mTININative
9882
9883         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9884         updated to reflect changes in the port structure
9885
9886         * /src/port.h:
9887         added function do_assemble (similar to do_link) if non-null this function
9888         will be called to do assembly (-mTININative) requires a multi command
9889         assembly
9890         added function genAssemblerEnd will be called to generate assembler Epilogue
9891
9892         * /src/SDCCsymt.c:
9893         added _JavaNative to debug info printing
9894
9895         * /src/SDCCmain.c: added option --tini-libid
9896         added port->do_assemble function (-mTININative) has a multi command assemble
9897
9898         * /src/SDCCglue.c: Disabled "constExpr" check
9899         added port->genAssemblerEnd function
9900
9901         * /src/SDCCglobl.h: Added option --tini-libid value
9902
9903         * /src/SDCCast.h:
9904         tookout optimizeCompare from the header (has no external references)
9905
9906         * /src/SDCCast.c: made one more function "static"
9907
9908 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9909
9910         * src/z80/mappings.i: Added z80asm support.
9911
9912         * src/z80/main.c: Added z80asm support on --asm=z80asm
9913
9914         * src/z80/gen.c: Fixed asm portability issues.
9915
9916         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9917
9918         * src/SDCCglue.c (printExterns): Added global/extern split.
9919
9920 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9921
9922         * support/regression/Makefile: added test for mcs51 model large
9923
9924         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9925
9926         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9927
9928 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9929
9930         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9931
9932 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9933
9934         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9935
9936         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9937
9938 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9939
9940         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9941
9942         * support/regression/tests/simplefloat.c: Port to mcs51.
9943
9944 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9945         * support/regression/tests/bug-485362.c: Added.
9946
9947         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9948
9949         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9950
9951         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9952
9953         * src/z80/gen.c (aopDump): Added a dump function.
9954
9955 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9956         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9957
9958         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9959
9960         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9961
9962         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9963
9964         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9965
9966         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9967
9968         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9969
9970         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9971
9972         * support/regression/ports/ds390/support.c: Use tinibios.
9973
9974         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9975
9976 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9977
9978         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9979         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9980
9981         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9982
9983         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9984
9985 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9986
9987         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9988
9989         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9990         (packRegsForIYUse): Created and optimised.
9991
9992 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9993
9994         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9995 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9996
9997         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9998
9999         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10000
10001         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10002
10003 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10004
10005         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10006
10007         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10008
10009 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10010
10011         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10012
10013         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10014
10015         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10016
10017 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10018
10019         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10020         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10021         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10022
10023         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10024
10025         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10026         (genNotFloat): Added.
10027         (genUminusFloat): Added.
10028
10029         * device/lib/z80/Makefile: Added floating pt stubs.
10030
10031         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10032
10033         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10034
10035         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10036
10037 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10038
10039         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10040
10041         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10042
10043         * sdcc/support/regression/Makefile: Add port ds390.
10044
10045         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10046
10047         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10048
10049         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10050
10051         * sdcc/support/regression/ports/ds390/support.c: Added.
10052
10053         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10054
10055         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10056
10057         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10058
10059 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10060
10061         * device/include/malloc.h: Added z80 and gbz80 support.
10062
10063         * device/lib/gbz80/heap.s: Added.
10064
10065         * device/lib/z80/heap.s: Added.
10066
10067         * device/lib/malloc.c: Added z80 and gbz80 support.
10068
10069         * support/regression/tests/malloc.c (testMalloc): Added.
10070
10071         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10072
10073         * support/regression/tests/bug-478094.c: Added.
10074
10075         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10076
10077 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10078
10079         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10080
10081         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10082
10083         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10084
10085         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10086
10087         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10088
10089 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10090
10091         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10092
10093 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10094
10095         * support/regression/tests/bug-477927.c: Added.
10096
10097         * src/z80/peeph.def: Added minor rules.
10098
10099         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10100
10101         * src/z80/peeph.def: Added jump optimisation modification.
10102
10103 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10104
10105         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10106
10107 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10108
10109         * support/regression/tests/funptrs.c: Added.
10110
10111 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10112
10113         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10114
10115 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10116
10117         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10118
10119         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10120
10121         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10122         (movLeft2ResultLong): Created.
10123
10124         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10125         (joinPushes): Added.  Joins two char pushes into a word push.
10126
10127 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10128
10129         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10130
10131         * support/makebin/Makefile (install): Added creation of dest dir.
10132
10133 2001-10-24 Karl Bongers <karl AT turbobit.com>
10134
10135         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10136
10137 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10138
10139         * src/z80/ralloc.c: Turned off faulty pack for one use.
10140
10141         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10142
10143         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10144
10145 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10146
10147         * support/regression/Makefile: Improved clean
10148
10149         * support/regression/ports/gbz80/spec.mk: Added clean
10150
10151         * support/regression/ports/host/spec.mk: Added clean
10152
10153         * support/regression/ports/z80/spec.mk: Added clean
10154
10155         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10156
10157         * support/regression/ports/mcs51/timeout.c: little improvements
10158
10159 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10160
10161         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10162
10163         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10164
10165         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10166
10167 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10168
10169         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10170
10171         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10172
10173 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10174         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10175
10176         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10177
10178         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10179
10180         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10181
10182         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10183
10184         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10185
10186         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10187
10188         * support/regression/tests/longor.c: Added.
10189
10190 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10191
10192         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10193
10194         * as/mcs51/aslink.h: define PATH_MAX
10195
10196         * as/mcs51/asm.h: define PATH_MAX
10197
10198         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10199
10200         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10201
10202         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10203
10204         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10205
10206         * src/SDCCglobl.h: define PATH_MAX
10207
10208         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10209
10210         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10211
10212 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10213
10214         * src/z80/gen.c (gencjneshort): Fixed
10215
10216         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10217
10218 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10219
10220         * support/regression/tests/bug-469671.c: Added.
10221
10222         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10223
10224 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10225
10226         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10227
10228         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10229
10230 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10231
10232         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10233
10234         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10235
10236         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10237
10238         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10239
10240         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10241
10242         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10243
10244         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10245
10246 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10247
10248         * 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.
10249
10250         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10251
10252         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10253
10254 2001-10-07    <johan AT FRIJA>
10255
10256         * device/lib/gets.c (gets): fixed the return value.
10257
10258 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10259         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10260
10261         * 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.
10262
10263         * 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.
10264
10265         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10266
10267         * src/pic/gen.c: Removed Safe_strdup.
10268
10269         * configure.in: Added option to enable libgc support.
10270
10271         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10272         (bitVectUnion): Optimised.
10273         (bitVectIntersect): Optimised.
10274         (bitVectBitsInCommon): Optimised.
10275         (bitVectCplAnd): Optimised.
10276
10277         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10278
10279 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10280
10281         * src/SDCCmain.c: distinguish between assembler debug and plain options
10282
10283         * src/avr/main.c:   remove standard assembler options
10284
10285         * src/ds390/main.c: remove standard assembler options
10286
10287         * src/mcs51/main.c: remove standard assembler options
10288
10289         * src/port.h: removed "PENDING" comment
10290
10291 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10292
10293         * src/device/lib/_mulint.c  : new, with assember functions
10294
10295         * src/device/lib/_mullong.c : new, with assember functions
10296
10297         * src/device/lib/_divuint.c : with assember functions
10298
10299         * src/device/lib/_divsint.c : with assember functions
10300
10301         * src/device/lib/_divulong.c: with assember functions
10302
10303         * src/device/lib/_divslong.c: with assember functions
10304
10305         * src/device/lib/_moduint.c : with assember functions
10306
10307         * src/device/lib/_modsint.c : with assember functions
10308
10309         * src/device/lib/_modulong.c: with assember functions
10310
10311         * src/device/lib/_modslong.c: with assember functions
10312
10313         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10314
10315         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10316
10317         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10318                                       replaced _mululong.c and _mulslong.c by _mullong.c
10319
10320 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10321
10322         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10323
10324 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10325
10326         * src/SDCCglue.c: test, if win32api is available for MINGW
10327
10328 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10329
10330         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10331         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10332         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10333         * support/regression/ports/host/spec.mk: removed GENERIC
10334         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10335         * support/regression/ports/z80/spec.mk: removed GENERIC
10336
10337 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10338
10339         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10340
10341         * support/regression/tests/bug-467035.c: Created.
10342
10343 2001-10-01    <johan AT FRIJA>
10344
10345         * src/SDCC.y: fixed bug #466586 part 1
10346
10347 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10348
10349         * SDCCicode.c: z80 has no generic pointers
10350         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10351
10352 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10353
10354         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10355
10356 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10357
10358         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10359
10360         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10361
10362 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10363
10364         * configure.in: Fixed up so that ucsim is only configured once.
10365
10366         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10367
10368         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10369         (getPathDifference): As above.
10370
10371         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10372
10373         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10374
10375 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10376         * .version: Updated to 2.3.1
10377
10378         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10379         Added copyright header.
10380
10381         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10382         (assemble): Added support for macro based assembler commands.
10383         (linkEdit): Added support for macro based linker commands.
10384         (preProcess): Changed the pre-processor to use macros.
10385         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10386         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10387
10388         * device/lib/z80/crt0.s: Added module name for debugging.
10389
10390 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10391
10392         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10393
10394         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10395
10396         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10397
10398         * src/Makefile.in: Added SDCCmacro and SDCCutil
10399
10400 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10401
10402         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10403
10404 2001-09-16    <johan AT FRIJA>
10405
10406         * 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.
10407
10408 2001-09-15    <johan AT FRIJA>
10409
10410         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10411         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10412
10413 2001-09-11    <johan AT FRIJA>
10414
10415         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10416
10417 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10418
10419         * support/regression/tests/bug-460444.c: Added test case.
10420
10421         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10422         (genCast): Added justification for all of the asserts.
10423
10424 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10425
10426         * support/regression/support.c: _xdata replaced by xdata
10427
10428         * support/regression/spec.mk: removed _generic
10429
10430 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10431
10432         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10433
10434         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10435         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10436
10437         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10438
10439         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10440
10441         * support/regression/tests/bug-460010.c: Added test case.
10442
10443         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10444
10445 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10446
10447         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10448
10449         * support/regression/testfwk.c: removed workaround for bug #436344
10450
10451         * support/regression/tests/bp.c: use less memory with mcs51
10452
10453         * support/regression/tests/bug-441448.c: use less memory
10454
10455         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10456
10457         * support/regression/collate-results.py: typo
10458
10459 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10460
10461         * support/regression/tests/fetchoverlap.c: Added new test case.
10462
10463         * support/regression/tests/bp.c: Added new test case.
10464
10465         * support/regression/tests/bug-448984.c: Added new test case.
10466
10467         * support/regression/tests/pow2shifts.c: Added new test case.
10468
10469         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10470         (genlshTwo): Fixed right shift for count > 8.
10471
10472         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10473
10474 2001-09-08    <johan AT FRIJA>
10475
10476         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10477
10478 2001-09-07    <johan AT FRIJA>
10479
10480         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10481
10482         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10483
10484 2001-09-06    <johan AT FRIJA>
10485
10486         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10487         * bernhard noted me at this: "() equals to (void)" (1.38)
10488
10489 2001-09-05    <johan AT FRIJA>
10490
10491         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10492
10493 2001-09-04    <johan AT FRIJA>
10494
10495         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10496
10497
10498 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10499
10500         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10501
10502 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10503
10504         * link/z80/aslink.h: Fixed path for PATH_MAX
10505
10506 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10507
10508         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10509
10510         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10511
10512         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10513
10514         * 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.
10515
10516 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10517
10518         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10519         (genCmp): Fixed up genCmp for the GB with longs.
10520
10521         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10522
10523         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10524
10525         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10526
10527         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10528
10529 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10530
10531         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10532
10533 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10534
10535         * 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.
10536
10537         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10538
10539 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10540
10541         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10542
10543         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10544
10545 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10546
10547   * sim/ucsim/configure:    little improvement of Cygwin-detection
10548   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10549   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10550   * support/regression/tests/bug-221100.c: small changes for mcs51
10551   * support/regression/tests/bug-221168.c: small changes for mcs51
10552   * support/regression/tests/bug-227710.c: small changes for mcs51
10553   * support/regression/tests/staticinit.c: small changes for mcs51
10554   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10555   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10556   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10557
10558 $Revision$