* src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
[fw/sdcc] / ChangeLog
1 2006-02-01 Borut Razem <borut.razem AT siol.net>
2
3         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
4           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
5           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
6           src/regression/bool1.c, src/regression/bool2.c,
7           src/regression/bool3.c, src/regression/call1.c,
8           src/regression/compare.c, src/regression/compare10.c,
9           src/regression/compare2.c, src/regression/compare3.c,
10           src/regression/compare4.c, src/regression/compare5.c,
11           src/regression/compare6.c, src/regression/compare7.c,
12           src/regression/compare8.c, src/regression/compare9.c,
13           src/regression/configword.c, src/regression/for.c,
14           src/regression/inline.c, src/regression/mult1.c,
15           src/regression/nestfor.c, src/regression/or1.c,
16           src/regression/pointer1.c, src/regression/ptrfunc.c,
17           src/regression/rotate1.c, src/regression/rotate2.c,
18           src/regression/rotate3.c, src/regression/rotate4.c,
19           src/regression/rotate5.c, src/regression/rotate6.c,
20           src/regression/rotate7.c, src/regression/string1.c,
21           src/regression/struct1.c, src/regression/sub.c,
22           src/regression/sub2.c, src/regression/switch1.c,
23           src/regression/while.c, src/regression/xor.c,
24           src/regression/create_stc, src/regression/simulate,
25           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
26           regression tests
27         * src/regression/gpsim_assert.h: added
28
29 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
30
31         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
32         ((void (code *) (void)) 0) ();
33         * as/hc08/aslex.c,
34         * as/hc08/aslink.h,
35         * as/hc08/asm.h,
36         * as/hc08/asmain.c,
37         * as/hc08/lkdata.c,
38         * as/hc08/lklex.c,
39         * as/hc08/lkmain.c,
40         * as/mcs51/aslex.c,
41         * as/mcs51/aslink.h,
42         * as/mcs51/asm.h,
43         * as/mcs51/asmain.c,
44         * as/mcs51/lkdata.c,
45         * as/mcs51/lklex.c,
46         * as/mcs51/lkmain.c,
47         * as/z80/aslex.c,
48         * as/z80/asm.h,
49         * as/z80/asmain.c: fixed build on current cygwin:
50         replaced getline() by as_getline()
51
52 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
53
54         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
55         declarator in the symbol chain
56         * src/SDCCsymt.h,
57         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
58         parameter list for function pointers
59         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
60         * support/regression/tests/bug-716242.c: added
61
62 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
63
64         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
65         offset if possible
66         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
67
68 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
69
70         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
71         inifinitely recurseable, added static   
72         * support/regression/tests/bug-1408066.c: added
73
74 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
75
76         * src/SDCCicode.h,
77         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
78         renamed, added possibility to create "postLoopLbl"-labels
79         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
80         newiTempLoopHeaderLabel
81         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
82         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
83         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
84         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
85         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
86         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
87         (basicInduction): fixed bug #136564, made static,
88         (loopInduction): changed parameter of basicInduction, made static,
89         (addPostLoopBlock): added
90         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
91         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
92         findLoopEndSeq
93         * support/regression/tests/bug-136564.c: added
94         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
95         --std-sdcc99 to LIBSDCCFLAGS
96
97 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
98
99         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
100         while loop
101         * support/regression/tests/bug-1406131.c: added
102
103 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
104
105         * src/SDCCast.c (decorateType): fix promotion of unary minus
106         * src/SDCCsymt.c (computeType): beautified
107         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
108         (valUnaryPM, valComplement): fix sign and promotion,
109         (valNot): ANSI: result type is int (SDCC: unsigned char)
110         * support/regression/tests/uminus.c: speedup by removing superflous
111         test case 'int'
112         * support/regression/tests/onebyte.c: added promotion and signedness
113         tests for unary minus
114         * support/regressions/tests/bug-477927.c: disable warning about
115         uninitialized variables
116         * support/regression/tests/not.c: added
117
118 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
119
120         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
121         * src/mcs51/gen.c (gen51Code): show final register usage after
122         fillGaps in asm with --i-code-in-asm
123         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
124         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
125         incUsed, rliveClear, adjustIChain): made static,
126         (setFromRange): excluded because it's unused,
127         (findPrevUseSym, markWholeLoop): added,
128         (findPrevUse): rewritten; fixes bug 895992; now a complete search
129         through all branches of predecessors enables sdcc to emit the warning
130         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
131         (rlivePoint): made static, added parameter emitWarnings which is only
132         true during the first run out of two,
133         (findRecursiveSucc, findRecursivePred): removed,
134         (computeLiveRanges): made static, added parameter emitWarnings,
135         (dumpIcRlive): added for debugging only
136         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
137         removed prototype of setFromRange()
138         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
139         in call of computeLiveRanges()
140         * support/regression/tests/bug-895992.c: added
141         * support/regression/tests/bug-971834.c: added
142         * support/valdiag/tests/bug-895992.c: added
143         * support/valdiag/tests/bug-971834.c: added
144
145 2005-12-18 Raphael Neider <rneider AT web.de>
146
147         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
148           (genUnpackBits): improved code for direct operands,
149           (genPackBits): improved code for literal assignment to bitfields
150             and for direct destination operands (no FSR indirection),
151             prevented redundant AND, fixes #1362800,
152           (AccLsh): added parameter to disable masking of the result
153         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
154           skip instructions with side-effects (like incfsz),
155           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
156         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
157         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
158           fixes #1375263
159
160 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
161
162         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
163         volatile variables as spill location
164
165 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
166
167         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
168         replacing literals
169         * support/regression/tests/bug-1376320.c: added
170
171 2005-12-08 Raphael Neider <rneider AT web.de>
172
173         * src/pic/device.c: renamed is_shared to pic14_is_shared
174         * src/pic/gen.c (genIfx): re-enabled handling of sbits
175         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
176           (is_valid_identifier): added for above workaround
177
178 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
179
180         * device/lib/Makefile.in: fixed to enable port-specific-objects
181         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
182           char, thanks Hubert Sack
183         * doc/sdccman.lyx: documented --xstack-loc,
184           elaborated a bit more on interrupts and pitfalls,
185           removed "setjmp/longjmp unsupported",
186           documented some unsupported C99 features
187         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
188         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
189           if, thanks Hubert Sack
190         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
191         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
192           make make_library
193         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
194           regression tests can report resource usage (rfe 700441)
195         * support/regression/collate-results.py: report resource usage
196         * support/regression/ports/ds390/spec.mk,
197         * support/regression/ports/hc08/spec.mk,
198         * support/regression/ports/mcs51/spec.mk,
199         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
200         * support/regression/ports/ds390/uCsim.cmd,
201         * support/regression/ports/hc08/uCsim.cmd,
202         * support/regression/ports/mcs51/uCsim.cmd,
203         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
204         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
205           library, use the default one
206         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
207           building the library
208
209 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
210
211         * config.dsp: added dependency on .version and configure_vc.awk
212         * device/include/setjmp.h: updated for --stack-auto and --xstack
213         * device/include/mcs51/at89c51snd1c.h: corrected line endings
214         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
215         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
216         * device/lib/libsdcc.lib: added _setjmp
217         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
218           (decorateType): fixed bug 1372851,
219           (optimizeGetHbit): fixed warning
220         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
221           array initialisation
222         * support/regression/tests/bug1057979.c: added test for bug 1358192
223         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
224
225 2005-12-03 Borut Razem <borut.razem AT siol.net>
226
227         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
228           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
229
230 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
231
232         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
233         createIval): implement symbol independant "flexible array member",
234         (createIvalCharPtr): implemented flexible array initialisation with a
235         string
236         * src/SDCCsymt.c (copyStruct): removed,
237         (getSize): fixed misleading comment,
238         (getAllocSize): removed, the additional allocation size is now in
239         sym->flexArrayLength,
240         (checkStructFlexArray): new, syntax checks for flexible array members,
241         (compStructSize): added syntax checks for "flexible array members"
242         (copyStruct): removed,
243         (copyLinkChain): removed inefficient fix for bug 770487
244         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
245         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
246         symbol->flexArrayLength
247         * src/SDCCerr.c,
248         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
249         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
250         * support/regression/tests/structflexarray.c: added
251         * support/valdiag/tests/structflexiblearray.c: added
252
253 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
254
255         * src/SDCCast.c (decorateType): fixed bug 1368489
256         * support/Util/SDCCerr.c,
257         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
258
259 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
260
261         * device/include/mcs51/at89c51snd1c.h: added file submitted by
262           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
263
264 2005-11-27 Borut Razem <borut.razem AT siol.net>
265
266         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
267           support/cpp2/mkdeps.h: added command line option
268           -obj-ext=<extension> to SDCPP to define object file externion, used
269           for generation of make dependencies (-M)
270         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
271
272 2005-11-26 Borut Razem <borut.razem AT siol.net>
273
274         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
275           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
276           added pic and pic16 libraries
277
278 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
279
280         * device/include/float.h: Corrected typo in prototype of __fsgt
281
282 2005-11-25 Borut Razem <borut.razem AT siol.net>
283
284         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
285           added creation of model-mcs51-stack-auto libraries
286
287 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
288
289         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
290         and fields-list too
291         * src/SDCCast.c (createIvalArray): removed obsolete comment
292
293 2005-11-24 Borut Razem <borut.razem AT siol.net>
294
295         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
296           added missing device/lib/mcs51/crt*.asm sources
297
298 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
299
300         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
301
302 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
303
304         * device/lib/_fs2schar.c,
305         * device/lib/_fs2sint.c,
306         * device/lib/_fs2slong.c: optimized inline asm
307
308 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
309
310         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
311           Better handling of floats between -1.0 and 0.0.
312
313 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
314
315         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
316           (the missing "if"s prohibited removal of redundant labels)
317
318 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
319
320         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
321           Properly convert floats between -1.0 and 0.0 to long, int, and char
322           types (max integer value of negative floats tends to zero).
323         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
324           Removed changes made so to work properly with floats between
325           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
326           and _fs2char.c
327
328 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
329
330         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
331         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
332         (genCast) cosmetic change
333         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
334         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
335         from mcs51
336         * support/regression/tests/bitfields (testSignedBitfields): added
337
338 2005-11-18 Borut Razem <borut.razem AT siol.net>
339
340         * sdcc/device/lib/Makefile.in: remove all unnecessary files
341         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
342           introduced SILENT option to make building of pic16 libraries less
343
344 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
345
346         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
347           Now they work properly with floats between -1.0 and 0.0
348         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
349
350 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
351
352         * src/SDCCicode.c (printOperand): added missing else
353
354 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
355
356         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
357         reformatted for better readability
358         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
359         signed bitfields
360
361 2005-11-17 Borut Razem <borut.razem AT siol.net>
362
363         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
364           introduced SILENT option to make building of pic16 libraries less
365           verbose - used for nightly snapshot build
366         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
367           available on Win32 platforms.
368         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
369           medium, large, pic and pic16
370
371 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
372
373         * device/lib/printf_large.c: Temporary patch for bug 1358192:
374           printf("%f"...) sets fraction to zero.
375
376 2005-11-16 Raphael Neider <rneider AT web.de>
377
378         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
379           fixes #1357221
380         * src/pic/gen.c (genIfx): implemented for CARRY bit
381         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
382           to generic pointers, fixes #1357332,
383           (pic16_movLit2f): NEW,
384           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
385
386 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
387
388         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
389
390 2005-11-11 Raphael Neider <rneider AT web.de>
391
392         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
393         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
394           compute pointer's type from operand,
395           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
396           improved single bit reads, fixes bug #1353379
397
398 2005-11-09 Borut Razem <borut.razem AT siol.net>
399
400         * support/scripts/sdcc.nsi: added lib/pic to the package
401
402 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
403
404         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
405
406 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
407
408         * support/regression/tests/bug1348008.c: added
409         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
410         * support/regression/tests/bug1337835.c: updated comment
411
412 2005-11-06 Borut Razem <borut.razem AT siol.net>
413
414         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
415           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
416           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
417           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
418           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
419           dynamic construction of cl_error_class and derivates - 2.nd try
420
421 2005-11-05 Borut Razem <borut.razem AT siol.net>
422
423         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
424           bug, which caused Bus Errors on sparc solaris
425
426 2005-11-04 Borut Razem <borut.razem AT siol.net>
427
428         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
429           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
430           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
431           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
432           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
433           and derivates to resolve the initialization problem on OSX
434
435 2005-11-02 Borut Razem <borut.razem AT siol.net>
436
437         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
438           corrected typo - #include <winsock2.h>
439
440 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
441
442         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
443           (_asxxxx_mapping): added org directive for future enhancements
444
445 2005-11-01 Borut Razem <borut.razem AT siol.net>
446
447         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
448           enabled sockets on WIN32
449         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
450
451 2005-10-31 Borut Razem <borut.razem AT siol.net>
452
453         * support/regression/generate-cases.py: escape backslashes in {testcase}:
454           WIN32 backslash path delimiters should be escaped when used in C strings
455         * support/regression/tests/bitfields.c: exclude failing assertions for
456           __CYGWIN32__ and __MINGW32__ hosts
457
458 2005-10-30 Borut Razem <borut.razem AT siol.net>
459
460         * src/SDCCutil.c: corrected double comparison typo
461
462 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
463
464         * device/lib/medium/Makefile: added for new memory model medium
465         * device/include/asm/mcs51/features.h: updated for medium/pdata
466         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
467           added Multiply & Accumulate sbit's and MAC0_PAGE define
468         * device/include/mcs51/c8051f300.h: added sfr16 definitions
469         * device/include/mcs51/c8051f310.h: added sfr16 definitions
470         * device/lib/_mullong.c: update for medium model
471         * device/lib/incl.mk: added medium model
472         * doc/sdccman.lyx: documented medium model
473         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
474         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
475         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
476         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
477           (allocParms): set SCLS and OCLS to pdata for medium model
478         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
479           for pdata,
480           (powof2): return <0 if not power of 2
481         * src/avr/gen.c (genBitWise): use updated powof2
482         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
483           (shiftR2Left2Result): small optimization in setup, save acc when storing,
484           (shiftLLeftOrResult): use B if necessary
485         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
486         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
487         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
488         * support/regression/Makefile.in: added test-mcs51-medium
489         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
490
491 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
492
493         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
494         specifier unsigned
495         * device/lib/time.c (mktime): fixed bug 1334315
496
497 2005-10-28 Raphael Neider <rneider AT web.de>
498
499         * device/include/pic/p16f_common.inc: added common declarations
500         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
501
502 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
503
504         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
505           (aopPutUsesAcc): added to predict accumulator use,
506           (assignResultValue): save acc if necessary,
507           (genMinusDec): store result if indirectly addressed,
508           (genDivOneByte):  save acc if necessary,
509           (movLeft2Result): bugfix if left already in acc,
510           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
511             attention to accumulator use (esp. pdata),
512           (genReceive): receive pdata correctly
513         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
514         * src/SDCCicode.h: added isOperandInPagedSpace prototype
515
516 2005-10-27 Raphael Neider <rneider AT web.de>
517
518         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
519
520 2005-10-27 Raphael Neider <rneider AT web.de>
521
522         * .version: changed version to 2.5.4
523         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
524         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
525           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
526             arithmetics support routines
527         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
528         * device/lib/Makefile.in: also create installdir for pic
529
530         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
531           pic14 port as well
532         * src/pic/device.c (dump_sfr): rewritten to delegate register
533           placement to the linker (use `extern sym' rather than sym EQU addr),
534           (validAddress): fixed to check last specified address
535         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
536           (popGetLit): truncate literal value to 8 bit,
537           (popGet): moved assert to more appropriate place
538           (popGetExternal): create pCode operand from and mark the according
539             symbol as being `extern'
540           (popGetAddr): added sanity check on immediate's offset, provide
541             GPOINTER tag on demand
542           (aopPut): fixed for immediates,
543           (mov2w_op): move operand's address or contents to WREG (depending on
544             operand type), safer variant of mov2w,
545           (movwf,call_libraryfunc): NEW, handy abbreviations,
546           (get_argument_pcop,get_return_val_pcop,pass_argument,
547           get_returnvalue): interface for accessing function parameters and
548             return values,
549           (assignResultValuei,genRet): use new parameter/return value interface
550           (pic14_getDataSize): back to old version handling generic pointers,
551           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
552             provided implementation and/or fixed old one,
553           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
554             calls, removed legacy 8051 reference code
555           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
556           (loadSignToC): NEW, move the operands sign bit to CARRY,
557           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
558             genRightShiftSigned, accepts negative shift counts,
559           (setup_fsr): load FSR and adjust IRP (indirect memory access),
560           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
561             generic pointers, __data pointers and __code pointers,
562           (genUnpackBits,genPackBits): rewritten to work with generic pointers
563             and signed bitfields, limit bitfields to 8 bit,
564           (genDataPointerGet): fixed number of bytes read,
565           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
566           (genPointerGet,genPointerSet): fixed handling of __code pointers,
567             pointers to constant data are no longer assumed to point to __code
568             space, removed invalid pointer types,
569           (bitpatternFromVal): retrieve the PICs representation of an integer
570             or float literal,
571           (genDataPointerSet): fixed assigning to po_immediate operands,
572           (genGenPointerSet): implemented as library call,
573           (genIfx): fixed incorrect condition,
574           (genAddrOf): limit generic pointers' addresses to 2 bytes,
575             provide GPOINTER tag according to destination's storage class,
576           (genCast): added code to handle casting to generic pointers, added
577             sign-/zero extension of the result
578           (aop_isLitLike,op_isLitLike): fixed handling of immediates
579         * src/pic/gen.h: added macros to access IRP bit in STATUS register
580         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
581           extend the result
582         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
583           address/register resides in the shared banks
584           (emitSymbolToFile): improved to handle global and `pinned' symbols,
585             put all variables into separate sections (have the linker arrange
586             them)
587           (picglue): put init code and interrupt handlers in separate sections
588         * src/pic/main.c: added port specific options table, modified to PORT
589           structure to make GPOINTERs 3 byte, added pic14_options
590           (_pic14_do_link): private linking routine (update paths to libraries,
591             add libsdcc.lib by default)
592         * src/pic/main.h: declare pic14_options
593         * src/pic/pcode.c: fixed instructions i/o relations,
594           (RegCond): reverted to correct version,
595           (newpCodeOpLit): truncate literals to 8 bit,
596           (genericPrint): added debug output,
597           (getRegFromInstruction): fixed for various operand types, simplified
598           (BuildFlow): fixed broken handling of isntructions with labels
599           (LinkFlow): start at last instruction in flow (skip trailing comments),
600             pass the flow on to the next instruction after CALL
601           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
602           (insertPCodeInstruction): fixed inserting after a skip instruction,
603           (DoBankSelect): fixed for labeled instructions
604           (OptimizepBlock): honor --nopeep switch
605           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
606         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
607         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
608           (pCodeOptime2pCodes): allow disabling this optimization via
609             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
610             but is still buggy), started implementation of a dataflow based
611             pCode optimization (CSE + dead code elimination)
612           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
613         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
614           names are independant of the stack location and therefore portable across
615           devices
616
617 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
618
619         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
620           (selectSpil): fixed bug 1337835 by not spilling bit variables
621         * support/regression/tests/bug1337835.c: added test for this bug
622         * src/mcs51/peeph.def: restart after rule 3.c,
623           addded rules 263.x to optimize loading constants
624
625 2005-10-26 Raphael Neider <rneider AT web.de>
626
627         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
628         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
629           (genAssign): emit warning when casting literals to generic pointer
630             type, also applies when taking the address of a fixed variable,
631           (genCast): improved casting to generic pointers
632         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
633           extern variables, added verbose error message
634         * device/include/pic16/{string.h,errno.h}: added #pragma library c
635
636 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
637
638         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
639         carry must be complemented too
640         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
641         could be emitted by genMinus
642         * src/SDCCval.c (constVal): fixed bug 1305065
643
644 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
645
646         * src/SDCCast.c (addCast): added promotion for bit variables
647         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
648         promotion casts + optimisation
649         (optimizeGetWord): fix warning 'i' might be used uninitialized
650         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
651         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
652
653 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
654
655         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
656         all chars are promoted to int; promotion should be handled in SDCCast.c
657
658 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
659
660         * device/lib/_strcmp.c: Fixed bug 1326457
661
662 2005-10-11 Raphael Neider <rneider AT web.de>
663
664         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
665         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
666
667 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
668
669         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
670         * support/regression/tests/sfr16.c: added test for the sfr32 bug
671
672 2005-10-04 Raphael Neider <rneider AT web.de>
673
674         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
675           device/lib/pic16/pics.all: added pic18f1320
676         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
677
678 2005-09-30 Raphael Neider <rneider AT web.de>
679
680         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
681         * src/pic16/devices.inc: NEW, provides device descriptions
682         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
683
684 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
685
686         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
687           GETHBIT
688
689 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
690
691         * doc/sdccman.lyx: updated Highest Order Bit documentation,
692           documented Any Order Bit, Higher Order Byte and Higher Order Word
693         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
694         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
695           (optimizeGetAbit): new, to get any bit, not only the high bit,
696           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
697           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
698           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
699           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
700             RIGHT_OP: also try GETBYTE, GETWORD optimization,
701             GETABIT, GETBYTE, GETWORD: decorate them,
702           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
703           (ast_print): added GETABIT, GETBYTE, GETWORD
704         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
705         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
706           (geniCodeBinary): new generic binary icode,
707           (ast2iCode): added GETABIT, GETBYTE, GETWORD
708         * src/port.h: updated comment for PORT.hasExtBitOp
709         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
710           (genGetByte): new, to get a single byte,
711           (genGetWord): new, to get a word from a long,
712           (gen51Code): added GETABIT, GETBYTE, GETWORD
713         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
714
715 2005-09-23 Raphael Neider <rneider AT web.de>
716
717         * configure.in, configure: have device/lib/pic configured
718         * device/lib/Makefile.in: added model-pic14
719         * device/lib/clean.mk: added pic/ to clean rule
720         * device/lib/pic: added rudimentary pic14 library providing support
721           functions for multiplication/division/generic pointer access
722         * src/SDCCopt.c (convilong): mark support functions as extern
723           for pic14 port as well
724         * src/pic/gen.c (genMult): added assertions,
725           (genpic14Code): emit warning on unhandled iCodes
726         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
727         * src/pic/pcode.c (pCodeOpCopy),
728         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
729           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
730           SFR_REGISTER}), made safe for future extensions
731         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
732           instructions even if preceeded by SKIP instructions (also remove
733           them); removed unused code
734         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
735           prevents leaving parts of the structure uninitialized after copying
736
737 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
738
739         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
740           ago by me
741         * support/regression/tests/addsub.c: added test for the bug
742
743 2005-09-21 Raphael Neider <rneider AT web.de>
744
745         * device/include/pic16/pic18f1220.h,
746           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
747         * device/lib/pic16/Makefile.rules: added missing opening paren
748         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
749           are provided in genutils.c,
750           (genUminusFloat,genUminus,genCmpEq): added asserts on different
751           operand/result sizes,
752           (genCmp): assert on NULL pointers first, then check deref'ed values
753         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
754           result size
755
756 2005-09-18 Raphael Neider <rneider AT web.de>
757
758         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
759           as these are now unused,
760           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
761         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
762           local, avoids uninitialized pointer dereference on r->name
763         * src/pic16/ralloc.c (newReg): fixed indentation
764
765 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * src/SDCCval.c (constVal): fixed bug 730366
768         * support/Util/SDCCerr.c,
769         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
770
771 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
772
773         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
774
775 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
776
777         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
778
779 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
780
781         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
782           (hex2dec): made hex_digit unsigned char, removed ascii dependance
783         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
784           (hex2dec): made hex_digit unsigned char, removed ascii dependance
785         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
786         * packihx/packihx.c (hexDigit): made c unsigned char
787         * as/mcs51/lklibr.c (fndsym),
788         * link/z80/lkgb.c (gb),
789         * link/z80/lklibr.c (fndsym),
790         * link/z80/lkrloc.c (relr),
791         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
792         * src/SDCC.lex (checkCurrFile, process_pragma),
793         * src/SDCCglue.c (spacesToUnderscores),
794         * src/SDCCmain.c (setParseWithComma, processFile),
795         * src/asm.c (tvsprintf, printCLine),
796         * src/avr/gen.c (emitcode, aopPut),
797         * src/ds390/gen.c (emitcode),
798         * src/hc08/gen.c (emitcode, emitinline),
799         * src/mcs51/gen.c (emitcode, genInline),
800         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
801           tokenizeLineNode),
802         * src/pic/ralloc.c (debugLog),
803         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
804           tokenizeLineNode),
805         * src/pic16/ralloc.c (debugLog),
806         * src/z80/main.c (_process_pragma):
807            made all ctype.h function calls safe
808         * src/SDCCopt.c: include math.h for fabs
809         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
810           and used them throughout the code to make ctype.h function calls safe
811         * src/ds390/main.c (asmLineNodeFromLineNode),
812         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
813         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
814            unsigned char*
815         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
816           (newpCodeAsmDir): made ctype.h function calls safe
817         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
818           pic16_emitcode):  made lbp unsigned char*
819         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
820           (pic16_newpCodeAsmDir): made ctype.h function calls safe
821         * src/xa51/gen.c (emitcode),
822         * src/z80/gen.c (_emit2): made lbp unsigned char*
823         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
824            char*
825
826 2005-09-05 Raphael Neider <rneider AT web.de>
827
828         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
829           access bank splitpoint
830
831 2005-09-05 Raphael Neider <rneider AT web.de>
832
833         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
834
835 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
836
837         * .version: changed to version 2.5.3
838         * doc/sdccman.lyx: changed version to 2.5.3,
839           documented --codeseg and --constseg and pragma codeseg and constseg,
840           documented bit parameters (reentrant) and bit returning
841         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
842            currFunc->recvSize, but is this ok for all ports?
843           (ast2iCode): result of ~ on unsigned char must be cast to int for
844            bool to work
845         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
846           function pointers in bit space
847         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
848           (processFuncArgs): call port.reg_parm() with reentrancy info
849         * src/port.h,
850         * src/avr/main.c,
851         * src/ds390/main.c,
852         * src/hc08/main.c,
853         * src/pic/main.c,
854         * src/pic16/main.c,
855         * src/xa51/main.c,
856         * src/z80/main.c: port.reg_parm prototype extended with
857           "bool reentrant" parameter
858         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
859           options.stackAuto for allocating bit register parameters
860         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
861           (genSend): set BitBankUsed if it is,
862           (selectRegBank): factored out of genCall for use in genPcall,
863           (genCall): removed redundant dtype assignmen, use selectRegBank,
864           (genPcall): handle returning in Carry properly, save in F0 if needed,
865           (genReceive): handle bit register parameters
866         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
867           (mcs51_assignRegisters): enable bit registers for all reentrant
868            functions and don't set BitBankUsed unconditionally
869         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
870         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
871         * support/regression/tests/funptrs.c: added tests for BOOL and for return
872
873 2005-08-27 Borut Razem <borut.razem AT siol.net>
874
875         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
876         ppc-osx (Darwin) does not support -u option. It seems that it is
877         supported only on Linux - GNU cp
878
879 2005-08-25 Borut Razem <borut.razem AT siol.net>
880
881         * sim/ucsim/gui.src/serio.src/Makefile.in,
882           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
883           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
884           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
885           install and strip, since the strip at /usr/ccs/bin should be used
886           on solaris
887
888 2005-08-24 Borut Razem <borut.razem AT siol.net>
889
890         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
891
892 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
893
894         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
895         ffffffffu
896
897 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
898
899         * as/mcs51/aslink.h: completed lkrloc.c prototypes
900         * as/mcs51/lkmain.c (link_main): fixed warning
901         * device/include/stdbool.h: ds390 has no advanced bit support yet
902         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
903         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
904         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
905           and updated their macros
906         * src/SDCCval.c (constVal): updated comment for renamed b_long
907
908 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
909
910         * as/mcs51/asdata.c: changed ctype['['] to BINOP
911         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
912           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
913           (oprio): set priority for '['
914         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
915            and adb_24_bit
916         * as/mcs51/asm.h: added defines R_BIT and S_BIT
917         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
918         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
919         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
920           added overlayable BIT_BANK area
921         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
922           (summary2): explain 'T' in legenda
923         * as/mcs51/lkrloc.c: replaced old K&R style,
924           (relr): added R_BIT processing,
925           (errmsg): added "Bit-addressable relocation error",
926           (adb_bit): added for converting from byte- to bit-addressable space,
927           (adb_24_bit): added for converting from byte- to bit-addressable space
928         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
929            used in reentrant functions now even as return value
930         * device/lib/_gptrput.c (_gptrput): removed obsolete code
931         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
932           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
933         * src/SDCCglobl.h: added indicator BitBankUsed
934         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
935            the bit registers b0-b7
936         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
937           (geniCodeCast): fixed bug 1263853,
938           (geniCodeLogicAndOr): put result in bool or char,
939           (geniCodeReceive): added parameter func for accessing the return type,
940           (geniCodeFunctionBody): pass func to geniCodeReceive
941         * src/SDCCmain.c: added indicator BitBankUsed
942         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
943         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
944           (checkSClass): don't put automatic bool/bit on stack,
945           (checkFunction): removed check on function cannot return bit
946         * src/SDCCsymt.h: added newBoolLink prototype
947         * src/mcs51/gen.c (rb1regs): added bit registers,
948           (movc): created for assigning to carry,
949           (pushReg, popReg): created for pushing registers,
950           (sameRegs): check both AOP_REG and AOP_CRY types,
951           (aopOp): handle bit registers,
952           (aopPut): optimization no self-assign,
953           (saveRegisters): push reg->base (bits) only once for bit registers,
954            and use pushReg,
955           (unsaveRegisters): pop reg->base only once and use popReg,
956           (assignResultValue): added parameter func and return in carry for bits,
957           (genIpush): optimization no reload in A if not changed,
958           (genSend): bit parameters in reentrant functions are passed in bit
959            registers by first assigning to bits in B, then save registers and
960            copy B to bits,
961           (genCall): handle returning in Carry properly, save it in F0 if needed,
962           (genPcall): updated assignResultValue call, this is not safe yet for bit
963            returning function !!!
964           (genFunction): don't generate equ's for bit registers and use pushReg,
965           (genEndFunction): take care of bit returning functions and use popReg,
966           (genRet): return bit in Carry,
967           (genIfx): optimize bit registers and other directly addressable bits,
968           (genReceive): updated assignResultValue call
969         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
970           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
971            registers when using stack-auto
972         * src/mcs51/ralloc.c (_G): added allBitregs,
973           (regs8051): added the bit registers,
974           (createStackSpil): use macro IS_BIT,
975           (getRegBit): added to allocate a bit register, else spill,
976           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
977           (updateRegUsage): factored out to ease stepping while debugging,
978           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
979            also allocate bit registers,
980           (fillGaps): handle bit registers,
981           (findAllBitregs): added to create bit vector with all bit registers,
982           (mcs51_allBitregs): returns this bit vector,
983           (mcs51_assignRegisters): when using stack-auto use bit registers for
984            passing parameters and creating local variables
985         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
986
987 2005-08-22 Borut Razem <borut.razem AT siol.net>
988
989         * device/lib/Makefile.in: replaced find option -or with -o
990           to make it run on solaris
991
992 2005-08-22 Raphael Neider <rneider AT web.de>
993
994         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
995           fixes #1265442 (crash on Solaris)
996
997 2005-08-20 Borut Razem <borut.razem AT siol.net>
998
999         * configure, configure.in: added tests for libsocket and libnsl libraries,
1000           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1001           from support/regression/Makefile.in
1002         * support/regression/Makefile.in: added
1003         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1004         * sim/ucsim/libtool: regenerated on sparc-solaris
1005         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1006           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1007           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1008           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1009           sparc-solaris, which doesn't use GNU ld linker
1010         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1011         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1012
1013 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1014
1015         * src/mcs51/peeph.def: updated comments
1016
1017 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1018
1019         * device/lib/_gptrget.c,
1020         * device/lib/_gptrput.c: slightly shorter
1021         * doc/sdccman.lyx: incremented version
1022         * src/mcs51/peeph.def: moved peephole comments to the line of first
1023           change to better keep line correlation, reanimated 186.e
1024         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1025
1026 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1027
1028         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1029           David Saxton with quotes around file name.
1030
1031 2005-08-15 Borut Razem <borut.razem AT siol.net>
1032
1033         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1034           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1035           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1036           make tests run on x86_64 platform
1037
1038 2005-08-13 Raphael Neider <rneider AT web.de>
1039
1040         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1041           as it might be executed DURING a build (parallel make is wonderful)
1042
1043 2005-08-13 Raphael Neider <rneider AT web.de>
1044
1045         * device/lib/Makefile.in (port-specific-objects-pic16):
1046           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1047         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1048           dependency
1049         * device/lib/pic16/Makefile.rules: build subdirs before creating
1050           the library, removed builddir rule, create $(builddir) early in
1051           recurse rule, use empty recurse rule for leaf directories
1052         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1053           mkdir errors (race condition), removed duplicate suffix "hex"
1054           from clean rules
1055         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1056         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1057           prevents mkdir -p from aborting on Alpha
1058
1059 2005-08-12 Raphael Neider <rneider AT web.de>
1060
1061         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1062           db-statements in order to allow for arrays of pointers in code
1063           sections to be placed without interspersed 0-padding, fixes
1064           bug #1256215
1065         * (emitStatistics): fixed division by zero for pic18f1220
1066         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1067           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1068         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1069         * (pic16_pCodeConstString): keep track of already emitted string
1070           literals to prevent "duplicate definitions of symbol _str_NR"
1071         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1072           debug message
1073         * device/lib/Makefile.in: ignore failing PIC16 library builds
1074         * device/lib/pic16/Makefile: do not build if gputils are missing
1075         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1076
1077 2005-08-10 Raphael Neider <rneider AT web.de>
1078
1079         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1080           my last commit)
1081
1082 2005-08-10 Raphael Neider <rneider AT web.de>
1083
1084         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1085           Rokas' patch to add the new fixed point type "__fixed16x16"
1086         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1087           functions for __fixed16x16 arithmetics
1088         * device/lib/pic16: reimplemented the build system to support
1089           a separate build directory, better handling of libio (create
1090           the library in a separate subdir for each architecture) and
1091           easier configuration (centralized in Makefile.common)
1092
1093 2005-08-07 Raphael Neider <rneider AT web.de>
1094
1095         * src/pic16/gen.c (genrshTwo): fixed sign extension
1096         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1097         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1098           added T0CONbits
1099         * device/include/pic16/pic18f4220.h: NEW, header for
1100           pic18f4220 and pic18f4320
1101         * device/include/pic16/pic18fregs.h: added new devices,
1102           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1103         * device/include/pic16/signal.h: resolved name clashes
1104           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1105           to also allow testing for interrupt enable bits, added
1106           comments on how to use the macros
1107         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1108         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1109           register definitions for the devices
1110         * device/lib/pic16/pics.all: added new devices
1111         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1112           allocated memory
1113         * device/lib/pic16/libc/stdlib/memfree: do not count
1114           the block header as free memory
1115         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1116           simplified and added missing end-of-blocklist-marker
1117           (reported by Peter Onion, fixes #1252814)
1118         * (_mergeHeapBlock): fixed loop condition
1119         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1120           len==0, restructured code
1121         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1122           up a bit, reduced bitfield accesses, prevent endless loops
1123           in case of heap corruption
1124         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1125           "unreferenced arguments/must return a value" warnings
1126         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1127           replaced BAUDREG with SPBRG
1128         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1129           device/lib/pic16/debug/gstack/gstack.c: replaced
1130           _naked, _asm, _endasm with __naked, __asm, __endasm
1131
1132 2005-08-05 Raphael Neider <rneider AT web.de>
1133
1134         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1135           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1136
1137 2005-08-05 Borut Razem <borut.razem AT siol.net>
1138
1139         * device/lib/Makefile.in: added missing ';'
1140         * configure: removed ^M characters
1141
1142 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1143
1144         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1145           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1146           License
1147
1148 2005-08-04 Borut Razem <borut.razem AT siol.net>
1149
1150         * configure.in: pic16 libraries build 2nd try - enable running
1151           configure in device/lib/pic16
1152         * configure: regenerated from configure.in
1153         * device/lib/Makefile.in: create $(PORT)/bin directory
1154
1155 2005-08-03 Raphael Neider <rneider AT web.de>
1156
1157         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1158           to get/set values via pointers
1159         * (genUnpackBits,genPackBits): changed detection of
1160           ptr->bitfield vs. sym.bitfield, fixed access via generic
1161           pointers, removed dead (wrong) code for multibyte bitfields
1162         * (genNearPointerGet, genGenPointerGet): removed useless code,
1163           fixed bitfield detection, fixes #1250594
1164         * (genNearPointerSet): removed useless code
1165         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1166           and introduced macro pic16_emitpcode that conditionally emits
1167           the origin of the following pCode (useful for debugging SDCC)
1168         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1169         * (createDefmap): fixed handling of LFSR for --optimize-df
1170
1171 2005-08-02 Borut Razem <borut.razem AT siol.net>
1172
1173         * device/lib/Makefile.in: pic16 libraries build enabled since
1174           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1175
1176 2005-08-02 Raphael Neider <rneider AT web.de>
1177
1178         * src/pic16/gen.c (genPackBits): removed deprecated warning
1179         * (genGenPointerSet): fixed bitfield detection
1180
1181 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1182
1183         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1184
1185 2005-07-31 Raphael Neider <rneider AT web.de>
1186
1187         * device/lib/pic16/libdev/pic18f458.c,
1188           device/include/pic16/pic18f458.h: added missing T0CONbits
1189
1190 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1191
1192         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1193
1194 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1195
1196         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1197
1198 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1199
1200         * device/include/mcs51/at89c51ed2.h: added.
1201
1202 2005-07-23 Raphael Neider <rneider AT web.de>
1203
1204         * src/pic/gen.h: added emitpcode macro for debugging
1205         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1206           and replace by macro adding debug information on demand
1207         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1208         * (gencjne): tried to fix; replaced with correct (slower) code
1209         * (gen{Unp,P}ackBits): fixed single bit access
1210         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1211         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1212           previous instruction
1213         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1214           register has to be handled with care (forbidding movement
1215           of assignments/uses, removing assignments completely, ...)
1216         * (pCodeOptime2pCodes): make use of regIsSpecial
1217         * added lots of debugging output (commented out)
1218         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1219           from being reused as result UNLESS it is known to work
1220
1221 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1222
1223         * support/Util/dbuf.h: include <stddef.h> for size_t
1224         * .version: changed to version 2.5.2
1225
1226 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1227
1228         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1229
1230 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1231
1232         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1233           (genModOneByte): removed needless psha/pula
1234
1235 2005-07-22 Raphael Neider <rneider AT web.de>
1236
1237         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1238           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1239         * src/pic/gen.c (resolveIfx): do not "invent" labels
1240         * (genSkipc): changed to positive logic
1241         * (genSkipCond): removed as no longer needed
1242         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1243           backport from PIC16
1244         * (genLeftShift): check operands are in different registers
1245         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1246           INCF does not update CARRY...
1247         * src/pic/main.c: fixed _linkCmd
1248         * src/pic/pcode.c (unlinkpCode): added inactive code
1249         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1250           alive (do not assign result and operand overlapping registers)
1251
1252 2005-07-22 Raphael Neider <rneider AT web.de>
1253
1254         * src/pic/device.c (dump_sfr): replaced register declaration with
1255           call to emitSymbolToFile() to avoid duplicate symbols
1256         * (assignRelocatableRegisters): do not declare external symbols
1257         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1258           right (take size of type, not etype)
1259         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1260         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1261         * (packRegsForAccUse): disabled assignment of WREG as
1262           the result reg to prevent occurence of just fixed #1235003,
1263           fixes #1242954
1264         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1265           symbols (avoids duplicate symbols in .asm file)
1266         * (pic14emitRegularMap): use emitSymbolToFile()
1267         * src/pic/gen.c (aopOp): fixed spillLocation handling
1268         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1269         * (genDataPointerSet): removed unneccessary variables/output
1270
1271 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1272
1273         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1274         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1275
1276 2005-07-21 Raphael Neider <rneider AT web.de>
1277
1278         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1279           architecture cannot handle them efficiently, fixes bug #1235003
1280         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1281           check for empty sets before using them (fixes bug #1232190)
1282
1283 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1284
1285         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1286           (lnksect2): generate warnings for memory overlap
1287         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1288           constseg to set the name of these segments so you can instruct the linker
1289           to place them in banks
1290         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1291         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1292           added code_seg and const_seg to options
1293         * src/SDCCglue.c (emitMaps): use options.const_seg,
1294           (createInterruptVect): put interrupt vectors in segment HOME,
1295           (glue): put HOME before static segment and put the main glue in HOME,
1296           (glue): use options.code_seg
1297         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1298         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1299           these segments so you can instruct the linker to place them in banks
1300           (linkEdit): use code_loc for HOME segment which should be the first
1301           segment in code memory now
1302         * src/SDCCmem.c: fixed more stuff like bug 1238386
1303         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1304           (changePointer): don't change function pointers to code pointers for
1305           banked functions,
1306           (compareType): added exceptional check for banked function pointers
1307         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1308         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1309           after static in code memory
1310         * src/mcs51/gen.c: added aopLiteralLong prototype,
1311           (aopForSym): use getSize for functions,
1312           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1313           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1314           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1315           the segment,
1316           (genPcall): use call for literal function pointers and generate banked
1317           calls over the one trampoline so there's only one place for the user to
1318           modify according to his/hers hardware,
1319           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1320           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1321         * src/mcs51/main.c: added keyword banked,
1322           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1323         * support/Util/SDCCerr.c,
1324         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1325           needed for passing the bank and address to the trampoline
1326         * device/lib/mcs51/crtbank.asm: added for bankswitching
1327         * device/lib/mcs51/Makefile: added crtbank
1328
1329 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1330
1331         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1332           for fields at offset 0 of a struct or union as reported
1333           on 2005-07-07 in the developer mailing list.
1334
1335 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1336
1337         * src/SDCCmem.c: fixed bug 1238386
1338
1339 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1340
1341         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1342           (patch #1144962), added peephole 300, enabled 259.x
1343         * doc/sdccman.lyx: removed screenshot and provided link instead
1344
1345 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1346
1347         * doc/sdccman.lyx: added section about debugging with ddd
1348         * doc/figures/ddd_example.eps: screenshot of debugging session
1349
1350 2005-07-04 Raphael Neider <rneider AT web.de>
1351
1352         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1353           like CODE pointers, fixes #1115683
1354         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1355           call, fixes bugs #1232211, #1228110,
1356           fixed wrong casts to pCodeFlow from pCodeInstructions
1357
1358 2005-07-04 Raphael Neider <rneider AT web.de>
1359
1360         * src/pic/gen.c (popGet): changed assert to allow for
1361           bit operands
1362         * (popGetAddr): changed signature to provide
1363           an additional index, patched all call sites
1364         * (genCmpEq): handle literal-like operands correctly
1365         * (genAddrOf): added sanity checks on __code/__data pointers
1366         * (genAssign): added handling of symbols from __code section
1367         * (gencjne): do not generate code for comparisons whose result
1368           is neither stored nor used, fixes bug #1171114
1369         * (AccLsh, AccRsh): operate on operand instead of WREG
1370         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1371           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1372           by known count
1373         * rewrote complete shift-by-literal logic, commented unused
1374           functions out
1375         * (genConstPointerGet): get multiple bytes (if result size > 1),
1376           fixed handling of non-immediate addresses
1377         * (genPointerGet): handle CODE pointers like CONST pointers
1378         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1379         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1380           operand is to be treated as a literal or not
1381         * (mov2w,genPcall,genCmpEq),
1382           src/pic/genarith.c: use aop_isLitLike() to decide between
1383           literal/register contents
1384         * (addSign): added missing offset
1385         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1386           only emit comment in debug-mode,
1387           use {aop,op}_isLitLike throughout the file
1388         * src/pic/glue.c: fix initializers for pointers (work in progress)
1389         * src/pic/pcode.c (get_op): honor index on _const symbols
1390         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1391         * (dumppBlock): added pCode size estimation
1392         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1393           check for IS_SYMOP before OP_SYMBOL'ing
1394         * fixed indentation, compacted switch-statements
1395         * (allocReg): find free register and allocate it instead of
1396           allocating new registers all the time
1397         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1398           registers as its operands (necessary only for multibyte GETs)
1399
1400 2005-07-01 Raphael Neider <rneider AT web.de>
1401
1402         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1403           debugging .asm-output macros FENTRY + FEXIT
1404         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1405           way... I wonder...
1406         * (emitpComment): NEW, printf to pCode
1407         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1408           offset handling
1409         * (popGetAddr): NEW, variant of popGet to access an immediates
1410           high(er) bytes instead of the n'th byte of memory they reference,
1411           replaced popGet with popGetAddr where neccessary
1412         * (genDataPointerGet): reactivated and fixed implementation
1413         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1414           accesses
1415         * (genDataPointerSet): fixed multibyte assignments
1416         * (genpic14Code): fixed --i-code-in-asm handling
1417         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1418         * (genPlus): fixed index-out-of-bounds error
1419         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1420         * src/pic/ralloc.c: added debugging output macro FENTRY2
1421         * (spillThis): fixed indentation, enbraced for-body for clarity
1422         * (rematStr): commented out as now unused
1423         * (regTypeNum): commented out special spill case (overwrites
1424           arbitrary values)
1425         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1426
1427 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1428
1429         * doc/sdccman.lyx: documented sfr16/sfr32,
1430           added example for using storage class with function pointers
1431         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1432
1433 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1434
1435         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1436         * device/lib/_itoa.c,
1437         * device/lib/_ltoa.c: optimized codesize
1438         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1439           but don't know how to suppress the double warning.
1440         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1441         * support/Util/SDCCerr.c,
1442         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1443
1444 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1445
1446         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1447           fixed old K&R prototypes
1448         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1449         * device/lib/_gptrget.c,
1450         * device/lib/_gptrgetc.c,
1451         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1452           also new versions for small generic pointers and banked generic pointers
1453         * src/port.h: added const_name
1454         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1455         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1456         * src/SDCCcse.c (findPrevIc): check all associative operators
1457         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1458         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1459         * src/SDCCmem.c: updated comments,
1460           set far-space to 0 for pdata, results in optimized code
1461         * src/SDCCmem.h: added macro CONST_NAME
1462         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1463           moving the info into the highest bits, see also gptrget/gptrput
1464         * src/src.dsp: added sdcc.ico to project files
1465         * src/avr/gen.c (genCast): fixed bug 0x%d
1466         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1467         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1468           relation between ptr_type and DCL_TYPE,
1469           (genCast): fixed bug 0x%d
1470         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1471           (CODE)" for const_name
1472         * src/hc08/gen.c (genCast): fixed bug 0x%d
1473         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1474           (hc08_port): added "CONST (CODE)" for const_name
1475         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1476           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1477           between ptr_type and DCL_TYPE,
1478           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1479           operand* and took AOP() inside function so sfr-ness can be checked,
1480           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1481           new prototype,
1482           (genFunction, genEndFunction): optimized stack setup,
1483           (genMinus): optimized for literals with ending zeroes (in bytes),
1484           (genCast): fixed bug 0x%d
1485         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1486           (mcs51_port): added "CONST (CODE)" for const_name
1487         * src/mcs51/peeph.def: made rule 226 more generic
1488         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1489         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1490         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1491         * src/z80/main.c (z80_port): added NULL for const_name,
1492           (gbz80_port): added NULL for const_name
1493         * support/regression/tests/bug663539.c,
1494         * support/regression/tests/sfr16.c: new tests
1495
1496 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1497
1498         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1499
1500 2005-06-24 Raphael Neider <rneider AT web.de>
1501
1502         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1503           corrected typos...
1504         * device/include/pic16/signal.h: added USBIF
1505           and SIG_USB
1506
1507 2005-06-24 Raphael Neider <rneider AT web.de>
1508
1509         * device/lib/pic16/libdev/pic18f2455.c,
1510           device/include/pic16/pic18f2455.h: NEW
1511         * device/include/pic16/pic18fregs.h,
1512           device/lib/pic16/pics.all,
1513           src/pic16/device.c: added 18f2455
1514         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1515           device/include/pic16/{pic18f[68][567].h,usart.h}:
1516           replaced MULTIPLE_USARTS define with more relaible
1517           compatibility sfrs (for USART access)
1518
1519 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1520
1521         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1522           and the output asm file line is printed on two lines.
1523
1524 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1525
1526         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1527           BGT, BLE, BHI, and BLS instructions
1528         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1529           genCmpEq): removed
1530         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1531           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1532           fixes bug #1216342
1533         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1534
1535 2005-06-15 Raphael Neider <rneider AT web.de>
1536
1537         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1538         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1539         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1540           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1541           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1542
1543 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1544
1545         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1546           Marcel Telka in bug #1215704
1547
1548 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1549
1550         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1551           located in shared memory bank.
1552
1553 2005-05-31 Raphael Neider <rneider AT web.de>
1554
1555         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1556           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1557           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1558
1559 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1560
1561         * device/lib/_strncpy.c: fixed the fix
1562
1563 2005-05-26 Raphael Neider <rneider AT web.de>
1564
1565         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1566           initializers with \0, bug #1208187
1567         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1568           intializers with \0, bug #1208187
1569
1570 2005-05-26 Raphael Neider <rneider AT web.de>
1571
1572         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1573           initializers with \0, bug #1208187
1574         * src/pic16/main.c (_process_pragma): added sanity checks
1575           for stack position and size, emit warnings when appropriate
1576
1577 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1578
1579         * device/lib/_strncpy.c: fixed not filling with \0
1580
1581 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1582
1583         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1584           createFunction),
1585         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1586           compound_statement),
1587         * src/SDCCsymt.h,
1588         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1589
1590 2005-05-24 Raphael Neider <rneider AT web.de>
1591
1592         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1593
1594 2005-05-24 Raphael Neider <rneider AT web.de>
1595
1596         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1597           TRISE definitions, closes bug #1162453
1598
1599 2005-05-22 Raphael Neider <rneider AT web.de>
1600
1601         * src/pic16/main.c (_process_pragma): check for missing
1602           arguments to pragmas code and udata
1603         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1604           consistency fixes to match other headers (thanks to Jim Paris)
1605         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1606
1607 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1608
1609         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1610
1611 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1612
1613         * support/regression/tests/bug1198642.c: new test
1614         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1615         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1616         * support/scripts/resource.h,
1617         * support/scripts/resource.rc,
1618         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1619         * support/scripts/sdcc.ico: added 32x32 icon
1620
1621 2005-05-18 Raphael Neider <rneider AT web.de>
1622
1623         * device/lib/pic16/libdev/pic18f*.c,
1624         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1625           keywords to "__sfr" and "__at (X)"
1626         * device/include/pic16/pic18fregs.h: added pic18f4520
1627         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1628           #1203088 (MPLAB compatibility)
1629
1630 2005-05-17 Raphael Neider <rneider AT web.de>
1631
1632         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1633         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1634         * device/lib/pic16/pics.all: added new devices
1635         * src/pic16/device.c: added support for pic18f4520
1636
1637 2005-05-16 Raphael Neider <rneider AT web.de>
1638         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1639         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1640         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1641           convenience function for bit access
1642
1643 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1644
1645         * device/lib/printf_large.c: fixed bug 1193299
1646         * support/regression/tests/bug1057979.c: added test %3.3s
1647
1648 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1649
1650         * device/include/mcs51/8051.h,
1651         * device/include/mcs51/8052.h: made parseable with lint
1652         * device/include/mcs51/lint.h: added include file for (sp)lint
1653         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1654         * doc/cdbfileformat.lyx,
1655         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1656
1657 2005-05-14 Raphael Neider <rneider AT web.de>
1658
1659         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1660         * device/lib/pic16/libc/stdlib/itoa.c (new)
1661         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1662         * device/lib/pic16/libio/Makefile: exclude subdir according to
1663           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1664         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1665         * src/pic16/gen.c (genFunction): prevent annoying warning
1666         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1667           nameclashes on BeOS
1668         * support/cpp2/cppmain.c (cpp_output_string): new
1669         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1670           fixes bug 1116802
1671
1672 2005-05-13 Borut Razem <borut.razem AT siol.net>
1673
1674         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1675
1676 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1677
1678         * .version: changed to version 2.5.1; back to bleeding edge development
1679
1680 2005-05-11 Borut Razem <borut.razem AT siol.net>
1681
1682         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1683           generate PDF version 1.3 documents
1684
1685 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1686
1687         * .version: changed to version 2.5.0
1688
1689 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1690
1691         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1692
1693 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1694
1695         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1696         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1697         well as many smaller updates.
1698         * .version: changed to version 2.5.0-pre1
1699
1700 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1701
1702         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1703
1704 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1705
1706         * support/regression/tests/bug1185672.c: added
1707         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1708           bug 1185672
1709         * src/mcs51/gen.c (genCall): added comments, made it look safer
1710         * src/mcs51/gen.c (genEndFunction): simplified
1711
1712 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1713
1714         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1715
1716 2005-04-14 Borut Razem <borut.razem AT siol.net>
1717
1718         * fixed bug 1045046 - SIGSEGV with really simple code?:
1719           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1720           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1721
1722 2005-04-14 Borut Razem <borut.razem AT siol.net>
1723
1724         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1725           src/pic16/device.h: temporarily disabled experimental #inline pragma
1726           for 2.5.0 release
1727
1728 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1729
1730         * device/include/z80/stdio.h,
1731         * device/include/z80/string.h: removed these highly incomplete files so
1732           SDCC can use the default ones in device/include/
1733
1734 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1735
1736         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1737         gcc warning.
1738         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1739         fix sdcpp warnings.
1740
1741 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1742
1743         * device/include/malloc.h: removed redundant __reentrant prototypes
1744         * device/lib/_mullong.c: added working xstack variant in asm (C version
1745           doesn't pass regression tests)
1746         * device/lib/bpx.c: used __data and made bpx char for mcs51
1747         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1748           (createFunction): fixed bug with xstackPtr
1749         * src/SDCCcse.c: corrected comments
1750         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1751           (killDeadCode, eBBlockFromiCode): removed unused code
1752         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1753           corrected comments
1754         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1755           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1756           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1757           (genModOneByte): fixed warning in MSVC
1758         * src/mcs51/main.c (): added comments
1759         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1760
1761 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1764
1765 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1766
1767         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1768
1769 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1770
1771         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1772         characters arrays of larger size than the declared one.
1773
1774 2005-04-10 Borut Razem <borut.razem AT siol.net>
1775
1776         * src/pic/gen.c (genInline),
1777           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1778           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1779           (findNextInstruction), (findPrevInstruction),
1780           (findInstructionUsingLabel),
1781           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1782         * src/pic/pcode.c (findLabel): added missing '\n'
1783         * src/src.dsp: added SDCCdwarf2.c to the project
1784
1785 2005-04-09 Borut Razem <borut.razem AT siol.net>
1786
1787         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1788
1789 2005-04-08 Raphael Neider <rneider AT web.de>
1790
1791         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1792           into the chain after a given one) and mergeDefmapSymbols (combine
1793           defmap entries for each symbol per pcode)
1794         * (createDefmap): have defmap entries merged in the end
1795         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1796           a symbol before replacing one access type's symbol, merge symbols in
1797           the end (replacement symbol might already have an entry)
1798         * (assignValnums): keep reference to written WREG intact
1799
1800 2005-04-08 Raphael Neider <rneider AT web.de>
1801
1802         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1803           Alpha)
1804
1805 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1806
1807         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1808         bytes
1809
1810 2005-04-07 Raphael Neider <rneider AT web.de>
1811
1812         * device/include/pic16/usart.h: added compatibility defines for
1813           devices with more than one USART
1814         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1815
1816 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1817
1818         * device/lib/Makefile.in: updated for port specific include
1819
1820 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1821
1822         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1823
1824 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1825
1826         * device/include/8051.h,
1827         * device/include/8052.h,
1828         * device/include/at89S8252.h,
1829         * device/include/at89c55.h,
1830         * device/include/at89x051.h,
1831         * device/include/at89x51.h,
1832         * device/include/at89x52.h,
1833         * device/include/mcs51reg.h,
1834         * device/include/reg51.h,
1835         * device/include/reg764.h,
1836         * device/include/regc515c.h,
1837         * device/include/sab80515.h: (re)moved these 12 files
1838         * device/include/mcs51/8051.h,
1839         * device/include/mcs51/8052.h,
1840         * device/include/mcs51/at89S8252.h,
1841         * device/include/mcs51/at89c55.h,
1842         * device/include/mcs51/at89x051.h,
1843         * device/include/mcs51/at89x51.h,
1844         * device/include/mcs51/at89x52.h,
1845         * device/include/mcs51/mcs51reg.h,
1846         * device/include/mcs51/reg51.h,
1847         * device/include/mcs51/reg764.h,
1848         * device/include/mcs51/regc515c.h,
1849         * device/include/mcs51/sab80515.h: and added them here
1850
1851 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1852
1853         * device/include/stdarg.h: changed SDCC specific keywords to double
1854           underlined form.
1855         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1856           mcs51 and ds390.
1857         * device/include/hc08/mc68hc908gp32.h,
1858         * device/include/hc08/mc68hc908jb8.h,
1859         * device/include/hc08/mc68hc908jkjl.h,
1860         * device/include/hc08/mc68hc908qy.h: fixed comments
1861         * device/include/mcs51/README: updated
1862         * device/include/mcs51/c8051f120.h: added PINRSF
1863         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1864         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1865           amidst code. Also inline is not supported.
1866
1867 2005-04-06 Raphael Neider <rneider AT web.de>
1868
1869         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1870         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1871           callers stack/frame pointers
1872
1873 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1874
1875         * device/include/pic16/usart.h: added, missing in previous commit,
1876         * device/include/pic16/adc.h: fixed typo,
1877         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1878         commit,
1879         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1880         <p18fxxx.inc>
1881         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1882         uninitialized because a bug appears with gplink
1883         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1884         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1885         complains for unrecognised option
1886
1887 2005-04-05 Raphael Neider <rneider AT web.de>
1888
1889         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1890           structs as well (using memcpy)
1891         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1892           on ISRs (GOTO has no label)
1893         * src/pic16/device.h: added OF_OPTIMIZE_DF
1894         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1895           new data flow analysis/optimization
1896         * src/pic16/pcode.c: added (prototypes for and implementation of)
1897           dataflow analysis functions, fixed pCodeInstructions' inCond and
1898           outCond values, made RCALL a branch instruction
1899         * (pic16_unlinkpCode): keep C line if possible
1900         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1901           C line moved if possible
1902         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1903         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1904           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1905         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1906           new flow)
1907         * (pic16_getJumptabpCode): NEW, needed in...
1908         * (LinkFlow): fixed handling of jumptables, calls and conditional
1909           branches
1910         * (pic16_InsertCommentAfter): NEW
1911         * (pic16_pCodeReplace): made verbose and flow preserving
1912         * (AnalyzeFlow): added call to data flow analysis
1913         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1914         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1915         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1916
1917 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1918
1919         * src/SDCCast.c (decorateType): fixed bug #1105626
1920
1921 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1922
1923         * device/include/asm/pic16/features.h,
1924         * pic18f*.h headers,
1925         * device/include/pic16/adc.h,
1926         * device/include/pic16/delay.h,
1927         * device/include/pic16/i2c.h,
1928         * device/include/pic16/malloc.h,
1929         * device/include/pic16/stdio.h,
1930         * device/include/pic16/stdlib.h,
1931         * device/include/pic16/string.h,
1932         * device/lib/pic16/libc/stdio/printf_tiny.c,
1933         * device/lib/pic16/libc/stdio/printf_small.c,
1934         * device/lib/pic16/libc/stdio/strmgpsim.c,
1935         * device/lib/pic16/libc/stdio/strmmssp.c,
1936         * device/lib/pic16/libc/stdio/strmusart.c,
1937         * device/lib/pic16/libc/stdio/vfprintf.c,
1938         * device/lib/pic16/libc/stdlib/ltoa.c,
1939         * device/lib/pic16/libc/stdlib/putchar.c,
1940         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1941         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1942         * device/lib/pic16/libc/stdlib/memchrram.c,
1943         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1944         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1945         * device/lib/pic16/libio/adc/adcbusy.c,
1946         * device/lib/pic16/libio/adc/adcread.c,
1947         * device/lib/pic16/libio/adc/adcsetch.c,
1948         * device/lib/pic16/libio/usart/ubaud.c,
1949         * device/lib/pic16/libio/usart/ubusy.c,
1950         * device/lib/pic16/libio/usart/udrdy.c,
1951         * device/lib/pic16/libio/usart/uopen.c,
1952         * device/lib/pic16/libio/usart/uputc.c,
1953         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1954         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1955         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1956         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1957         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1958         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1959         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1960         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1961         specific keywords to double underlined form,
1962         * device/lib/pic16/libc/Makefile.rules,
1963         * device/lib/pic16/libsdcc/Makefile.rules,
1964         * device/lib/pic16/libm/Makefile,
1965         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1966         to compile with C standard set in Makefile.common
1967         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1968         rand.c and crc.c in compilation process,
1969         * device/lib/pic16/libsdcc/int/divuint.c,
1970         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1971         `c' from signed to unsigned,
1972         * device/lib/pic16/startup/crt0.c,
1973         * device/lib/pic16/startup/crt0i.c,
1974         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1975         keywords to double underlined form, bug fixes in _do_cinit function
1976         which prevented the correct initialization of the .idata segment,
1977         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1978         core to enter a infinite loop
1979         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1980
1981 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1982
1983         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1984
1985 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1986
1987         * device/include/Makefile.in: add support for hc08 subdirectory
1988         * device/include/hc08/: new subdirectory
1989         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1990         Lucas Loizaga, thanks!
1991         * device/include/hc08/mc68hc908qy.h,
1992         * device/include/hc08/mc68hc908gp32.h,
1993         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1994         their own directory. Changed internal macro names to use the compiler
1995         reserved namespace. Changed SDCC specific keywords to double
1996         underlined form.
1997         * device/include/math.h,
1998         * device/include/malloc.h,
1999         * device/include/stdarg.h,
2000         * device/include/stdbool.h
2001         * device/include/string.h,
2002         * device/include/tinibios.h,
2003         * device/include/ds400rom.h,
2004         * device/include/8051.h,
2005         * device/include/8052.h,
2006         * device/include/80c51xa.h,
2007         * device/include/at89c55.h,
2008         * device/include/at89S8252.h,
2009         * device/include/at89x51.h,
2010         * device/include/at89x52.h,
2011         * device/include/ds80c390.h,
2012         * device/include/reg764.h,
2013         * device/include/regc515c.h,
2014         * device/include/sab80515.h,
2015         * device/include/mcs51/c8051f000.h,
2016         * device/include/mcs51/c8051f018.h,
2017         * device/include/mcs51/c8051f020.h,
2018         * device/include/mcs51/c8051f040.h,
2019         * device/include/mcs51/c8051f060.h,
2020         * device/include/mcs51/c8051f120.h,
2021         * device/include/mcs51/c8051f300.h,
2022         * device/include/mcs51/c8051f310.h,
2023         * device/include/mcs51/c8051f320.h,
2024         * device/include/mcs51/c8051f330.h,
2025         * device/include/mcs51/c8051f350.h,
2026         * device/include/z180.h: Changed SDCC specific keywords to double
2027         underlined form.
2028
2029 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2030
2031         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2032         18F4455,
2033         * (pic16_assignConfigWordValue): disable testing of configuration
2034         register value with config mask,
2035         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2036         function with port->fun_prefix,
2037         * (genFunction): when generating a naked interrupt function never
2038         create an absolute segment placed in interrupt vector address, place
2039         the actual interrupt function at IVA instead, when an interrupt
2040         function is generated with unspecified interrupt then do not create
2041         the absolute section,
2042         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2043         code for generating a call to generic pointer get/put function with
2044         a call to function pic16_callGenericPointer(),
2045         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2046         the call to the generic pointer get/put functions with prefixing the
2047         function name with port->fun_prefix,
2048         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2049         * src/pic16/main.c (_process_pragma): prefix function with
2050         port->fun_prefix,
2051         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2052         calling assembler, old 18Fxxxx macro is deprecated,
2053         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2054         PC_ASMDIR in while condition,
2055         * (findInstruction): add PC_ASMDIR in while condition,
2056         * (buildCallTree): prefix main with port->fun_prefix,
2057         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2058         identifier for variable with banked access in instructions BTFSS,
2059         BTFSC, BCF, BSF, BTG
2060         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2061         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2062         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2063         perform optimization when enviroment variable NO_REG_OPT is set,
2064         * (insideLRBlock): NEW, return 1 if register is inside an
2065         INF_LOCALREGS block,
2066         * (RemoveRegFromLRBlock): remove a register that is completely
2067         eliminated by register optimization, but it is still left in local
2068         register store/restore in/from stack block,
2069         * (Remove2pcodes): after removing register, check to see if it
2070         should be removed from local register store/restore in/from stack
2071         block,
2072         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2073         DUMMY_READ_VOLATILE,
2074
2075         * device/include/pic16/adc.h: minor prototype modifications and
2076         update,
2077         * device/include/pic16/malloc.h: added GPL notice various
2078         modifications,
2079         * device/include/pic16/stdint.h: NEW, standard header for ints
2080         * device/include/pic16/delay.h: NEW, header for delay functions,
2081         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2082         delay1mtcy,
2083         * device/include/pic16/signal.h: NEW, header providing helper macros
2084         for implementing signal handlers,
2085         * device/include/pic16/stdio.h: added prototypes for functions,
2086         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2087         prototypes for stdin and stdout, added macro PUTCHAR to
2088         automatically implement putchar function prototype,
2089         * device/include/pic16/usart.h: modified and updated USART library,
2090         * device/lib/pic16/libio/adc/,
2091         * device/lib/pic16/libio/i2c: some modifications to improve library
2092         performance,
2093         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2094         family of functions,
2095         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2096         family of functions and other sources,
2097         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2098         of the PIC18Fxx[28] devices,
2099         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2100         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2101         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2102         _do_cinit function, because the previous failed when local variables
2103         where not placed in the same memory bank,
2104         * device/lib/pic16/libsdcc/char/: various modifications to improve
2105         library performance,
2106         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2107         information on the new functions of the c library and more...
2108
2109 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2110
2111         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2112
2113 2005-03-26 Raphael Neider <rneider AT web.de>
2114
2115         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2116           if condition == CARRY)
2117         * (genCmp): adapted to new genSkipc semantics
2118         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2119           on rIfx (genCmp was broken)
2120
2121 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2122
2123         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2124         * src/z80/main.c (_keywords[]),
2125         * src/SDCCglobal.h (struct options),
2126         * src/SDCC.y,
2127         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2128         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2129         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2130         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2131         always available in leading double underscore form. The C99 support is
2132         mostly missing, but it's a start.
2133         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2134         reserved identifier "__data".
2135
2136 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2137
2138         * src/mcs51/peeph.def: fixed bug 1170013
2139
2140 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2141
2142         * device/include/mcs51reg.h: fixed bug 842007
2143
2144 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2145
2146         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2147         last time.
2148
2149 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2150
2151         * src/port.h (struct PORT),
2152         * src/avr/ralloc.c (avr_assignRegisters),
2153         * src/avr/main.c,
2154         * src/ds390/ralloc.c (ds390_assignRegisters),
2155         * src/ds390/main.c,
2156         * src/hc08/ralloc.c (hc08_assignRegisters),
2157         * src/hc08/main.c,
2158         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2159         * src/mcs51/main.c,
2160         * src/pic/ralloc.c (pic14_assignRegisters),
2161         * src/pic/main.c,
2162         * src/pic16/ralloc.c (pic16_assignRegisters),
2163         * src/pic16/main.c,
2164         * src/xa51/ralloc.c (xa51_assignRegisters),
2165         * src/xa51/main.c,
2166         * src/z80/ralloc.c (z80_assignRegisters),
2167         * src/z80/ralloc.h,
2168         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2169         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2170         * src/SDCCcse.h,
2171         * src/SDCCdflow.c (computeDataFlow),
2172         * src/SDCCdflow.h,
2173         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2174         * src/SDCCloop.h,
2175         * src/SDCCcflow.c (*),
2176         * src/SDCCcflow.h,
2177         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2178         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2179         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2180         immedDom() returning wrong block; probably fixes bug #1160833)
2181
2182 2005-03-20 Borut Razem <borut.razem AT siol.net>
2183
2184         * support/scripts/inc2h.pl: WIN32 port
2185
2186 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2187
2188         * device/lib/makefile.in: added abs.c and labs.c
2189
2190 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2191
2192         * device/include/stdint.h: added
2193         * device/lib/abs.c: added
2194         * device/lib/labs.c: added
2195         * device/include/stdlib.h: added abs() and labs() prototypes
2196         * device/lib/libsdcc.lib: added abs and labs
2197         * device/include/float.h,
2198         * device/lib/_fsmul.c,
2199         * device/lib/printf_fast.c,
2200         * device/lib/printf_tiny.c: updated comments
2201
2202 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2203
2204         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2205         bug #1164313
2206
2207 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2208
2209         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2210         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2211
2212 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2213
2214         * device/lib/printf_large.c: removed inline assembly for portability and
2215           readability. Use printf_fast if speed or size are more important.
2216         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2217         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2218
2219 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2220
2221         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2222         prevent compiler warning
2223
2224 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2225
2226         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2227         moved to level 0 and declared as static. Also they are explicit
2228         placed in access bank. This was necessery because some times they
2229         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2230         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2231         optimizations. Currently only compare to unsigned char is implemented,
2232         * src/pic16/gen.c: added fReturnIdx array,
2233         * (struct resolvedIfx) is moved to gen.h and made public,
2234         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2235         * (aopForSym): added an optimization to directly store in stack of
2236         the operand of a SEND iCode,
2237         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2238         but as registers instead (AOP_REG) using the fReturnIdx array,
2239         * (pic16_freeAsmop): remove the freed register from the
2240         _G.sregsAlloc field,
2241         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2242         a compare of 'WREG',
2243         * (pic16_popGetTempRegCond): changed function prototype, now
2244         function takes also a bitVector argument v which holds the current
2245         set of registers that are allocated for stack access by aopForSym,
2246         registers allocated in aopForSym for accessing stack symbols are not
2247         any more part of the functions usedRegs field,
2248         * (genCall): some times aopOp is called for a stack variable to be
2249         send, aopForSym might perform the push, if this is true make sure
2250         that genCall doesn't push the variable twice by testing _G.resDirect,
2251         * (genFunction): changed testing for unspecified interrupt number
2252         from 256 to INTNO_UNSPEC,
2253         * modified selection scheme of frame pointer generation. Previously
2254         if function did use local registers a frame pointer was generated,
2255         now a frame pointer is generated only if function has arguments
2256         (that need PLUSW2 register access), or has stack arguments, or the
2257         compiler is not instructed to omit the frame pointer,
2258         * (genEndFunction): before restoring local registers that were saved
2259         in the function preamble, also restore the registers that *might*
2260         have been allocated for stack access,
2261         * (genRet): removed some old comments,
2262         * (genCmp, the active (RN's) version): added a call to the
2263         pic16_genCmp_special function to perform the compare with a more
2264         robust and optimized way,
2265         * (genInline): a feature has been added in inline code generation,
2266         which allows a wildcard variable substitution when writing inline
2267         assembly. Code is incomplete and experimental therefore undocumented,
2268         * (genCast): changed order of aopOp for result and right to allow
2269         aopForSym to directly load the result if possible,
2270         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2271         perform an optimized compare on some selected special occasions,
2272         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2273         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2274         generate an IVT any more,
2275         * src/pic16/main.c (pic16_optionsTable): added command line option
2276         --optimize-cmp,
2277         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2278         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2279         macros,
2280         * src/pic16/NOTES: Raphael Neider added in list of active developers
2281         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2282         jumptable_end to prevent bug #,
2283         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2284         inCond and outCond fields,
2285         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2286         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2287         turn off register spilling,
2288         * (packRegsForOneUse): synced with other ports' versions although it
2289         is not used currently,
2290         * (pic16_packRegisters): added an optimization while reading
2291         structure bitfields, some registers may be saved (malloc code is
2292         decreased by 80 bytes)
2293
2294 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2295
2296         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2297         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2298         this can be optimized more?
2299
2300 2005-03-10 Raphael Neider <rneider AT web.de>
2301
2302         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2303           genNearPointerGet): (hopefully) fixed access to bitfields via
2304           pointers (p->bitN = x; and x = p->bitN; failed)
2305
2306 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2307
2308         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2309
2310 2005-03-09 Raphael Neider <rneider AT web.de>
2311
2312         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2313
2314 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2317         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2318           (regTypeNum): set REG_BIT type if necessary
2319         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2320         * support/regression/tests/critical.c: check bug 1144613
2321
2322 2005-03-02 Raphael Neider <rneider AT web.de>
2323
2324         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2325
2326 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2327
2328         * src/avr/ralloc.c (serialRegAssign),
2329         * src/ds390/ralloc.c (serialRegAssign),
2330         * src/hc08/ralloc.c (serialRegAssign),
2331         * src/mcs51/ralloc.c (serialRegAssign),
2332         * src/pic/ralloc.c (serialRegAssign),
2333         * src/pic16/ralloc.c (serialRegAssign),
2334         * src/xa51/ralloc.c (serialRegAssign),
2335         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2336
2337 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2338
2339         * src/SDCCast.c (decorateType): fixed bug 1124787
2340
2341 2005-02-20 Hubert Sack <sack AT digiplan.de>
2342         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2343
2344         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2345         patch #1121755
2346
2347 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2348
2349         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2350         to keep the correct label reference count when adding/removing references
2351         to labels. A peephole file using this is appended to patch #1144962.
2352
2353 2005-02-14 Raphael Neider <rneider AT web.de>
2354
2355         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2356         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2357         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2358           retrievals of result operand's value on assignment
2359
2360 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2361
2362         * device/include/pic16/string.h: modified prototype for memccpy()
2363         to memccpy(void *, void *, char, size_t)
2364         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2365         check whether to omit frame pointer or not,
2366         * (genInline): convert all occurences of "\n" to LF in inline
2367         assembler blocks, this helps formatting the inline text,
2368         * (pic16_loadFSR0): modified prototype,
2369         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2370         removed some 8051 legacy code,
2371         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2372         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2373         before allocating temporary registers in functions,
2374
2375 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2376
2377         * support/regression/tests/bitvars.c: corrected the "fix"
2378
2379 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2380
2381         * support/regression/tests/bitvars.c,
2382         * support/regression/tests/bitwise.c,
2383         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2384
2385 2005-02-10 Raphael Neider <rneider AT web.de>
2386
2387         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2388           different size for Alpha
2389         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2390
2391 2005-02-09 Raphael Neider <rneider AT web.de>
2392
2393         * src/SDCC.lex(doPragma) : save and restore warning options as well
2394           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2395         * have #pragma less_pedantic set the errorlevel to WARNING
2396           (fixes #1117001)
2397         * (cloneOptimize) : fixed wrong malloc's size
2398         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2399           facilitate correct handling of #pragma (save|restore)
2400
2401 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2402
2403         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2404
2405 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2406
2407         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2408
2409 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2410
2411         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2412
2413 2005-02-02 Raphael Neider <rneider AT web.de>
2414
2415         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2416         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2417         * (pic16_storeForReturn): fixed to allow returning function pointers
2418         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2419         * device/include/pic16/{stddef.h,stdbool.h}: added
2420
2421 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2422
2423         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2424
2425 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2426
2427         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2428         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2429          appeared to be required
2430
2431 2005-01-31 Borut Razem <borut.razem AT siol.net>
2432
2433         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2434           include/mcs51 and include/z80 directories to the package
2435
2436 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2437
2438         * src/hc08/gen.c (genFunction): fixed bug #1112752
2439
2440 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2441
2442         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2443
2444 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2445
2446         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2447
2448 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2449
2450         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2451
2452 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * device/include/c8051fxxx.h: removed these 6 files
2455         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2456
2457 2005-01-26 Raphael Neider <rneider AT web.de>
2458
2459         * src/pic16/gen.c (genAssign): fixed assignment from longs
2460           in codespace (were cut to three bytes)
2461         * (genDummyRead): implemented (except for CODESPACE...),
2462           fixed bug #1108575
2463         * src/pic16/glue.c (emitStatistics): beautified
2464         * device/lib/pic16/libm/Makefile: added include path
2465
2466 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2467
2468         * src/z80/gen.c (aopPut): fixed bug #1103902
2469
2470 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2471
2472         * device/lib/expf.c: fixed bug #1095792
2473
2474 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2475
2476         * device/lib/pic16/libm: added Math library sources
2477
2478 2005-01-24 Raphael Neider <rneider AT web.de>
2479
2480         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2481           to enable upcast to pCodeOpReg2 (there is no type tag to
2482           differenciate the two and pic16_popGet2p cast into PCOR2)
2483         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2484           (sizeof(sectNames) changed to sizeof(sectName))
2485           Both patches fix segfaults under MinGW.
2486
2487 2005-01-23 Raphael Neider <rneider AT web.de>
2488
2489         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2490           Safe_[mc]?alloc()'ed variables
2491         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2492           of (byte sized) temporaries (assign them to WREG for now)
2493         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2494           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2495           this might fix SIGSEGVs on MinGW...
2496         * src/SDCCopt.c (killDeadCode): restored original behaviour
2497           (volatile operands might get thrown away though)
2498
2499 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2500
2501         * src/pic16/gen.c: fixed bug #1106975,
2502         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2503         pointer update, INTCON is saved, global interrupts are disabled and
2504         restored after updateing TOS.
2505         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2506         * added function attribute 'shadowregs' to take advantage of shadow
2507         registers,
2508         * added function attribute 'wparam' as an alternative to the wparam
2509         pragma,
2510         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2511         user declares a non-ISR function as 'shadowregs',
2512         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2513
2514 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2515
2516         * .version: bumped version number to 2.4.8
2517         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2518         pic16 port,
2519         * device/lib/pic16/libio/i2c/: I2C module support library,
2520         * device/include/pic16/i2c.h: I2C support library header,
2521         * device/lib/pic16/libc/stdio/: standard IO support sources,
2522         * (printf_small.c): printf_small() source, supports float print,
2523         * (printf_tiny.c): printf_tiny() source, does not support floats,
2524         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2525         enable global optimizations for entire library source, other
2526         Makefiles in the source tree are also modified to reflect this,
2527         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2528         function,
2529         * doc/sdccman.lyx: updated to reflect new changes,
2530         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2531         sym->onStack if-case,
2532         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2533         sbit, idata, _idata, xdata, _xdata,
2534         * added pragma library, to link an external library, (see doc),
2535         * removed command line options, --pomit-config-words, --pomit-ivt,
2536         --pleave-reset-vector,
2537         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2538         when calling assembler to reflect memory model used, also define
2539         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2540         reflect stack model used,
2541         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2542         on stack return NULL,
2543
2544 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2545
2546         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2547           of the operands is volatile. Fixes #1020220
2548
2549 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2550
2551         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2552         * (OptimizeRegUsage): make sure that there is really no other flow where
2553           the first pCode is used
2554
2555 2005-01-22 Raphael Neider <rneider AT web.de>
2556
2557         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2558           to fix #1106967 (pCode->seq are not set up correctly)
2559
2560 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2561
2562         * src/SDCCglue.c (glue): make sure code area is declared before the
2563         static initialization area.
2564
2565 2005-01-21 Raphael Neider <rneider AT web.de>
2566
2567         * device/lib/Makefile.in: fixed test for pic16 install dir
2568         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2569           optimizations
2570         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2571           added --optimize-goto compiler switch and pragma wparam documentation
2572         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2573         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2574           and PRODH closing bug #1071770 (peephole optimizer)
2575
2576 2005-01-19 Raphael Neider <rneider AT web.de>
2577
2578         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2579           cmdLine buffers (used when calling sdcpp...) are large enough
2580           (MAX_PATH=256 truncates arguments leading to system halts when
2581           used in MinGW...)
2582         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2583         * (genUminus): rewritten to for efficiency
2584         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2585           used uninitialized in some cases)
2586         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2587           copy the third byte from the int -- now assumes 0x80 (data memory)
2588         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2589           operands (genAddLit expects the iCode's operands to swapped as
2590           well), fixed leftover bytes (crashed for short left operands)
2591         * (pic16_genMinusDec): performance improvements, removed false
2592           PIC14 emitSKPNCs
2593         * (pic16_genMinus): fixed to cope with differently sized operands
2594         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2595           for --obanksel > 1
2596         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2597         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2598           new banksel optimization
2599         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2600           analysis for temporary registers (segfaults...)
2601         * src/pic16/peeph.def: added rule
2602
2603 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2604
2605         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2606         which converts a float number to its ASCII representation
2607         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2608         functions to convert the fractional and integer part of a float to ASCII,
2609         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2610         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2611         ram
2612         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2613         _STATMEM macros,
2614         * device/include/pic16/adc.h: added GPL info,
2615         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2616         a pCodeOp as tested operand,
2617         * (genNearPointerGet): optimized bit testing, does not use
2618         intermediate register for bit value, test directly instead with
2619         BTFSS, BTFSC, works only for single bits,
2620         * (genpic16Code): dump the name of the iCode in the asm,
2621         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2622         renamed to pic16_decodeOp,
2623         * (serialRegAssign): do not allocate a temporary register for iCode
2624         sequences that test a single bit for 1/0
2625
2626 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2627
2628         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2629         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2630         access stack and frame pointers. They are initially assigned to
2631         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2632         accessing SFRs. Updated all occurences of modification of stack or
2633         frame pointer in gen.c and pcode.c,
2634         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2635         assigning of a literal value to pointers,
2636         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2637         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2638         selected
2639
2640 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2641
2642         * doc/sdccman.lyx: update documentation about stack pragma, added
2643         some info for stack memory models
2644
2645 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2646
2647         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2648
2649 2005-01-08 Raphael Neider <rneider AT web.de>
2650
2651         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2652           udata sections to fix bug #1097823
2653
2654 2005-01-05 Raphael Neider <rneider AT web.de>
2655
2656         * src/pic16/gen.c (genGenericShift): added handling of differently
2657           sized left operand and result
2658
2659 2005-01-04 Raphael Neider <rneider AT web.de>
2660
2661         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2662         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2663           to hold the condition bit)
2664         * added new version of genCmp (old code available via #define)
2665         * added new version of genShiftLeft/genShiftRight in a generic
2666           way, now supports shifting by negative values
2667         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2668           shiftCount (expected by genGenericShift)
2669         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2670         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2671           dump
2672         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2673           is an invalid literal too...)
2674
2675 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2676
2677         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2678         from Raphael Neider,
2679         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2680         for 8-bit literals. This fixes some literal operands which are sign
2681         extended to 16-bits ints when instruction needs only 8-bits.
2682
2683 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2684
2685         * device/lib/logf.c: added mcs51 assembly version
2686         * device/lib/expf.c: added mcs51 assembly version
2687         * device/lib/_logexpf.c: new shared asm code for expf and logf
2688         * device/include/math.h: add defines for assembly math library
2689         * device/lib/Makefile.in: build new _logexpf.c
2690         * device/lib/libfloat.lib: use new _logexpf.c
2691
2692 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2693
2694         * src/pic/device.c
2695         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2696           device types which have less than 0x7f registers.
2697
2698 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2699
2700         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2701
2702 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2703
2704         * device/lib/printf_fast.c: only build on supported arch.
2705         * device/lib/printf_tiny.c: only build on supported arch.
2706         * device/lib/printf_fast_f.c: only build if asm float lib
2707         * device/lib/_fsget1arg.c: only build if asm float lib
2708         * device/lib/_fsget2args.c: only build if asm float lib
2709         * device/lib/_fsnormalize.c: only build if asm float lib
2710         * device/lib/_fsreturnval.c: only build if asm float lib
2711         * device/lib/_fsrshift.c: only build if asm float lib
2712         * device/lib/_fsswapargs.c: only build if asm float lib
2713         * device/include/stdio.h: don't provide print_fast,
2714           print_fast_f, print_tiny prototypes if --xstack used
2715
2716 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2717
2718         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2719         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2720           to the SOURCES
2721
2722 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2723
2724         * device/lib/printf_fast_f.c: same as printf_fast, but
2725           with floating point enabled
2726         * device/lib/printf_fast.c: minor tweaks
2727         * device/include/stdio.h: add printf_fast_f
2728
2729 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2730
2731         * src/SDCCmain.c: make --float-reent default for mcs51
2732         * device/lib/_fsadd.c: added mcs51 assembly version
2733         * device/lib/_fssub.c: added mcs51 assembly version
2734         * device/lib/_fsmul.c: added mcs51 assembly version
2735         * device/lib/_fsdiv.c: added mcs51 assembly version
2736         * device/lib/_fseq.c: added mcs51 assembly version
2737         * device/lib/_fsneq.c: added mcs51 assembly version
2738         * device/lib/_fsgt.c: added mcs51 assembly version
2739         * device/lib/_fslt.c: added mcs51 assembly version
2740         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2741         * device/lib/Makefile.in: add _fscmp to build
2742         * device/lib/libfloat.lib: add _fscmp to build
2743
2744 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2745
2746         * device/lib/_fs2slong.c: added mcs51 assembly version
2747         * device/lib/_fs2sint.c: added mcs51 assembly version
2748         * device/lib/_fs2schar.c: added mcs51 assembly version
2749         * device/lib/_fs2ulong.c: added mcs51 assembly version
2750         * device/lib/_fs2uint.c: added mcs51 assembly version
2751         * device/lib/_fs2uchar.c: added mcs51 assembly version
2752         * device/lib/_slong2fs.c: added mcs51 assembly version
2753         * device/lib/_sint2fs.c: added mcs51 assembly version
2754         * device/lib/_schar2fs.c: added mcs51 assembly version
2755         * device/lib/_ulong2fs.c: added mcs51 assembly version
2756         * device/lib/_uint2fs.c: added mcs51 assembly version
2757         * device/lib/_uchar2fs.c: added mcs51 assembly version
2758         * device/include/float.h: added #define to select asm vs c
2759
2760 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2761
2762         * device/lib/printf_fast.c: improvements to float output
2763         * device/include/float.h: add defines for assembly float library
2764         * device/lib/_fsget1arg.c: receive 1 float arg
2765         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2766         * device/lib/_fsnormalize.c: normalize a float
2767         * device/lib/_fsreturnval.c: return float, various helper routines
2768         * device/lib/_fsrshift.c: right shift a float's mantissa
2769         * device/lib/_fsswapargs.c: swap 2 floats
2770         * device/lib/Makefile.in: build these 6 new files for mcs51
2771         * device/lib/libfloat.lib: add these 6 files to the library
2772
2773 2004-12-26 Borut Razem <borut.razem AT siol.net>
2774
2775         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2776           built by gcc 3.4.2
2777
2778 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2779
2780         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2781           and fully reentrant and register bank neutral.
2782         * device/lib/printf_fast.c: added float (not enabled by default),
2783           added compact/slower integer (also not enabled by default),
2784           improved size/speed of fast integer code, other minor changes
2785         * device/include/stdio.h, device/lib/Makefile.in,
2786           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2787
2788 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2789
2790         * src/pic16/pcode.c: declaring variables other than at the start of a
2791           block is not supported in C by VC6.
2792
2793 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2794
2795         * applied a previous patch from Raphael Neider that wasn't included
2796         in the previous commits, which fixes infinite loops within jumptable
2797         improvements,
2798         * made some fixes that previous patches introduced
2799
2800 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2801
2802         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2803         that fixes an issue with AOP_PCODE asmop's offset,
2804         * (pic16_popCopyReg): update instance field too,
2805         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2806         function of pic port,
2807         * (genCmp, genAnd, genAssign),
2808         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2809
2810 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2811
2812         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2813         variables initial values to idata section,
2814         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2815         variables in some functions. This utilizes parmBytes field of iCode
2816         structure to hold the offset of the variable in stack. (might be
2817         able to use the stack field too?)
2818         * applied patch from Raphael Neider # ### , # ###
2819         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2820         variable initial values in idata section,
2821         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2822         for static variables with initial value
2823         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2824         applied fix in while loop from Raphael Neider.
2825
2826 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2827
2828         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2829         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2830         * src/ds390/ralloc.c (serialRegAssign): spill bits
2831         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2832         * support/Util/SDCCerr.c,
2833         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2834         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2835         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2836
2837 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2838
2839         * device/include/sdcc-lib.h: inserted LGPL, added includes
2840           asm/ds390/features.h and asm/mcs51/features.h
2841         * device/include/asm/default/features.h,
2842         * device/include/asm/gbz80/features.h,
2843         * device/include/asm/z80/features.h: added empty _AUTOMEM
2844           and _STATMEM
2845         * device/include/asm/ds390/features.h,
2846         * device/include/asm/mcs51/features.h: added files with defines for
2847           _AUTOMEM and _STATMEM indicating automatic and static storage class
2848         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2849         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2850         * src/SDCCicode.c (geniCodeCast),
2851         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2852         * src/SDCCloop.c (loopInduction): removed unused variable lr
2853         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2854           to convertToFcall to include char modulo (RFE 1065037), added check
2855           if left operand is unsigned and use abs of literal value
2856         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2857           as it doesn't work after conversion from peephole.def to peephole.rul
2858         * src/mcs51/gen.c (toBoolean): added check for size,
2859           (genModOneByte): optimized code for signed char modulo a literal
2860           power of 2 (thanks to Hubert Sack),
2861           (genRRC): removed unnecessary "clr c",
2862           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2863         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2864           jump optimization,
2865           swapped rules 256.c and 256.d,
2866           extended 256.d by using new multiple checks (thanks Erik),
2867           added rules 256.e and 256.f,
2868           updated rule 261.a and 261.b to new generated code
2869         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2870
2871 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2874           induction related bugs, including first part of bug #1074377
2875
2876 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2877
2878         * applied patch from bug-report #1076292,
2879         * applied patches for genAnd and Goto-optimizations for Raphael
2880         Neider,
2881         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2882         dump a less iCode information,
2883         * src/pic16/device.h (pic16_options_t): added field debgen,
2884         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2885         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2886         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2887         puclic,
2888         * (various functions): added macros FENTRY and FENTRY2 to functions,
2889         to emit function prologue,
2890         * (various functions): fixed indentation,
2891         * (genNearPointerGet): fixed loading of FSR0,
2892         * (genPackBits): applied patch from Raphael Neider to fix updating
2893         of FSR0 and touching only the modified bits,
2894         * src/pic16/genarith.c (various functions): added macros FENTRY to
2895         emit function prologue in comments,
2896         * src/pic16/pcode.h: added functions debugf2, debugf3,
2897         * src/pic16/ralloc.c: partial fix for packForPush caused
2898         segmentation fault,
2899
2900 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2901
2902         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2903           <stsp AT users.sourceforge.net> with reversed byte order
2904         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2905
2906 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2907
2908         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2909           bug #1074377
2910         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2911         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2912
2913 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2914
2915         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2916
2917 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2918
2919         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2920           conditions,
2921           (setFromConditionArgs): friendly operand parser for peephole rules,
2922           (operandBaseName, operandsNotRelated): new peephole condition
2923           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2924           architecture specific register naming into account, handles n-way
2925           comparisons, and supports quoted literals
2926         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2927
2928 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2929
2930         * src/mcs51/peeph.def: fixed bug #1076940
2931
2932 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2933
2934         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2935
2936 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2937
2938         Adding support for replacing ljmps with sjmps in jumptables
2939         generated for switch statements. For now you need to set the
2940         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2941         Now 4 algorithms for mcs51 jumptable generation are used:
2942         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2943         addresses loaded pc-relative for up to 112 cases and stack-pushing
2944         target addresses loaded with offset from dptr for up to 256 cases.
2945
2946         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2947         * src/mcs51/main.c: adapted constants for switch table generation
2948         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2949
2950 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2951
2952         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2953         * support/regression/tests/bug1057979.c: added test for bug 1073386
2954
2955 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2956
2957         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2958         compilers
2959
2960 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2961
2962         * src/pic16/device.h,
2963         * src/pic16/genarith.c,
2964         * src/pic16/glue.c,
2965         * src/pic16/main.c,
2966         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2967
2968 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2969
2970         Large cummulative patch for pic16 port.
2971         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2972         to call when a stack overflow occurs,
2973         * (malloc.h): added CVS Id tag,
2974         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2975         variable,
2976         * added libc directory. The current version of LibC contains string
2977         functions, ctype functions and macros and some functions of the
2978         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2979         be extensively tested in the future. Standard disclaimer here.
2980         Library is not automatically build yet. But one can build it by
2981         invoking 'make' inside the libc directory.
2982         * added ADC library under libio. Preliminary version yet.
2983
2984         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2985         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2986         aopForRemat() now and not by pic16_aopOp(),
2987         * (pic16_popGetTempReg): removed warning messgae when allocating
2988         temporary registers, its a buggy feature and will be removed,
2989         * (pic16_popGet): set register instance field in AOP_CRY,
2990         * (pic16_outBitC): fixed for results in size greater than 1,
2991         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2992         * (pic16_storeForReturn): optimized return of 0,
2993         * (genCmp): experimental code for new genCmp which uses PIC18's
2994         special compare&skip instructions. Initial tests fail some times
2995         with variables grater than 1 byte in size, so new code is disabled,
2996         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2997         a single bit,
2998         * (genCast): began a fix to optimize the casting of a bit to another
2999         bit, now assigning a bitfield to another bitfield will fail, sorry,
3000         * src/pic16/main.c: disabled the use of lr-support feature,
3001         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3002         * added some function prototypes, added function _debugf prototype,
3003         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3004         bits with offset (case PO_GPR_BIT),
3005         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3006         command line,
3007         * (isBankInstruction): modified to return 0 for no banking instruction,
3008         and 1 for banking instruction,
3009         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3010         caused stop processing pCodes after a inline assembly block,
3011         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3012         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3013         registers when it shouldn't,
3014         * src/pic16/ralloc.c (allocReg): add preliminary support for
3015         supporting a limited set of temporary registers,
3016
3017 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3018
3019         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3020           genDataPointerSet): ensure assignments always copy in MSB to LSB
3021           order,
3022           (loadRegFromAop): recognize CLRH optimization,
3023           (genFunction): optimize RECEIVE iCodes in reentrant functions
3024
3025 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3026
3027         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3028           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3029           selected.
3030         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3031         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3032           contiguous with data
3033
3034 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3035
3036         * device/lib/_gptrget.c (_gptrget),
3037         * device/lib/_gptrgetc.c (_gptrgetc),
3038         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3039           instead of sjmp to ret
3040         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3041           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3042
3043 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3044
3045         * .version: bumped version to 2.4.7
3046         * device/lib/_gptrget.c (_gptrget): is now _naked
3047         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3048         * device/lib/_gptrput.c (_gptrput): is now _naked
3049         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3050           (createFunction): fixed xstack
3051         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3052         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3053           or bit either,
3054           (geniCodeCritical): store original interrupt state in an iTemp bit
3055           var unless stack-auto
3056         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3057         * src/SDCCmain.c (setIncludePath): added include/target to search path
3058         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3059         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3060           prototype,
3061           (processFuncArgs): put bit vars in bit area
3062         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3063           unsaveRBank): fixed xstack,
3064           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3065           (genFunction, genEndFunction): fixed xstack,
3066           (genAssign): optimization don't walk backwards through mem
3067         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3068         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3069         * support/regression/Makefile: also make library (for stack-auto) when
3070           making "all" and added "test-mcs51-xstack-auto"
3071         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3072         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3073         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3074         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3075         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3076           make-library by MAKE_LIBRARY
3077         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3078           regression tests for xstack
3079         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3080         * support/regression/tests/critical.c: test for critical on mcs51
3081
3082 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3083
3084         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3085           built version of sdcc instead of installed version
3086
3087 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3088
3089         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3090         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3091           vprintf.c now
3092         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3093         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3094           WARNING: remove device/lib/build/z80/printf.o by hand when
3095           updating from previous build!
3096         * device/lib/z80/printf.c: updated comment
3097         * support/regression/tests/bug1057979.c: test all ports now
3098         * support/regression/tests/bug1065458.c: file added
3099
3100 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3101
3102         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3103           *_start and *_end symbols for static functions
3104
3105 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3106
3107         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3108           and search crt0.o in all library paths,
3109           (setIncludePath): proper handling of --nostdinc,
3110           (setLibPath): proper handling of --nostdlib
3111         * support/regression/Makefile,
3112         * support/regression/ports/ds390/spec.mk,
3113         * support/regression/ports/gbz80/spec.mk,
3114         * support/regression/ports/hc08/spec.mk,
3115         * support/regression/ports/mcs51/spec.mk,
3116         * support/regression/ports/mcs51-large/spec.mk,
3117         * support/regression/ports/mcs51-stack-auto/spec.mk,
3118         * support/regression/ports/z80/spec.mk: use include and lib files from
3119           built version of sdcc instead of installed version
3120         * doc/sdccman.lyx: fixed typo in --nostdinc
3121
3122 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3123
3124         * src/pic/pcode.c,
3125         * src/pic/device.c,
3126         * src/pic/ralloc.c,
3127         * src/pic/gen.c : added support to generate code for struct bit fields.
3128
3129 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3130
3131         * as/xa51/xa_version.h,
3132         * device/include/errno.h,
3133         * device/include/regc515c.h,
3134         * device/lib/_itoa.c,
3135         * device/lib/_ltoa.c,
3136         * device/lib/ser_ir_cts_rts.c,
3137         * sim/ucsim/xa.src/glob.cc,
3138         * sim/ucsim/xa.src/inst_gen.cc,
3139         * sim/ucsim/xa.src/xa_bit.cc,
3140         * sim/ucsim/xa.src/xa_sfr.cc,
3141         * sim/ucsim/z80.src/inst_dd.cc,
3142         * sim/ucsim/z80.src/inst_fdcb.cc,
3143         * support/scripts/keil2sdcc.pl,
3144         * src/pic16/pic16.dsp,
3145         * src/pic16/pic16a.dsp: corrected cvs line endings
3146         * device/lib/printf_large.c: fixed bug 1057979
3147         * src/pic16/gen.c: fixed non-C standard code
3148         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3149         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3150         * support/regression/ports/mcs51/support.c: reload T1 asap
3151         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3152           pdata use and clear idata startup behaviour
3153         * support/regression/tests/bug1057979.c: added
3154
3155 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3156
3157         * device/examples/ds390/ow390/ad26.h,
3158         * device/examples/ds390/ow390/cnt1d.h,
3159         * device/examples/ds390/ow390/crcutil.c,
3160         * device/examples/ds390/ow390/ownet.h,
3161         * device/examples/ds390/ow390/owsesu.c,
3162         * device/examples/ds390/ow390/swt12.h,
3163         * device/examples/ds390/ow390/swtoper.c,
3164         * device/examples/ds390/ow390/temp10.h,
3165         * device/examples/ds390/ow390/thermodl.c,
3166         * device/examples/ds390/tinitalk/tinitalk.dsp,
3167         * device/examples/ds390/tinitalk/tinitalk.dsw,
3168         * device/examples/mcs51/clock/hw.h,
3169         * device/examples/mcs51/simple2/go.bat,
3170         * device/examples/serialcomm/windows/serial.h,
3171         * device/examples/xa51/dummy.c,
3172         * device/examples/xa51/hello.c,
3173         * device/include/80c51xa.h,
3174         * device/include/at89x051.h: corrected cvs line endings
3175
3176 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3177
3178         * src/pic16/main.c (options): added command line --gstack, to trace
3179         stack over/under flows,
3180         * added pragma 'wparam' to allow passing first byte of function
3181         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3182         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3183         call to __gstack_test function and sets up the symbol as extern,
3184         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3185         * popaop): added call to pic16_testStackOverflow,
3186         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3187         wparamList list,
3188         * (genCall, genPcall): now all parameters are passed via stack
3189         except in functions that are pass to wparam pragma in which WREG is
3190         used too,
3191         * (genPcall): REENTRANT flag is checked to see if variable prototype
3192         contains reentrant keyword, don't call a non-reentrant function, via
3193         a reentrant function pointer or vice versa, functions are never
3194         passed via WREG,
3195         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3196         D.Winkler,
3197         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3198         SIGSEGV when accessing a NULL register stucture,
3199         * (pic16_printGPointerType): modified to handle UPPER modifier for
3200         function initializers, changed prototype of function to simpler one,
3201         * (pic16_printIvalFuncPtr): check to see if function is already
3202         added in externs list,
3203         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3204         optimized a move from W to SFR with a move to the same register
3205         later after a CALL,
3206         * device/lib/pic16/debug: NEW directory, contains debug features
3207         which are enabled when linking with libdebug.lib, currently command
3208         line option --gstack enables stack pointer tracing for over/under
3209         flow, corresponding sources are in debug/gstack
3210
3211 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3212
3213         * doc/sdccman.lyx: updated SDCC version,
3214         * (PIC16 port): update list of command line options,
3215         * src/pic16/device.h (structure pic16_options_t): added field gstack
3216         to enable stack overflow tracing on push/pops,
3217         * src/pic16/device.c (statistics structure): added statistics
3218         structure,
3219         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3220         pic16_dump_int_registers): increase statistics counters for each
3221         * variable which is encountered
3222         * (pic16_dump_usection): emit each .udata variable to its own udata
3223         section,
3224         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3225         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3226         parameters via stack, otherwise use old scheme,
3227         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3228         assembler output file,
3229         * src/pic16/main.c: added command line options --gstack to enable
3230         push/pop tracing for stack overflow,
3231         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3232         instructions): added size of each instruction,
3233         * (pic16_countInstruction): estimate size of instructions in
3234         the_pFile list, inline assembly blocks are not counted,
3235         * (pic16_FixRegisterBanking): trace previous register usage, when
3236         banksel optimizations is greater than 0, don't emit a redudant
3237         banksel directive,
3238
3239 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3240
3241         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3242         * src/pic16/ralloc.c : applied same fix for pic16.
3243         * src/pic/gen.c : tidied it up a little.
3244
3245 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3246
3247         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3248         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3249
3250 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3251
3252         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3253
3254 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3255
3256         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3257         non-reentrant function __modsint in the interrupt function (thus
3258         corrupting math operations during serial I/O)
3259         * device/lib/ser_ir.c: as above, changed buffersize
3260         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3261         256.c,d for zeroing
3262         * doc/Makefile: added option -t for rsync
3263
3264 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3265
3266         * src/SDCCast.h (struct ast),
3267         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3268
3269 2004-10-20 Borut Razem <borut.razem AT siol.net>
3270
3271         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3272         package
3273
3274 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3275
3276         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3277         makefile targets,
3278         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3279         support functions to replace long sequences of MOVFF's from access
3280         bank registers to stack and vice versa,
3281         * src/pic16/device.h: added new field opt_flags, where optimization
3282         flags can be set to enable certain features,
3283         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3284         * pBlock, (genFunction, genEndFunction): surroung loop for
3285         saving/loading used registers in stack with PC_INFO pCodes,
3286         INF_LREGS. Code in between can then be optimized by pCode optimizer
3287         to support function calls,
3288         * (genDataPointerSet): fixed bug which loaded float fields in
3289         structures with corrupt data,
3290         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3291         in a standard way debug info on stderr. Feature used for developing
3292         and debugging only,
3293         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3294         obsolete chunks of code,
3295         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3296         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3297         * pic16/src/pcode.c (pic16_newpCodeInfo,
3298         * (pic16_newpCodeOpLocalRegs),
3299         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3300         feature,
3301         * (pic16_pCodeConstString): printing of the initial value of a
3302         symbol as a comment is inhibited since parsing was already done by
3303         copyStr and output is corrupt,
3304         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3305
3306 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3309
3310 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3311
3312         * as/mcs51/lkarea.c: removed old K&R style,
3313           (lnksect): changed check on boundary error,
3314           (lnksect2): changed check on boundary error,
3315           (lnksect2): extend XSTK to end of page if size = 1
3316         * as/mcs51/lkmain.c: removed old K&R style,
3317           (Areas51): create l_IRAM symbol
3318         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3319         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3320           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3321         * device/lib/_mullong.c: added version to be compiled with xstack
3322         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3323         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3324         * device/lib/mcs51/crtxstack.asm: fixed comment
3325         * src/SDCCglue.c: maxInterrupts defaults to 0,
3326           (emitMaps): added pdata,
3327           (createInterruptVect): (re)moved default,
3328           (glue): added pdata,
3329           (glue): moved __start__xstack to XSTK with default size 1
3330         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3331           and options.float_rent when options.stackAuto is set,
3332           (linkEdit): only write XDATA_NAME if provided on command line
3333         * src/SDCCmem.h,
3334         * src/SDCCmem.c: added pdata
3335         * src/port.h: added pdata_name to PORT
3336         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3337           (saveRegisters, unsaveRegisters): removed usage of B,
3338           (genMinus): fixed accumulator clash,
3339           (genJumpTab): added comment, this needs another look
3340         * src/mcs51/gen.c: added check for "B in use" paranoia,
3341           added pushB() and popB()
3342         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3343           chance
3344         * src/avr/main.c,
3345         * src/ds390/main.c,
3346         * src/hc08/main.c,
3347         * src/mcs51/main.c,
3348         * src/pic/main.c,
3349         * src/pic16/main.c,
3350         * src/xa51/main.c,
3351         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3352           added PSEG (PAG,XDATA) or NULL to port specifier
3353         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3354         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3355           (_mcs51_genInitStartup): removed __start__xstack equ,
3356           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3357         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3358         * src/z80/gen.c (_rleAppend): fixed warnings
3359         * support/regression/tests/zeropad.c: added pdata test
3360         * .version: bumped to 2.4.6
3361
3362 2004-10-17 Borut Razem <borut.razem AT siol.net>
3363
3364         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3365         as a part of nightly build
3366
3367 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3368
3369         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3370         WREG holds the first byte function parameters,
3371         * (aopForSym): take special case for symbols which are in FARSPACE
3372         but in CODESPACE too,
3373         * (assignResultValue): modified to take into account _G.useWreg,
3374         * (genCall): don't use wreg for parameter passing when function is
3375         declared as reentrant, too, added optimization INCF to stack
3376         pointer when stack parameter count is 1,
3377         * (genFunction, genEndFunction): refurnished and fixed to not using
3378         wreg for passing parameters when function has varargs or is
3379         reentrant, fixed bug with symbol name compare for generating
3380         functions in absolute address,
3381         * (pic16_storeForReturn): refurnished,
3382         * (genCmp): began writing a new version of the function, not ready
3383         yet, therefore it is disabled,
3384         * (genAssign): do not read code memory when assigning a function to
3385         a pointer function,
3386         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3387         array of characters, not pointer,
3388         * (pic16initialComments): in debug mode emit an .ident directive for
3389         the assembler,
3390         * (_process_pragma): emit a new warning type (internal to pic16)
3391         when setting stack to default length, emit a similar warning when
3392         placing a function at absolute address and address is not word aligned
3393         * (_pic16_parseOptions): added 'return TRUE' statement,
3394         * (_pic16_linkEdit): if compiling a source, then add the source's
3395         file object, first in the list of objects to link,
3396
3397 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3398
3399         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3400         * src/pic/main.c : removed VC warning.
3401         * src/pic/gen.c : changed comment.
3402
3403 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3404
3405         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3406         reference to a deprecated symbol _GPTRREG was causing failure to
3407         link. Thanks G. M. Gallant for the info.
3408
3409 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3410
3411         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3412         comments for Bugs item #954788.
3413
3414 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3415
3416         * src/pic16/device.c (pic16_dump_gsection,
3417         * pic16_groupRegistersInSection): handle symbols declared to be in
3418         access bank differently,
3419         * src/pic16/gen.c (struct _G): added field resDirect,
3420         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3421         send values read from stack directly to result and don't allocate
3422         temporary values,
3423         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3424         same registers,
3425         * (pic16_sameRegsOfs): NEW,
3426         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3427         free because they were not allocated from temporary pool,
3428         * pic16_popRegFromString): workaround to fix a problem with
3429         allocating variables twice or never,
3430         * (genGenPointerGet): using PRODL instead of FSR0H,
3431         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3432         instead of FSR0H,
3433         * (genAssign): take advantage of the _G.resDirect flag,
3434         * (genCast): around line 11844, use mov2f instead of directly
3435         MOVFF'ing between operands to account for literal values,
3436         * src/pic16/genutils.c: some new debug functions for gpsim have been
3437         added,
3438         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3439         float with integer part only,
3440         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3441         place variables in access bank
3442         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3443         updated sources to reflect recent changes in gen.c
3444
3445 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3446
3447         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3448         sources that searched for headers in installation path, now the
3449         device/include/pic16 is used,
3450         * src/pic16/glue.c (pic16glue),
3451         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3452         .line directives if not in debug mode, this suppresses assembler's
3453         warnings for ignored directives
3454
3455 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3456
3457         * src/port.h: made reset_regparms prototype void parameter explicit.
3458         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3459         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3460         * doc/sdccman.lyx: documented warning disabling and how to use
3461           printf_large to make it print floats.
3462         * device/include/stdbool.h: NEW
3463         * device/lib/_atof.c,
3464         * device/lib/_divuint.c,
3465         * device/lib/_divulong.c,
3466         * device/lib/expf.c,
3467         * device/lib/printf_large.c,
3468         * device/lib/sincosf.c,
3469         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3470         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3471           a completely reentrant lib.
3472
3473 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3474
3475         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3476         * device/include/pic16/stdio.h: fixed bug with colon
3477
3478 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3479
3480         * device/include/pic16/stdio.h,
3481         * device/include/pic16/stdlib.h,
3482         * device/include/pic16/math.h: NEW
3483         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3484         declared as _naked to reduce overhead
3485         * device/lib/Makefile.in (target port-specific-objects-pic16):
3486         changed * to *.* so to ignore the CVS directory,
3487         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3488         stacked variables back in stack,
3489         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3490         corruption
3491
3492 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3493
3494         * .version: bumped version number to 2.4.5
3495         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3496         * support/Util/SDCCerr.c (messages structure): added entry for
3497         W_POSSBUG2
3498
3499         Large cumulative patch for pic16 port and libraries.
3500         * device/include/pic16/sdcc-lib.h,
3501         * device/include/pic16/stdarg.h,
3502         * device/include/asm/pic16/features.h,
3503         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3504         * device/include/pic16/float.h: changes reentrant keyword with
3505         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3506         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3507         updated target build-libraries to include objects from gptr,
3508         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3509         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3510         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3511         all function headings,
3512         * src/SDCCmain.c: added global parameter userIncDirsSet,
3513         * (parseCmdLine): when option -I is encountered add directory to
3514         userIncDirsSet too,
3515         * src/version.awk: added space between control and long,
3516         * src/pic16/NOTES: added some notes for the port,
3517         * src/pic16/gen.c: added prototype for mov2fp function,
3518         * (fReturnpic16[]): properly named return value registers,
3519         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3520         * (aopForSym): added code to handle symbols with onStack flag set,
3521         symbols onStack are allocated PTRSIZE bytes,
3522         * (aopFreeAsmop): handles special case where asmops are stack objects,
3523         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3524         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3525         added argument lock to trace flaws in allocating temporary registers
3526         when developing port,
3527         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3528         * (pic16_popRegFromString): reenabled allocating a direct register
3529         from string,
3530         * (assignResultValue): various beautifications,
3531         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3532         referenced function argument,
3533         * (genIpush): reenabled to allow stacked arguments, handles only
3534         ic->parmPush iCodes,
3535         * (genCall, genPcall): major changes to allow for variable argument
3536         functions, fixed a bug with falsely restoring stack pointer after
3537         returning from call,
3538         * (genFunction): pending code for critical function,
3539         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3540         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3541         * (genNearPointerGet): fixed bug with indirect reading, was always
3542         reading from INDF0
3543         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3544         pointers,
3545         * (genAddrOf): rewrote code to take address of a stacked function parameter
3546         * (genCast): fixed casting to generic pointer type,
3547         * src/pic16/gen.h: added AOP_STA,
3548         * (struct asmop): added field stk,
3549         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3550         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3551         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3552         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3553         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3554         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3555         generic pointers,
3556         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3557         and library paths,
3558         * (pic16_port structure): generic pointer size is set to 3,
3559         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3560         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3561         compiler warning,
3562         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3563         operand is an iTemp,
3564
3565 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3566
3567         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3568         * debugger/mcs51/simi.c: addapt new syntax of s51
3569
3570 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3571
3572         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3573         * src/pic16/pcode.c: commented out some calls to free() in order to
3574         fix bug #989576,
3575
3576 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3577
3578         * src/SDCCicode.h,
3579         * src/SDCCicode.c (isiCodeInFunctionCall),
3580         * src/avr/ralloc.c (selectSpil),
3581         * src/pic/ralloc.c (selectSpil),
3582         * src/pic16/ralloc.c (selectSpil),
3583         * src/ds390/ralloc.c (selectSpil),
3584         * src/hc08/ralloc.c (selectSpil),
3585         * src/xa51/ralloc.c (selectSpil),
3586         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3587         stack in the middle of a function call sequence (fixes bug #1020268)
3588         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3589         costs associated with the minimum switch case.
3590
3591 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3592
3593         * src/SDCC.lex: fixed bug #1030549
3594
3595 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/SDCCcse.h (struct cseDef),
3598         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3599         over a function call if the CSE is derived from a symbol whose
3600         address has been taken (fixes bug #1029883)
3601         * support/regression/tests/bug-1029883: a new regression test for
3602         this bug
3603
3604 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/hc08/gen.c (emitinline): fixed bug #1029778
3607         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3608         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3609         and starts toward RFE #905167)
3610
3611 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3612
3613         * src/pic16/gen.c (mov2f): New function to move an operand to
3614         another without considering if it is a literal or a register,
3615         * (pic16_sameRegs): don't check if they are both AOP_REG,
3616         * (AccRsh): removed andmask=0 lines,
3617         * (genLeftShift): duplicated to be improved in future versions,
3618         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3619         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3620         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3621         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3622         * (insertBankSwitch): fixed inserting banksel directives algorithm
3623         for instructions that follow a skip instruction, this fixes a report
3624         for broken subtraction code generation,
3625         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3626         iCode is a left op, just in case result and right share the same
3627         registers
3628
3629 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3630
3631         * src/hc08/main.c,
3632         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3633         preservation of HX
3634         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3635         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3636         on 2004-09-12; it was buggy
3637
3638 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3639
3640         * src/SDCCsymt.h: removed RESULT_CHECK
3641         * src/SDCCast.c,
3642         * src/SDCCglue.c,
3643         * src/SDCCval.c,
3644         * src/pic/glue.c,
3645         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3646
3647 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3648
3649         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3650         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3651         configuration values no more rejected by compiler, they are assigned
3652         to configuration registers with a warning message instead,
3653         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3654         the for-loop so last conf register is emitted too,
3655         * (_pic16_initPaths): link library libsdcc.lib by default,
3656         * (_hasNativeMulFor): modified test for multiplication according to
3657         Raphael Neider's remarks. Integer multiplication is also done with
3658         support functions,
3659         * device/include/pic16/pic18fregs.h: corrected type error in while
3660         testing and including 18f6720 header file
3661
3662 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3663
3664         * src/pic16/device.h (pic16_options): removed field use_crt,
3665         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3666         until an optimization to handle single bits is added,
3667         * (pic16_loadFSR0): moved before genUnpackBits,
3668         * (genAnd): some white lines removed,
3669         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3670         leave_reset flags in pic16_options when using crt modules,
3671
3672 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3673
3674         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3675           for bugs 898889 & 979599. Also used some safer print instructions.
3676
3677 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3678
3679         * src/pic16/device.h (pic16_options_t): added field use_crt,
3680         crt_name, no_crt,
3681         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3682         catch a probable future bug,
3683         * src/pic16/gen.c: aopIdx function commented out,
3684         * (genAssign): commented out old code which used aopIdx,
3685         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3686         code, added if conditionals to take into account the --use-crt
3687         command line options,
3688         * src/pic16/main.c (pic16_optionsTable): added new command line
3689         options, --use-crt= and --no-crt,
3690         * (_pic16_linkEdit): now the proper crt object is added in the
3691         linker command line except than when --no-crt is specified,
3692         * src/pic16/pcode.c,
3693         * src/pic16/pcode.h: added some structures and functions for a new
3694         optimization scheme to compansate for instruction overhead between
3695         same iCodes, this scheme is currently under development and is not
3696         working in any way,
3697         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3698         to && operator,
3699         * device/lib/pic16/startup/crt0i.c,
3700         * device/lib/pic16/startup/crt0iz.c: added global char variable
3701         __uflags to force the generation of an idata section
3702
3703 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3704
3705         * doc/Makefile,
3706         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3707         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3708
3709 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3710
3711         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3712         Frieder) and clarified the default code optimization mode
3713
3714 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3715
3716         * src/SDCC.lex (doPragma, process_pragma),
3717         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3718         "opt_code_size", and "opt_code_balanced"
3719         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3720         regrouped options by category, added support for category headers
3721         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3722         and "--opt-code-size"
3723         * doc/sdccman.lyx: documented these new options and pragmas
3724         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3725         preference into account
3726
3727 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3728
3729         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3730           geniCodePreDec): Fixed bug 904237 by generating a warning
3731         * src/SDCCerr.h,
3732         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3733
3734 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3735
3736         * src/pic/device.c : When no max ram set validate full memory range.
3737         * src/pic/pcode.c,
3738         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3739
3740 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3741
3742         * device/lib/_gptrget.c,
3743         * device/lib/_gptrput.c: updated comment
3744         * device/lib/calloc.c,
3745         * device/lib/free.c,
3746         * device/lib/malloc.c,
3747         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3748         * src/SDCCcse.c (cseBBlock),
3749         * src/SDCCicode.c (printOperand, geniCodeArray),
3750         * src/SDCCicode.h (struct operand): fixed bug 868103
3751         * support/regression/tests/bug-868103.c: added
3752         * src/SDCCast.c (searchLitOp),
3753         * src/SDCCcse.h (struct cseDef),
3754         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3755         * src/SDCCicode.h (struct operand),
3756         * src/SDCCsymt.h (struct sym_link),
3757         * src/avr/gen.c (hasInc),
3758         * src/ds390/gen.c (hasInc),
3759         * src/hc08/gen.c (genPlusIncr, hasInc),
3760         * src/mcs51/gen.c (hasInc),
3761         * src/pic16/glue.c (pic16_printIvalChar),
3762         * src/pic16/ralloc.c (regWithIdx),
3763         * src/xa51/gen.c (hasInc) : removed warnings
3764         * src/SDCCast.c (createBlock): added comment ???
3765         * src/hc08/ralloc.c: updated comments
3766
3767 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3768
3769         * doc/sdccman.lyx: updated section on switch statements, added
3770         section about semaphore locking
3771         * doc/Makefile: added option -info for latex2html
3772         * device/lib/_gptrget.c,
3773         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3774
3775 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3776
3777         * src/pic/device.h,
3778         * src/pic/device.c,
3779         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3780          maxram is less than 0x100.
3781
3782 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3783
3784         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3785
3786 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3787
3788         * src/port.h,
3789         * src/mcs51/main.c,
3790         * src/ds390/main.c,
3791         * src/z80/main.c,
3792         * src/hc08/main.c,
3793         * src/pic/main.c,
3794         * src/pic16/main.c,
3795         * src/avr/main.c,
3796         * src/xa51/main.c
3797         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3798         a jump table is the best form for a switch statement, including
3799         automatic insertion of missing cases to make the case range
3800         continuous. Developed in collaboration with Frieder Ferlemann.
3801
3802 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3803
3804         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3805         accumulator result if it needs sign extension
3806
3807 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3808
3809         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3810
3811 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3812
3813         * device/lib/gbz80/printf.c,
3814         * device/lib/z80/printf.c: removed define for NULL
3815
3816 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3817
3818         * as/xa51/xa_link.c,
3819         * device/examples/ds390/ow390/ad26.c,
3820         * device/examples/ds390/ow390/cnt1d.c,
3821         * device/examples/ds390/ow390/counter.c,
3822         * device/examples/ds390/ow390/ds2480.h,
3823         * device/examples/ds390/ow390/ds2480ut.c,
3824         * device/examples/ds390/ow390/findtype.c,
3825         * device/examples/ds390/ow390/gethumd.c,
3826         * device/examples/ds390/ow390/owllu.c,
3827         * device/examples/ds390/ow390/ownetu.c,
3828         * device/examples/ds390/ow390/swt12.c,
3829         * device/examples/ds390/ow390/swtloop.c,
3830         * device/examples/ds390/ow390/temp.c,
3831         * device/examples/ds390/ow390/temp10.c,
3832         * device/examples/ds390/ow390/thermo21.c,
3833         * device/examples/ds390/ow390/tinilnk.c,
3834         * device/examples/ds390/ow390/tstfind.c,
3835         * device/examples/serialcomm/windows/serial.cpp,
3836         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3837         * device/include/reg51.h: fixed line endings for cvs
3838
3839 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3840
3841         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3842         packRegsForAccUse, packRegisters): new accumulator register
3843         packing algorithm
3844         * support/regression/ports/hc08/support.c (_putchar): suppress
3845         warning of unused variable
3846         * src/SDCCicode.c: added SWAP entry to codeTable
3847
3848 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3849
3850         * device/lib/sprintf.c: forgot to add this file before previous commit
3851
3852 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * src/pic16/gen.c (genPackBits): added operand right in function
3855         parameters, load result directly if p_type is POINTER (that is
3856         called by genNearPointerSet)
3857         * (genUnPackBits): added operand left in function parameters,
3858         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3859         FSR0 if accessing bitfields,
3860
3861 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3862
3863         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3864           _print_format; updated printf, sprintf, vsprintf
3865         * device/include/asm/default/features.h: corrected comment/define
3866         * device/lib/Makefile.in: added sprintf.c
3867         * device/lib/libsdcc.lib: added sprintf module
3868         * device/lib/printf_large.c,
3869         * device/lib/vprintf.c,
3870         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3871           into these 3 files
3872         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3873         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3874         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3875           hc08 test
3876         * support/regression/tests/zeropad.c: define idata as data for hc08
3877
3878 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3879
3880         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3881         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3882         labels are referenced at least once (even if a reference is not found)
3883         * src/hc08/gen.c (emitcode): set isComment flag for comments
3884         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3885         loads), rules 6a..6b (optimize jumps to return)
3886
3887 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3888
3889         * device/lib/acosf.c (acosf),
3890         * device/lib/asinf.c (asinf),
3891         * device/lib/atanf.c (atanf),
3892         * device/lib/ceilf.c (ceilf),
3893         * device/lib/cosf.c (cosf),
3894         * device/lib/coshf.c (coshf),
3895         * device/lib/cotf.c (cotf),
3896         * device/lib/fabsf.c (fabsf),
3897         * device/lib/floorf.c (floorf),
3898         * device/lib/log10f.c (log10f),
3899         * device/lib/logf.c (logf),
3900         * device/lib/sinf.c (sinf),
3901         * device/lib/sinhf.c (sinhf),
3902         * device/lib/sqrtf.c (sqrtf),
3903         * device/lib/tanf.c (tanf),
3904         * device/lib/tanhf.c (tanhf),
3905         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3906         replaced all instances of "reentrant" in the library functions
3907         defined in math.h with this macro.
3908         * support/regression/tests/float_trans.c: reenabled test for hc08
3909
3910 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3911
3912         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3913         erroneously deleted
3914
3915 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3916
3917         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3918         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3919         multi-byte volatile operands are used
3920         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3921         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3922         initialization to area GSINIT0 so that it would always precede
3923         any static initializers in GSINIT
3924         * support/regression/tests/zeropad.c: fixed idata define for hc08
3925         * support/regression/tests/bug-927659.c,
3926         * support/regression/tests/float_trans.c: disabled tests for hc08
3927         pending missing library routines
3928         * .version: increased version number to 2.4.4 - hc08 port now passes
3929         regression tests
3930
3931
3932 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3933
3934         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3935         * Makefile.common.in,
3936         * as/Makefile,
3937         * as/hc08/Makefile.in,
3938         * as/mcs51/Makefile.in,
3939         * as/z80/Makefile.in,
3940         * debugger/mcs51/Makefile.in,
3941         * device/include/Makefile.in,
3942         * device/lib/Makefile.in,
3943         * doc/Makefile,
3944         * link/Makefile,
3945         * link/z80/Makefile.in,
3946         * packihx/Makefile.in,
3947         * sim/ucsim/main_in.mk,
3948         * sim/ucsim/avr.src/Makefile.in,
3949         * sim/ucsim/doc/Makefile.in,
3950         * sim/ucsim/gui.src/serio.src/Makefile.in,
3951         * sim/ucsim/hc08.src/Makefile.in,
3952         * sim/ucsim/s51.src/Makefile.in,
3953         * sim/ucsim/xa.src/Makefile.in,
3954         * sim/ucsim/z80.src/Makefile.in,
3955         * src/Makefile.in,
3956         * support/cpp2/Makefile.in,
3957         * support/librarian/Makefile,
3958         * support/makebin/Makefile: added DESTDIR to the install path proposed
3959         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3960         * doc/sdccman.lyx: added DESTDIR documentation
3961
3962 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3963
3964         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3965         instruction for interrupt handlers, use fast returns when returning
3966         from high priority interrupts
3967
3968 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3969
3970         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3971         code generation
3972         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3973         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3974         bugs, ported much of Bernhard's code from mcs51
3975         * src/mcs51/gen.c (genSend),
3976         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3977         than one when calling a reentrant function
3978         * device/lib/_mullong.c: defined an alternate struct layout for big
3979         endian ports (hc08)
3980
3981 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3982
3983         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3984         test
3985
3986 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3989         are sane and complete before asking the port its prefered parameter
3990         passing method (fixes bug #1017633)
3991         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3992         and _ret3
3993
3994 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3997         problem in bitfields >= 8 bits.
3998
3999 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4000
4001         * src/SDCCsymt.c: undid changes that were not meant to be committed
4002
4003 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4004
4005         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4006
4007 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4008
4009         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4010           copied and wrong bit got inverted
4011
4012 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4013
4014         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4015         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4016         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4017         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4018         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4019         assignments to bitfields at known addresses
4020         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4021         reads from bitfields at known addresses
4022         * src/hc08/ralloc.c (packRegisters),
4023         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4024         genhc08Code): optimize pointer get values used as conditionals
4025         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4026         and branch
4027
4028 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4029
4030         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4031         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4032         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4033         as conditionals
4034
4035 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4036
4037         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4038
4039 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4040
4041         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4042         related problems
4043
4044 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4045
4046         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4047
4048 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4049
4050         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4051         mcs51 port
4052
4053 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4054
4055         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4056
4057 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4058
4059         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4060         cases use more compact code.
4061
4062 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4063
4064         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4065
4066 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4067
4068         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4069
4070 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4071
4072         * src/SDCCsymt.h,
4073         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4074         parameter of changePointer() from symbol* to sym_link*
4075         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4076         * src/SDCCsymt.c (compareType): void* type is castable to other
4077         pointers, but not necesarily an exact match.
4078         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4079         is no longer blindly treated as an exact match.
4080         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4081
4082 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4083
4084         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4085
4086 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4087
4088         * src/pic/gen.c,
4089         * src/pic/pcode.c,
4090         * src/pic/ralloc.h,
4091         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4092
4093 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4094
4095         * src/pic/device.c,
4096         * src/pic/device.h,
4097         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4098
4099 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4100
4101         * src/mcs51/gen.c (emitcode): fixed bug #992819
4102
4103 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4104
4105         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4106           there's no need to make it worse
4107
4108 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4109
4110         * src/mcs51/ralloc.c (deassignLR),
4111         * src/ds390/ralloc.c (deassignLR),
4112         * src/hc08/ralloc.c (deassignLR),
4113         * src/z80/ralloc.c (deassignLR),
4114         * src/pic/ralloc.c (deassignLR),
4115         * src/pic16/ralloc.c (deassignLR),
4116         * src/avr/ralloc.c (deassignLR),
4117         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4118         rlivePoint): fixed another part of bug #971834
4119
4120 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4121
4122         * src/z80/main.c: enabled "critical" keyword
4123         * src/z80/mappings.i,
4124         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4125         functions (fixes bug #979646)
4126         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4127
4128 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4129
4130         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4131           such as c:\mydir.
4132
4133 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4134
4135         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4136           doesn't disable too much optimizations
4137
4138 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4139
4140         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4141
4142 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4143
4144         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4145
4146 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4147
4148         * src/pic/gen.c tidied up tabs
4149         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4150         * src/pic/main.c tidied up tabs
4151         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4152         * src/pic/pcoderegs.c tidied up tabs
4153         * src/pic/ralloc.c tidied up tabs
4154
4155 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4156
4157         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4158         to S_FIXED for pic16 port and when symbol is not in level 0,
4159         allocate for S_REGISTER storage class and pic16 port, too,
4160         * src/pic16/device.h: prototype for checkSym,
4161         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4162         * (pic16_assignConfigWordValue): test the value and the mask to
4163         validate that the value is suitable for the configuration word,
4164         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4165         collect extern declared symbols, don't emit symbol twice, check
4166         first if symbol is in publics set first,
4167         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4168         * added command line '--fstack' which enables an experimental
4169         feature for stack access, too buggy to be used yet...
4170         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4171         * (pic16_allocDirReg): when register has storage class S_REGISTER
4172         allocate in pic16_dynAccessRegs,
4173         * device/include/pic16/pic18f????.h: modified configuration word
4174         naming convention, words started as CONFIG0H but should be CONFIG1H
4175
4176 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4177
4178         * device/include/mcs51reg.h: fixed bug 970993
4179
4180 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4181
4182         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4183         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4184         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4185         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4186         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4187         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4188           error/warning numbers,
4189           added function setWarningDisabled()
4190         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4191         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4192           _memcmp.c _memmove.c calloc.c realloc.c free.c
4193         * support/regression/tests/malloc.c: added tests for new functionality
4194         * support/regression/tests/zeropad.c: added tests for truncated initializers
4195           and initialized char arrays starting with '\x0'
4196         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4197
4198 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4199
4200         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4201
4202 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4203
4204         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4205         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4206         peephole 177.e. Thanks to anonymous
4207
4208 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4209
4210         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4211         function isn't used in the source but referenced as a
4212         variable initializer then declare it as extern in .asm file
4213
4214 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4215
4216         * .version: increased version number to 2.4.3
4217
4218         Adding version extension according to ChangeLog CVS revision
4219         * src/Makefile.in (target all): added dependency 'version.h'
4220         * (rule version.h): added rule to create version.h from ChangeLog,
4221         * (rule dep): added dependency version.h,
4222         * src/version.awk: AWK script to create version.h
4223         * src/SDCCdwarf2.c (dwWriteModule),
4224         * src/SDCCglue.c (initialComments),
4225         * src/SDCCmain.c (printVersionInfo): modified to write after
4226         version string the version extension number,
4227         * src/SDCCutil.c: included "version.h"
4228         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4229         number,
4230         * src/SDCCutil.h: added prototype for getBuildNumber
4231
4232         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4233         includeDirsSet, too,
4234         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4235         const char [] is found in function prototype...
4236
4237         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4238         moving to WREG with source is already in WREG,
4239         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4240         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4241         * (aopForSym): stack'ed symbols are partially supported, added
4242         if-clause to support symbols in FARSPACE,
4243         * (sameRegs): added test for AOP_ACC to see if registers are same,
4244         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4245         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4246         * (pic16_popRegFromString): will not allocate a new register if it
4247         doesn't find one by name, bug may have introduced...
4248         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4249         * (genIpush): revived to use pic16 port's stack,
4250         * (genAddrOf): added incomplete case for stack'ed operand,
4251         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4252         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4253         can handle multibyte operands,
4254         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4255         * (pic16initialComments): added message for MPLAB compatibility
4256         mode enabled,
4257         * src/pic16/main.h: prototype for pic16_mplab_comp,
4258         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4259         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4260         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4261         because of increased complexity of procedure,
4262         * (_process_pragma): stack pragma changed to format 'stack pos len',
4263         emit symbol '_stack_end' to conform with gplink,
4264         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4265         to search for register,
4266         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4267         PO_GPR_REGISTER,
4268         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4269         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4270         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4271         case for PO_GPR_REGISTER,
4272         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4273         dies, the new era is ahead !...
4274         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4275         pic16_dynInternalRegs,
4276         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4277         * (pic16_allocDirReg): minor optimizations and bug fixes,
4278         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4279
4280         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4281         load stack and frame pointer with address of 'stack_end' symbol
4282
4283 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4284
4285         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4286         without source code but only variable initializers
4287
4288 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4289
4290         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4291         external are not declared as extern to reduce overhead while linking
4292
4293 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4294
4295         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4296
4297 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4298
4299         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4300           Yee Keat for the patch
4301         * src/SDCCast.c (decorateType): fixed bug #979599
4302         * src/ds390/gen.h: removed local fReturnSizeDS390
4303         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4304         * src/ds390/gen.c (genAnd, genOr, genXor),
4305         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4306
4307 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4308
4309         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4310         add relFilesSet to $3, manipulate $2 to handle linking of object
4311         files without source files in command line,
4312         * device/include/pic16 (all headers): added ID location macros,
4313         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4314         entries for ID location bytes,
4315         * (pic16_assignIdByteValue): NEW,
4316         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4317         added field dumpcalltree to pic16_options_t,
4318         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4319         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4320         emitting rFalseIfx label after check_carry label,
4321         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4322         pic16_emitDIRegs), NEW
4323         * (pic16glue): dump .calltree file when option --calltree found,
4324         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4325         * (_pic16_genAssemblerPreamble): emit ID locations after
4326         configuration registers,
4327         * (pic16_linkCmd): modifications of the link command,
4328         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4329         * (pic16_pCodeInitRegisters): don't init stack registers,
4330         * (pic16_findPrevInstruction): fixed bug,
4331         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4332         bug with immediate registers,
4333         * (buildCallTree): traces stack push and pop,
4334         * (pct2): dump also stack usage for each function,
4335         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4336         * (pic16_allocDirReg): various modifications,
4337         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4338         fixed to 1,
4339
4340 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4341
4342         * src/pic16/pcode.c: removed buggy double colon
4343
4344 2004-07-01 Borut Razem <borut.razem AT siol.net>
4345
4346         * support/scripts/sdcc.nsi: added include/pic16 to setup
4347
4348 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4349
4350         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4351         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4352         target 'clean',
4353         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4354         specific command line arguments. Also added sample lkr script
4355         for placing a variable at a specific memory bank.
4356         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4357         at a specific memory bank,
4358         * (pic16_dump_isection): fixed bug which caused string literals to
4359         be omitted when dumping idata section,
4360         * (pic16_groupRegistersInSection): added code to handle registers
4361         in specific memory banks,
4362         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4363         public, all references are renamed too,
4364         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4365         AOP_DPTR2,
4366         * (pic16_storeForReturn): added case to handle when dest is WREG,
4367         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4368         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4369         pic16_rel_udata, check to see if that register is marked as being
4370         a member of a specific memory bank,
4371         * (pic16_printIvalCharPtr): added code to add string literals either
4372         to code or the idata sections,
4373         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4374         also accept the 'udata' pragma,
4375         * src/pic16/main.h: new structure types sectName and sectSym
4376         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4377         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4378         * (pic16_findPrevInstruction): fixed, it returned nothing,
4379         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4380         instruction combinations,
4381         * (pic16_FixRegisterBanking): heavily reorganised,
4382         * (pic16_AnalyzeBanking): if generating banksel directives is
4383         disabled, then don't call FixRegisterBanking at all,
4384         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4385         completely removed,
4386         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4387
4388 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4389
4390         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4391         Phuah Yee Keat <yk.phuah AT nestac.com>
4392
4393 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4394
4395         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4396         correctly the IVT even if it is relocated to some other location
4397
4398 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4399
4400         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4401         * device/include/pic16/pic18f2220.h: NEW,
4402         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4403         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4404         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4405         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4406         nodefaultlibs, ivt_loc is the location of the interrupt vector
4407         table, and nodefaultlibs signs that default libraries should not be
4408         linked in link stage,
4409         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4410         according to --ivt-loc argument,
4411         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4412         when pragma stack is found,
4413
4414 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4415
4416         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4417         256 (range check), 257 (do while), 258.a-f (bit banging
4418         f.e. on 3-wire SPI bus)
4419
4420 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4421
4422         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4423         variables used exclusively within a loop
4424
4425 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4426
4427         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4428
4429 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4430
4431         * src/SDCClrange.c (computeClash): fixed bug #971834
4432
4433 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4434
4435         * src/mcs51/gen.c (genCmp): fixed bug #975903
4436         * src/hc08/gen.c (operandsEqu),
4437         * src/ds390/gen.c (operandsEqu),
4438         * src/z80/gen.c (operandsEqu),
4439         * src/pic/gen.c (operandsEqu),
4440         * src/pic16/gen.c (operandsEqu),
4441         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4442         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4443
4444 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4445
4446         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4447
4448 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4449
4450         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4451         default case in switch statement,
4452         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4453         to eliminate problem with initialisation of pointers, but problem
4454         still exists,
4455         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4456         * (emitStaticSegment): removed various lines emitting debug info,
4457         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4458         added processor registers for utilizing EEPROM,
4459         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4460         configurable and set 8
4461
4462 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4463
4464         * .version: increased version number to 2.4.2,
4465
4466         Cumulative patch for pic16 port
4467         * src/pic16/device.c: changed scheme to dump initial values for
4468         variables in idata segment, all print_idata* functions were removed,
4469         now the pic16_printIval* will be called,
4470         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4471         * _pic16_printPointerType, pic16_printPointerType,
4472         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4473         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4474         NEW, similar to the respective functions in SDCCglue.c,
4475         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4476         way, emitting hex bytes,
4477         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4478
4479 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4480
4481         * src/avr/ralloc.c (serialRegAssign),
4482         * src/xa51/ralloc.c (serialRegAssign),
4483         * src/pic/ralloc.c (serialRegAssign),
4484         * src/pic16/ralloc.c (serialRegAssign),
4485         * src/hc08/ralloc.c (serialRegAssign),
4486         * src/z80/ralloc.c (serialRegAssign),
4487         * src/ds390/ralloc.c (serialRegAssign),
4488         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4489
4490 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4491
4492         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4493         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4494
4495 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4496
4497         Cumulative patch for pic16 port:
4498         * src/pic16/device.h (typedef PIC16_device) modified fields for
4499         defining microcontrollers,
4500         * src/pic16/device.c: added new info for all devices in Pics16 array,
4501         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4502         to be optimised out by the pCode optimiser,
4503         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4504         specially, bug reported by G.M. Gallant,
4505         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4506         as force'd so that cannot be optimised out by pCode optimiser,
4507         * src/pic16/pcode.c,
4508         * src/pic16/pcodepeeph.c,
4509         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4510         they are disabled by default, but can be enabled explicit with
4511         command argument --denable-peeps, for testing,
4512         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4513         --pomit-ivt in COMPILE_FLAGS
4514
4515 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4516
4517         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4518           compilation on MSVC
4519
4520 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4521
4522         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4523
4524 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4525
4526         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4527         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4528
4529 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4530
4531         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4532         would only assign 0x300001 register.
4533
4534 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4535
4536         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4537         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4538
4539 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4540
4541         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4542         for ds80c400
4543         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4544         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4545         added peephole 254 (left shift), 255 (jump table)
4546
4547 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4548
4549         * device/lib/Makefile.in: removed comment line with model-pic16,
4550         * (target port-specific-objects-pic16): the libraries and objects
4551         are copied to the build directory form the device/lib/pic16/bin
4552         directory
4553
4554         Cumulative patch concerning pic16 port:
4555         * library directory has been re-organized,
4556         * added support for PIC18F1220,
4557         * added headers and library sources for chips 18f1220,18f6520,
4558         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4559
4560         * configuration registers setting has changed, now each supported
4561         device has a complete description of the registers it uses,
4562         * all initialisations are moved to idata sections, these section
4563         can be absolute or relocatable,
4564         * fixed initialisation of codespace variables,
4565         * fixed warning about PCLATU and gpsim,
4566         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4567         * (genAssign): use table reads when assigning from variables in codespace,
4568         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4569         char/int variables placed in codespace,
4570         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4571         registers set in .asm file, no need for --pomit-config-words anymore,
4572         * (pic16glue): some 8051 legacy segments are commented out
4573         (to be removed completely),
4574         * added support for alternative assembler and linker with --asm=
4575         and --link= command line arguments,
4576         * peepholes are disabled automatically in the port, no need to
4577         specify on command line,
4578         * port supports natively char/int/long multiplication, but converts
4579         all divisions to support functions,
4580         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4581         to the file set in variable $2,
4582         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4583         strings in ASCII format and not in hex,
4584         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4585         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4586         allocate proper register if iCodes aren't temporary,
4587
4588 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4589
4590         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4591
4592 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4593
4594         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4595         is commented out
4596
4597 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4598
4599         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4600         computed address is reused
4601         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4602         multi-byte bitfields
4603
4604 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4605
4606         * src/z80/gen.c: (genArrayInit): must check for pointers too
4607
4608 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4609
4610         * support/regression/tests/zeropad.c: never meant to commit the
4611           nestedstruct test: removed, added check for GCC version
4612
4613 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4614
4615         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4616         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4617         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4618           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4619           bugs 928906 and 954082 half-empty initializers
4620         * src/SDCCsymt.h,
4621         * src/SDCCsymt.c (getAllocSize): added for above fix
4622         * src/z80/gen.c (genArrayInit): fixed bug 741044
4623         * support/regression/tests/zeropad.c: added tests
4624
4625 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4626
4627         * src/pic16/device.c (pic16_dump_section): corrected bug which
4628         caused some symbols of the libraries to be misplaced
4629
4630 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4631
4632         * src/pic16/glue.c,
4633         * src/pic16/ralloc.h,
4634         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4635         to fix conflict with pic port
4636
4637 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4638
4639         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4640         externs configuration variables,
4641         * src/pic16/ralloc.h,
4642         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4643         prototype in header, commented out some debug messages
4644
4645 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4646
4647         * src/pic16/glue.c,
4648         * src/pic16/main.c,
4649         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4650         for gpasm COFF object generation. Thanks to D. Hawkins for
4651         his patch info
4652
4653 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4654
4655         * src/ds390/main.c,
4656         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4657         Brock for spotting this)
4658         * src/ds390/gen.c (genEndFunction),
4659         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4660         interrupt handler and critical. Disable push/pop optimizations when
4661         peephole optimizations disabled.
4662
4663 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4664
4665         Updated pic16 library sources and headers.
4666         * device/lib/pic16/pic18f*/ ,
4667         * device/include/pic16/*.h: modified to handle structured SFR
4668         definitions
4669
4670 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4671
4672         * src/port.h (PORT structure): added hook initPaths, now each
4673         port can declare its own default search paths,
4674         which can been seen with the --print-search-dirs option,
4675         see pic16 port for example,
4676         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4677         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4678         * (doPrintSearchDirs): NEW, replaces in a central manner the
4679         printing of search dirs which was split in set*Paths functions,
4680         * (main): added call to port->initPaths and doPrintSearchDirs,
4681         * src/avr/main.c,
4682         * src/ds390/main.c,
4683         * src/hc08/main.c,
4684         * src/izt/i186.c,
4685         * src/izt/tlcs900h.c,
4686         * src/mcs51/main.c,
4687         * src/pic/main.c,
4688         * src/pic16/main.c: modified port structures to reflect addition of
4689         initPaths hook,
4690
4691         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4692         * (pic16_dump_section): for registers in same address reserve memory once,
4693         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4694         to no_banksel,
4695         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4696         result is greater in size than right or left,
4697         * (pic16_genUMult8X8_8): there are some cases where the result can
4698         be 16 bits size, so handle these,
4699         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4700         * (pic16_outBitC): modified to emit pcodes,
4701         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4702         or not,
4703         * (genDivOneByte): implemented algorithm to divide 8-bits,
4704         * (genCmp): uncommented goto, but issues still exist,
4705         * (genAnd): fixed a bug with variables >8bits,
4706         * (genPackBits): optimization added that uses BCF/BSF to change a
4707         single bit,
4708         * (genAssign): fixed bug when assigning floating point literals,
4709         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4710         __sdcc_gsinit_startup label,
4711         * src/pic16/main.c (_pic16_init): removed search directory
4712         initialisations,
4713         * (_pic16_initPaths): NEW, used to initialise search directories,
4714         * (_hasNativeMulFor): support functions for all except char/int
4715         multiplication, and char division,
4716         * (PIC16_port struct): modified entry for native mul support,
4717         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4718         no_banksel option,
4719         * (buildCallTree): call to register_usage is ifdef'ed out,
4720
4721 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4722
4723         * device/include/string.h: applied Stas Sergeev's patch to make this
4724         header file compatible with the preprocessor -Wundef option
4725         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4726         failure (fixes bug #941458)
4727
4728 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4729
4730         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4731         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4732         that the variable, not the function, should be static
4733         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4734         to be consistent with non-literal case
4735
4736 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4737
4738         * src/SDCCast.c (isConformingBody): fixed bug #949967
4739         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4740         convilong): fixed bug #952086
4741
4742 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4743
4744         * src/SDCCmem.c (allocVariables): fixed bug #955321
4745
4746 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4747
4748         * src/hc08/main.c (_hc08_genAssemblerEnd),
4749         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4750         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4751         completely eliminated the use of a temporary file
4752         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4753         when more than one file linked
4754         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4755
4756 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4759         which fixes bug #543481
4760         * support/regression/tests/bug-751703.c: fixed comments left from a
4761         cut and paste error
4762         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4763         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4764         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4765         scopes
4766         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4767         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4768         are now changed to underscores in moduleName
4769
4770 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4771
4772         * as/mcs51/lkmem.c: better fix for bug #954173
4773
4774 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4775         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4776
4777         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4778         * device/include/c8051f000.h,
4779         * device/include/c8051f120.h,
4780         * device/include/c8051f300.h,
4781         * device/include/c8051f310.h,
4782         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4783         PWM16) and detab'ed
4784
4785 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4786
4787         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4788         and mailing lists, doc'ed --no-peep-comments, removed reference
4789         to knoppix (newest version has no LyX/LaTeX), other minor changes
4790         * src/SDCCglue.c (glue): save 2 bytes stack space with
4791         option --main-return. The ljmp could probably be avoided too
4792
4793 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4794
4795         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4796
4797 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4800         * src/SDCCopt.c (isLocalWithoutDef),
4801         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4802         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4803         (credit to Maarten Brock for patch #949363, on which this is based)
4804         * support/regression/tests/bug-751703.c: some test cases of extern used
4805         within inner scopes.
4806
4807 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4810         SPEC_STRUCT
4811         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4812         struct definitions
4813         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4814         dwWriteLabel): fix to create valid debugger symbols even when
4815         the module name has non-alphanumeric symbols in it
4816         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4817         when a variable's allocation has been optimized away
4818
4819
4820 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4821
4822         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4823         * src/hc08/main.c,
4824         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4825         * src/mcs51/main.c,
4826         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4827         * src/ds390/main.c,
4828         * src/z80/gen.c (z80_emitDebuggerSymbol),
4829         * src/z80/main.c,
4830         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4831         * src/pic/main.c,
4832         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4833         * src/pic16/main.c,
4834         * src/avr/gen.c (avr_emitDebuggerSymbol),
4835         * src/avr/main.c,
4836         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4837         * src/xa51/main.c,
4838         * src/SDCCdebug.c (emitDebuggerSymbol),
4839         * src/SDCCdebug.h,
4840         * src/port.h: added a debugger struct to the port struct. Added a
4841         callback for defining debugger symbols
4842
4843         * src/SDCCast.c (createLabel),
4844         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4845         with isitmp = 1
4846         * src/SDCCicode.h,
4847         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4848         iCode back to the ast for the function
4849
4850         * src/hc08/ralloc.c (hc08_assignRegisters),
4851         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4852         unneeded fields from the regs struct.
4853         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4854         pushReg() & pullReg() functions instead of emitcode()
4855
4856         * src/hc08/gen.c (genLabel, genhc08Code),
4857         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4858
4859         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4860         debugger hooks
4861
4862         * src/hc08/gen.c (genEndFunction, genhc08Code),
4863         * src/hc08/gen.h,
4864         * src/mcs51/gen.c (genEndFunction, gen51Code),
4865         * src/mcs51/gen.h,
4866         * src/ds390/gen.c (genEndFunction, gen390Code),
4867         * src/ds390/gen.h,
4868         * src/z80/gen.c (genEndFunction, genZ80Code),
4869         * src/z80/gen.h,
4870         * src/z80/z80.h,
4871         * src/pic/gen.c (genEndFunction, genpic14Code),
4872         * src/pic/gen.h,
4873         * src/pic16/gen.c (genEndFunction, genpic16Code),
4874         * src/pic16/gen.h,
4875         * src/avr/gen.c (genEndFunction, genAVRCode),
4876         * src/avr/gen.h,
4877         * src/xa51/gen.c (genEndFunction, genXA51Code),
4878         * src/xa51/gen.h,
4879         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4880         specific code to cdbFile.c and out of the backend code generators
4881
4882         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4883         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4884         starting address is now 0
4885
4886         * as/hc08/asm.h,
4887         * as/hc08/m08pst.c,
4888         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4889         assembler directive for DWARF support
4890         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4891
4892         * src/src.dsp,
4893         * src/Makefile.in,
4894         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4895
4896 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4897
4898         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4899         and inappropriate peephole optimization in jump tables
4900
4901 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4902
4903         * as/hc08/m08pst.c,
4904         * src/SDCCglue.c: sdccopt works for the hc08 port now
4905
4906 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4907
4908         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4909
4910 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4911
4912         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4913
4914 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4915
4916         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4917         rules
4918         * src/SDCCmain.c,
4919         * src/SDCCglobl.h,
4920         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4921         comments from the peephole optimizer replacement rules
4922         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4923         symbols
4924         * src/SDCCcse.c (updateSpillLocation),
4925         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4926         equivalents
4927         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4928         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4929         objects far pointers
4930
4931 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4932
4933         * src/SDCCsymt.h: a missing part of my last change
4934         * src/pic/ralloc.c (regTypeNum),
4935         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4936
4937 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/SDCCicode.h,
4940         * src/SDCCicode.c (aggrToPtrDclType),
4941         * src/SDCCptropt.h,
4942         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4943         ptrPseudoSymConvert),
4944         * src/pic/ralloc.c (regTypeNum),
4945         * src/pic16/ralloc.c (regTypeNum),
4946         * src/hc08/ralloc.c (regTypeNum),
4947         * src/ds390/ralloc.c (regTypeNum),
4948         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4949         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4950
4951 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4952
4953         * link/z80/lkmain.c (afile),
4954         * as/hc08/lkmain.c (afile),
4955         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4956         prevent a pointer problem when a filename has no directory and
4957         no extension specified.
4958
4959 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4960
4961         * link/z80/lkmain.c (afile): allow periods in directory names
4962         * link/z80/lkmain.c (afile),
4963         * as/mcs51/lkmain.c (afile),
4964         * as/hc08/lkmain.c (afile): allow linker script file to have an
4965         extension other than ".lnk"
4966         * link/z80/lklex.c (getfid),
4967         * link/z80/lkmain.c (parse),
4968         * as/mcs51/lklex.c (getfid),
4969         * as/mcs51/lkmain.c (parse),
4970         * as/hc08/lklex.c (getfid),
4971         * as/hc08/lkmain.c (parse): Support comments in the linker script
4972         file on lines by themselves and after filenames
4973
4974 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4975
4976         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4977
4978 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4979
4980         * src/z80/peeph-z80.def: removed some peephole rules that don't
4981         work with multibyte arithmetic (fixed bug #937126)
4982         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4983         to registers and not global variables
4984         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4985         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4986         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4987         checking for assignments not internally generated (fixed bug #931895)
4988         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4989         structure member (fixed bug #930072)
4990
4991 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/SDCCmain.c (linkEdit),
4994         * src/hc08/main.c (_hc08_parseOptions),
4995         * as/hc08/Makefile.in,
4996         * as/hc08/aslink.h,
4997         * as/hc08/asm.h,
4998         * as/hc08/m08pst.c,
4999         * as/hc08/lkrloc.c (relr, rele),
5000         * as/hc08/lkarea.c (lnkarea)
5001         * as/hc08/lkmain.c (afile, parse),
5002         * as/hc08/lkelf.c: support for ELF output
5003         * as/hc08/lks19.c (s19),
5004         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5005
5006 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5007
5008         * as/mcs51/lkihx.c: Fixed bug #899105.
5009
5010 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5011
5012         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5013         .dsp files from Unix to DOS.
5014
5015 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5016
5017         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5018         function pointers; we have been compliant for several months now.
5019         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5020         change that was accidently commented out
5021         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5022         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5023         bug #922319
5024
5025 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * src/hc08/gen.c: output of all of the internal debugging information
5028         is now controlled by the D() macro; it is disabled by default
5029
5030 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5031
5032         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5033         harder to keep the same registers during a CAST iCode
5034         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5035         long via int can be done in a single cast, if the signedness is
5036         correct.
5037         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5038         putchar() in tinibios.c in ds390's library
5039
5040 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5041
5042         * src/SDCCast.c (decorateType): fixed bug #898889,
5043         cast result of a literal complement too
5044         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5045         fixed check for bitfields
5046
5047 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5048
5049         * src/SDCCicode.c (geniCodeLogic): made it static,
5050         (geniCodeLogicAndOr): added in order to fix bug #905492,
5051         (ast2iCode): fixed bug #905492
5052         * support/regression/tests/bug-905492.c: added
5053         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5054         (processParms): fixed bug #927659: don't copy parms, this will clear
5055         decorated flag
5056         * support/regression/tests/bug-927659.c: added
5057
5058 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5059
5060         * src/SDCCast.c (addCast): don't cast float to char
5061         * device/lib/libsdcc.lib: added _memmove
5062
5063 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5064
5065         * device/lib/large/Makefile: fixed parallel execution by
5066         replacing `make` by `$(MAKE)`
5067
5068 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5069
5070         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5071         offsets (fixes bug #923936)
5072
5073 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5074
5075         * device/lib/small/Makefile: fixed parallel execution by
5076         replacing `make` by `$(MAKE)`
5077
5078 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5079
5080         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5081
5082 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5083
5084         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5085         * src/regression/Makefile: Regression test was not running.
5086
5087 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5088
5089         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5090         complement if possible
5091         * src/SDCCval.c (valComplement),
5092         * src/SDCCicode.c (operandOperation): fixed complement of literal
5093         * support/regression/tests/onebyte.c (testComplement): added
5094
5095 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5096
5097         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5098         return an optimized tree; actually replace actParm with the new tree
5099         * src/SDCCast.h: added some parantheses to remove side effects
5100         * support/regression/tests/bug-920866.c
5101
5102 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5103         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5104         Bit operands were not being handled properly in the pic14 port.
5105         (now src/regression/add.c passes again).
5106
5107 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCC.y (labeled_statement): case and default no longer require
5110         a following statement (RFE #893037)
5111
5112 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5115         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5116         disabled (fixes bug #916294)
5117         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5118         "mov a,acc"; patch provided by Lenny Story
5119         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5120
5121 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5122
5123         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5124         functions
5125         * src/ds390/gen.c (genFunction, genEndFunction),
5126         * src/ds390/ralloc.c (ds390_assignRegisters),
5127         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5128         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5129         pushed if there are parameters passed on the stack. Also, a cleaner
5130         way to decide if r0/r1 should be pushed/popped. (Together they fix
5131         bug #918693)
5132
5133 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5134
5135         * doc/sdccman.lyx,
5136         * device/lib/mcs51/crtpagesfr.asm,
5137         * device/lib/mcs51/crtxinit.asm,
5138         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5139         to avoid confusion with Si Lab's SFRPAGE register.
5140
5141 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5142
5143         * src/SDCCglue.c (emitMaps): allow public sfr variables
5144         * src/SDCCglue.c (initialComments): include compiler build date
5145         with compiler version and put the timestamp of the generated
5146         assembly file on a serperate line to be less confusing.
5147         * src/port.h: added genInitStartup hook
5148         * src/avr/main.c,
5149         * src/ds390/main.c,
5150         * src/hc08/main.c,
5151         * src/pic/main.c,
5152         * src/pic16/main.c,
5153         * src/xa51/main.c,
5154         * src/z80/main.c: genInitStartup initialize as NULL (default to
5155         historical behaviour)
5156         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5157         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5158         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5159         library instead of hard coding it into the compiler.
5160         * support/regression/ports/mcs51-stack-auto/spec.mk,
5161         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5162         * device/lib/mcs51/Makefile,
5163         * device/lib/small/Makefile,
5164         * device/lib/large/Makefile,
5165         * device/lib/mcs51/crtpagesfr.asm,
5166         * device/lib/mcs51/crtstart.asm,
5167         * device/lib/mcs51/crtxclear.asm,
5168         * device/lib/mcs51/crtxinit.asm,
5169         * device/lib/mcs51/crtclear.asm,
5170         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5171         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5172         and into user configurable files.
5173         * device/lib/clean.mk: clean mcs51 directory too
5174         * support/regression/tests/longlit.c: added static to T1 declaration
5175         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5176         accesses in the initialization code
5177
5178 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5179
5180         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5181         OSCTRIMVAL as noted in bug #916008
5182
5183 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5184
5185         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5186         in loops with multiple exits (reported as incorrect registers
5187         used by Martin Helmling in Sdcc-user list)
5188
5189 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5190
5191         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5192         made ds390 register extensions look less like error messages
5193
5194 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5195
5196         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5197         reported by Adam Wozniak in Sdcc-user list
5198
5199 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5200
5201         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5202         arithmetic optimizations, added debug output
5203
5204 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5205
5206         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5207         * sdcc.spec: updated and split sdcc into 3 rpms
5208         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5209         needed for literals of LEFT_OP and '+'
5210         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5211         introduced RESULT_TYPE_NOPROM
5212         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5213         left shift
5214         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5215         limited promotion to int only for '*'
5216         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5217
5218 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5219
5220         * src/pic16/gen.c (genSkip),
5221         (genc16bit2lit), (gencjneshort): commented out
5222         (is_LitOp): new helper function, checks operand type
5223         (genCmpEq): rewritten
5224
5225 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5226
5227         * support/regression/tests/bug-908454.c: added
5228
5229 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5230
5231         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5232         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5233         (geniCodeCast): cosmetic, don't preserve bit storage class
5234         (geniCodeLeftShift): added promotion
5235         (geniCodeLogic): fixed regression
5236         * src/SDCCsymt.c (computeTypeOr): accept bits too
5237         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5238
5239 2004-03-07  Borut Razem <borut.razem AT siol.net>
5240
5241         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5242
5243 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5244
5245         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5246         version of pic16_genPackRegisters which does not check if ic is a
5247         CAST operator,
5248         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5249         function cause string1.c regression test fails
5250
5251 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5252
5253         * sim/ucsim/configure.in,
5254         * sim/ucsim/configure,
5255         * sim/ucsim/doc/Makefile.in: use docdir
5256         * src/SDCC.y: fixed sbit atrributes
5257         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5258         * src/SDCCast.c (decorateType): |^& need special promotion handling
5259         * src/SDCCast.h,
5260         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5261         * src/SDCCsymt.h (computeType),
5262         * src/SDCCicode.c: computeType() needs op
5263         * src/SDCCsymt.c (checkTypeSanity),
5264         * doc/sddman.lyx: "plain" bitfields are unsigned
5265         * src/SDCCsymt.c (computeTypeOr): added
5266         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5267         |^& ops
5268         * src/SDCCval.c (val*): computeType() needs op
5269         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5270         * support/regression/tests/onebyte.c: added tests for |^&
5271
5272 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5273
5274         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5275         for writing icode into asm output.
5276
5277 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5278
5279         * src/pic16/device.c: added some debug lines enabled
5280         with macro DEBUG_CHECK,
5281         * src/pic16/genarith.c: more debug in genPlus,
5282         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5283         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5284         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5285         * (aopForSym): onStack symbols are re-placed in data memspace,
5286         and onStack flag is cleared,
5287         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5288         copy temporary pcodeop,
5289         * (genPcall): added warning for not updating PCLATU,
5290         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5291         always true for pic16 port,
5292         * (genMultOneWord): NEW, supports integer multiplication,
5293         * (genMult): modified to call genMultOneWord,
5294         * (ifxForOp): added warning when return NULL,
5295         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5296         flag is set before call to operandFromSymbol for implicit
5297         added structures,
5298         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5299         options.intlong_rent are set by default,
5300         * (_hasNativeMulFor): modified to allow port generation of integer
5301         multiplication,
5302         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5303         set regtype to REG_SFR for all registers, restricting seting the
5304         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5305
5306 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5307
5308         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5309         more than 500 times in the regression tests
5310
5311 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5312
5313         * support/Util/SDCCerr.h,
5314         * support/Util/SDCCerr.c,
5315         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5316         enumerator_list),
5317         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5318         for symbol conflicts.
5319         * support/valdiags/tests/enum.c,
5320         * support/valdiags/tests/tentdecl.c,
5321         * support/valdiags/tests/struct.c: expect possible error messages
5322         referring to original symbol definitions.
5323         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5324         * src/SDCCsymt.h,
5325         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5326
5327 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5328
5329         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5330
5331 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5332
5333         * src/pic16/ralloc.c (newReg): fixed bug #908929
5334
5335 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/ds390/gen.c: added missing #include "main.h"
5338
5339 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5340
5341         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5342         checking if symbol is already in set,
5343         * src/pic16/device.h: prototype for checkAddSym,
5344         * src/pic16/gen.c: (_G): added entry interruptvector,
5345         * (assignResultValue): removed some commented out lines,
5346         * (genFunction): check for ISR via sym->type, absolute section for
5347         interrupt code is created via a new pBlock, the goto instruction is
5348         placed now correctly at the interrupt vector position, changed all
5349         references from ivec to _G.interruptvector,
5350         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5351         is the interrupt is a high priority one, same for return from ISR,
5352         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5353         externs to calls of checkAddSym,
5354         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5355         pic16_pcode_verbose flag is set,
5356         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5357         * src/pic16/pcoderegs.c: message about how many registers are saved
5358         will only be emitted if pic16_pcode_verbose flag is set,
5359
5360 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5361
5362         * src/ds390/ralloc.h,
5363         * src/ds390/ralloc.c (ds390_regWithIdx),
5364         * src/ds390/gen.c (emitcode),
5365         * src/ds390/main.h,
5366         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5367         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5368         ds390operandCompare, getRegsRead, getRegsWritten,
5369         initializeAsmLineNode): customized instruction size calculation for
5370         ds390, started basis for some register optimizations
5371         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5372         corresponding assembly output
5373         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5374         missing push/pop of r0/r1. Optimized push/pops
5375
5376 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5377
5378         * src/mcs51/main.c (instructionSize): fixed ACALL size
5379         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5380
5381 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5382
5383         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5384         the sorting of rlist with NULL elements
5385         * (print_idataType, print_idata): NEW to create idata sections
5386         * src/pic16/device.h: idataSymSet new variable
5387         * src/pic16/gen.c (genFunction): fixed some bugs in string
5388         comparing, improved the absolute section creation for ISRs,
5389         added FSR0L/FSR0H in registers that are saved in an ISR,
5390         * (genInline): fixed the processing of inline snippets,
5391         now they undergo no process by the peephole optimizer
5392         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5393         are placed in idataSymSet,
5394         * (pic16emitStaticSeg): extern symbols are added in externs,
5395         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5396         switching when aboslute variables are placed in access bank memory
5397         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5398         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5399         commented out with #if,
5400         * (pic16_packRegisters): reintroduce the check for CAST because some
5401         symbols are not correctly handled,
5402         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5403         pCodeInstruction instead of pCode,
5404         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5405         pCodeAsmDir definition,
5406         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5407         directive, then the argument directive is emitted without the leading
5408         tab, hack for inline labels which must be in the first column,
5409         * (compareLabel,pic16_findNextInstruction),
5410         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5411         * (insertBankSwitch): modified for the new pCodeAsmDir,
5412
5413 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5414         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5415
5416         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5417         instance,
5418         * (pushSide): commented out with #if,
5419         * (assignResultValue): fixed some typos in saving
5420         registers,
5421         * (genPcall): FIXED and sync'ed with genCall,
5422         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5423         * (genNearPointerGet): fixed to handle some more cases,
5424         implementation scheme via table reads,
5425         * (genConstPointerGet): modified to access code memory correct,
5426         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5427         and improved to handle some cases
5428         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5429         instead of "RETLW" for init data
5430         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5431         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5432         variables are placed in access bank memory (<0x80 and >=0xf80),
5433         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5434         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5435         TBLWT_POSTDEC,TBLWT_PREINC
5436         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5437         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5438         directives
5439         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5440         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5441         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5442         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5443
5444 2004-02-29  Borut Razem <borut.razem AT siol.net>
5445
5446         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5447         support/Util/findme.h, support/Util/system.h: enhance binary relative
5448         search for lib and include by using findProgramPath()
5449
5450 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         * src/SDCCpeeph.h,
5453         * src/SDCCpeeph.c (pcDistance),
5454         * src/port.h,
5455         * src/mcs51/ralloc.h,
5456         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5457         * src/mcs51/main.h,
5458         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5459         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5460         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5461         size calculation port specific, started basis for some register
5462         optimizations
5463         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5464         missing push/pop of r0/r1. Optimized push/pops
5465         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5466         * device/lib/_modsint.c (_modsint),
5467         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5468         and stack version so regression tests pass
5469
5470 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5471
5472         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5473         * src/SDCCast.c (decorateType): catch another small optimization
5474         with '?' operator
5475         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5476         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5477         modified to finally use computeType() all over SDCC,
5478         see Feature Request #877103
5479         * src/SDCCval.h: cosmetic
5480         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5481         valCompare(); regression tested in muldiv.c
5482         * support/regression/tests/muldiv.c (testMod): mod sign follows
5483         dividend only
5484
5485 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5486
5487         * src/SDCCast.c (decorateType): fixed bug #902362
5488         * doc/INSTALL.txt: fixed install instructions for win32
5489
5490 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5491
5492         * device/include/Makefile.in (install): fixed by replacing spaces
5493         by tabs
5494         * doc/README.txt,
5495         * doc/INSTALL.txt: updated for release
5496         * doc/sdccman.lyx: added warning for --xstack being buggy
5497
5498 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5499
5500         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5501         to eliminate build warnings.
5502         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5503
5504 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5505            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5506
5507         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5508         removed -penable-stack, added comment for stack pragma, added
5509         warning for not initializing the stack/frame registers, removed
5510         comment at interrupts section
5511
5512         Stack is made permanent, there is no ability to disable stack usage.
5513         * src/pic16/device.h,
5514         * src/pic16/device.c: removed all references to USE_STACK macro,
5515         * src/pic16/device.c (pic16_dump_section): when no elements in
5516         rlist, free rlist before return,
5517         * (pic16_dump_int_registers): NEW, internal registers are a new set
5518         of general purpose registers reused by each function,
5519         * (checkAddReg): returns 1 if registers is added to set,
5520         * (pic16_groupRegistersInSection): when a registers is of type
5521         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5522         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5523         SRCASECMP macro is moved here from device.c
5524         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5525         PO_PCLATU, PO_PRODL, PO_PRODH,
5526         * (pic16_pCodeOpType, genMinus,
5527         changed compares to "a" register, with AOP_ACC,
5528         * (pic16_genPlus): fixed some bugs and indented properly,
5529         * (pic16_addSign): changed size to size+offset in the MOVWF
5530         instruction,
5531         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5532         multiply 8-bit operand by literal, result is 8-bit,
5533         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5534         multiply 2 8-bit operand, result is 8-bit,
5535         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5536         genUMult8X*_16,
5537         * src/pic16/gen.c: changed accUse to contain WREG only,
5538         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5539         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5540         true, do not use immediate addressing any more unless sym is a
5541         pointer in codespace,
5542         * (aopForRemat): do not use immediate addressing when symbol not in
5543         codespace and when symbol's address is requested,
5544         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5545         accUse size (= 1),
5546         * (aopGet): added case for AOP_ACC and don't return "accumulator
5547         bug" but WREG instead,
5548         * (popGetTempReg): pushes contents of temporary register in stack,
5549         * (popReleaseTempReg): pops contents of temporary register from
5550         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5551         * (pic16_popGet): separated case AOP_ACC to return register WREG
5552         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5553         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5554         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5555         the use of immediate pointers to certain cases only.
5556
5557         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5558         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5559         * (assignResultValue, genCall, genRet): modified to use the new
5560         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5561         genPcall is still broken,
5562         * (genFunction): added code to create 'A' type pBlocks when
5563         interrupt functions are generated, code not extensively tested yet,
5564         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5565         * (genEndFunction): modified so ISRs pop stored registers from stack,
5566         * (genMultOneByte): cleanup,
5567         * (AccRsh): added flag andmask, to and result with appropriate mask,
5568         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5569         * (genDataPointerGet): fixed and reenabled its use,
5570         * (genNearDataPointerGet): bugs fixed,
5571         * (genDataPointerSet): bugs fixed,
5572         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5573         pic16_DumpSymbol, pic16_DumpOp,
5574         * src/pic16/genutils.h: function prototypes for the above functions,
5575         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5576         pointers,
5577         * (pic16emitRegularMap): many many many improvements, but needs a
5578         major cleanup,
5579         * src/pic16/main.c: enable_stack in pic16_options is removed,
5580         * (_pic16_parseOptions): removed command line options -penable-stack,
5581         * (_process_pragma): emit stack symbol only when stack pragma is
5582         processed,
5583         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5584         redirected to FSR0L/FSR0H pair,
5585         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5586         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5587         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5588         for immediates,
5589         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5590         * (dumpPicOptype): NEW,
5591         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5592         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5593         with movff instruction,
5594         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5595         added pic16_int_regs, some packRegsFor* functions are commented out,
5596         because produce errors,
5597         * src/pic16/NOTES: minor modifications
5598
5599 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5600
5601         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5602         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5603         --pack-iram.
5604         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5605         * as/mcs51/lkaomf51.c: fixed bug #895763
5606
5607 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5608
5609         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5610
5611 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5612
5613         * doc/sdccman.lyx: added details about the HC08 storage classes and
5614         interrupts, fixed the register usage info for z80 & gbz80
5615
5616 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5617
5618         * doc/sdccman.lyx: added more pic16 port documentation
5619         * device/include/pic16/: added header pic18fregs.h
5620
5621 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5622
5623         * doc/sdccman.lyx: added Vangelis' contribution
5624
5625 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5626
5627         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5628         extend to the next CALL or PCALL, not just to the next CALL.
5629
5630 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5631
5632         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5633
5634 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5635
5636         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5637         bug #895752 and a better fix for bug #716790
5638
5639 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5640
5641         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5642
5643 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5644
5645         * doc/sdccman.lyx: minor changes, minor changed
5646
5647 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5648
5649         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5650         which can't handle SDCC_NEWONEBYTEOPS,
5651         (geniCodeMultiply): removed conversion from mult to shift for pic14
5652         and pic16
5653
5654 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5655
5656         * src/hc08/gen.h,
5657         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5658         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5659         thus fixing bug #895406
5660
5661 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5662
5663         * device/lib/_modsint.c,
5664         * device/lib/_modslong.c: sign follows divisor only
5665         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5666         signs or signedness can be ignored
5667         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5668         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5669         added optimization for IFX,
5670         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5671         arguments;
5672         reenabled optimization for IFX, which was removed on 2004-01-11
5673         * src/SDCCast.h: added return type IFX
5674         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5675         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5676         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5677         SDCC_OLDONEBYTEOPS selects the old behaviour
5678         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5679         changed again and commented promotion rule
5680         * src/SDCCval.c (valDiv): promotion no longer necessary
5681         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5682         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5683         rewritten
5684         * support/regression/tests/onebyte.c: added
5685
5686 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5687
5688         * gen.c (genInline): reverted to old code for assemnling inline
5689         code because of bug reported James Chadd
5690
5691 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5692
5693         * ralloc.h: missing declarations from previous patch,
5694         seems that patch for ralloc.h was never applied, fixed
5695
5696 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5697            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5698
5699         * pcode.c,
5700         * pcode.h,
5701         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5702         indirect addressing. Marked FSR0 as deprecated
5703         * gen.c (pointerCode): commented out, not needed now
5704         (pic16_popGet2p): new MOVFF helper function
5705         (genGenPointerGet),
5706         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5707         (shiftRLong): removed duplicate debugging info
5708
5709 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5710
5711         * src/ds390/gen.c (genNearPointerGet),
5712         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5713         optimization with bits, but not bitfields.
5714         * src/ds390/ralloc.c (packRegisters),
5715         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5716
5717 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5718
5719         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5720
5721 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5722
5723         * src/SDCCsymt.h,
5724         * src/SDCCicode.c (operandFromSymbol),
5725         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5726         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5727         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5728         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5729         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5730         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5731         bug #892038
5732         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5733         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5734         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5735         * src/SDCCsymt.c (newSymbol),
5736         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5737         enumerator_list),
5738         * src/SDCCval.h,
5739         * src/SDCCval.c (newiList): fixed bug #885705
5740
5741 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5742
5743         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5744         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5745
5746 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5747
5748         * device/include/c8051f120.h,
5749         * device/include/c8051f300.h,
5750         * device/include/c8051f310.h: added/updated header files for Silicon
5751         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5752         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5753         in new section Submitting patches
5754
5755 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5756
5757         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5758         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5759         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5760         genGenPointerSet),
5761         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5762         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5763         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5764         genGenPointerSet),
5765         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5766         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5767         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5768         genGenPointerSet),
5769         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5770         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5771         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5772         genGenPointerSet): fixed bug #892400
5773         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5774         to eliminate build warnings.
5775         * src/SDCCast.c (processParms),
5776         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5777         fixed bug 751859
5778         * support/valdiag/valdiag.py: added GCC to the list of defines active
5779         when compiling with gcc
5780
5781 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5782
5783         * support/Util/SDCCerr.h,
5784         * support/Util/SDCCerr.c,
5785         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5786         with an incomplete type (fixed bug #883734)
5787         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5788
5789 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5790
5791         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5792
5793 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5794
5795         * src/SDCCast.c (decorateType),
5796         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5797         function pointer implementation
5798         * support/regression/tests/funptrs.c: added tests to verify both forms
5799         of function pointers work correctly. Added tests to verify parameters
5800         are passed in the correct order.
5801
5802 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5803
5804         * device.c (regCompare): registers are sorted by ascending
5805         address and increasing size,
5806         * main.c (_pic16_finaliseOptions): removed the declaration
5807         of compiler macro MCU. Now a macro of the format pic18fxxxx
5808         will be defined from the command line
5809
5810 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5811             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5814         PCOP_RLCF was overwritten!
5815         * gen.c (genSkip): commented out calls to pic16_emitcode,
5816         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5817         * (genlshTwo),
5818         * (genRRC): added debugging info,
5819         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5820         overwritten while shifting,
5821         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5822         overwritten while shifting,
5823         * (AccLsh),
5824         * (AccRsh),
5825         * (shiftLLeftOrResult),
5826         * (shiftRLeftOrResult),
5827         * (shiftRLong),
5828         * (shiftLLong): Implemented with pic16_emitpcode
5829         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5830         * (genLeftShift): Fixed bug, operand for shift by variable always
5831         was "and"ed with 0x0f,
5832         * (genLeftShiftLiteral),
5833         * (genrshTwo),
5834         * (genRightShiftLiteral): added debugging info,
5835         * (genrshFour): added comment,
5836         * (genRightShift): determined signedness from operand "left"
5837         instead of "result"
5838
5839 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * src/SDCCicode.c (geniCodeParms),
5842         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5843         function pointers, fixed function pointer bugs #861242 and #861896
5844
5845 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5846
5847         * device/include/c8051f000.h,
5848         * device/include/c8051f120.h,
5849         * device/include/c8051f300.h: added header files for Silicon
5850         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5851
5852 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5853
5854         * src/SDCCast.c (processParams): added new type flow and restructured
5855         (gatherAutoInit): added new type flow
5856         (addCast): cosmetic changes
5857         (getLeftResultType): added new type flow for array indices, patch
5858         provided by Stas, see FR #877103
5859         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5860         array index patch by Stas
5861         * src/SDCCast.h: added prototype getResultTypeFromType()
5862         * src/SDCCval.h,
5863         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5864         * src/pic/glue.c (pic14emitStaticSeg),
5865         * src/pic16/glue.c (pic16emitStaticSeg),
5866         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5867         for initialization of symbols
5868         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5869         * support/Util/SDCCerr.h:
5870         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5871         * .version: bumped version number to 2.3.8
5872         * device/include/Makefile.in (install),
5873         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5874         avoid warnings
5875
5876 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5877
5878         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5879         Slade Rich fixed an optimization bug
5880         * src/pic/pcodepeep.c,
5881         * src/pic/pcoderegs.c
5882         * doc/Makefile (install): added test for directory
5883
5884 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5887         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5888         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5889         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5890         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5891         * as/mcs51/asexpr.c (term),
5892         * as/hc08/asexpr.c (term): fixed bug #887146
5893
5894 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * src/z80/gen.c (genMult): handle single byte result product
5897         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5898         DUMMY_READ_VOLATILE (fixed bug #886367)
5899
5900 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5901
5902         * support/regression/tests/libmullong.c: fixed logic, on little endian
5903         hosts we ended without a mullong_wrapper()
5904
5905 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5906
5907         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5908         virus/worm forged address usage.
5909
5910 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         Fixed promotion, it should be done on AST level:
5913         * src/SDCCast.c (addCast): added promotion to int
5914         (decorateType): updated call to upCast()
5915         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5916         usualUnaryConversions()
5917
5918 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5919
5920         * support/regression/tests/literalop.c (mulWrapper): Added a
5921         wrapper to remove integer overflow warnings.
5922
5923         * support/regression/tests/float_trans.c: Made work on host.
5924
5925         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5926         location of sz80.
5927
5928         * support/regression/generate-cases.py (main): Changed from inline
5929         to a main method.
5930
5931         * doc/Makefile (install): Changed to depth first to get rid of
5932         missing directory install warning.
5933
5934         * as/Makefile (install-doc): Made work on Mac.
5935
5936 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         * src/SDCCast.c: added an additional type flow in decorateType() of
5939         opposite direction, see feature request #860006; it's enabled at runtime
5940         by setting the environment variable SDCC_NEWTYPEFLOW
5941         * src/SDCCast.h: changed prototype of decorateType()
5942         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5943         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5944         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5945         see feature request #877103
5946         * src/SDCCval.c: updated call of decorateType()
5947         (valBitwise): fixed bug #882876
5948         (valMinus): added promotion
5949         (valLogicAndOr): result is unsigned
5950         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5951         * src/SDCCsymt.c (computeType),
5952         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5953         must not cause an unsigned operation
5954         * src/pic/glue (pic14emitRegularMap),
5955         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5956
5957 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5958
5959         * src/pic/pcode.c (PCodeID): commented out left over debug code
5960
5961 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5962
5963         * support/valdiag/tests/overflow.c: added shift tests
5964         * src/pic/device.c,
5965         * src/pic/gen.c,
5966         * src/pic/gen.h,
5967         * src/pic/glue.c,
5968         * src/pic/main.c,
5969         * src/pic/pcode.c,
5970         * src/pic/pcode.h,
5971         * src/pic/pcodepeep.c,
5972         * src/pic/pcoderegs.c,
5973         * src/pic/ralloc.c,
5974         * src/pic/ralloc.h: applied patch from Slade Rich;
5975         added support for multiple code pages and multiple RAM banks on the
5976         PIC 14 port. The ASM files now no longer simply assume all the
5977         code / RAM are in the same page / bank. This means the linker can
5978         safely allocate code/RAM of separate ASM files to different pages/banks.
5979         * doc/sdccman.lyx: added Slade's tips
5980         * src/mcs51/peeph.def: fixed bug #880768
5981
5982 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5983
5984         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5985         * src/SDCCast.c (decorateType): fixed bug #880197
5986
5987 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5988
5989         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5990         getopt.h.
5991
5992         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5993         strtof is not part of C89 and isn't included with Mac OS X.
5994
5995 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5996
5997         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5998         shiftL2Left2Result): fixed bug #879326
5999         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6000         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6001         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6002         address fetch for clr instruction
6003         * device/lib/hc08/_mulint.c: created optimized assembly version
6004         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6005
6006 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6007
6008         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6009         proposed in FR #877103
6010
6011 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6012
6013         * src/SDCCval.c (cheapestVal): added missing checks
6014         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6015         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6016
6017 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6018
6019         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6020         equal operands
6021
6022 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6023
6024         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6025         loaded with the linker search paths (-L arguments) and the libraries
6026         to be linked with the current source (-l arguments). Changes
6027         currently will affect only the pic16 port.
6028         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6029         include path the port specific paths and port specific libraries,
6030         * gplink command now contains the $3 argument,
6031         * src/pic16/device.h,
6032         * src/pic16/device.c,: structure PIC_device is made public and
6033         renamed to PIC16_device, the same for variable Pics which is renamed
6034         to Pics16. Updated all references to them.
6035         * src/pic16/glue.c (pic16glue): corrected bug with code
6036         initialization which bypassed the variable initializations block.
6037
6038         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6039         COMPILE_FLAGS and added the --nostdinc option
6040
6041 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * device/include/mc68hc908jb8.h: Register defs for another member
6044         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6045
6046 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6047
6048         Documenting changes from previous commits.
6049         * configure.in (version 1.56),
6050         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6051         when generating output files to configure the pic16 library,
6052         but now I've commented it out, since gputils aren't installed in the
6053         SF compile farm, so library won't compile
6054
6055         * device/lib/Makefile.in (version 1.56): initially I've added in
6056         target 'all' the prerequestive 'model-pic16' so it compiled the
6057         pic16 library, but now I've commented it out for the same reasons
6058         above,
6059         * added targets 'model-pic16' and 'objects-pic16' to compile the
6060         library
6061         * added target 'port-specific-objects-pic16' to handle the
6062         generated libraries and copy them into the build/ directory
6063         * added target 'clean-intermediate-pic16' to clean intermediate
6064         files into pic16 directory
6065         * in target 'installdirs' added line to create directory pic16 in
6066         the installation path
6067
6068         * device/include/Makefile.in (version 1.11): in target 'install'
6069         added lines to copy all header files to installation path,
6070         * in target 'installdirs' added line create directory for pic16
6071         headers in the installation path
6072
6073 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6074
6075         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6076          a function call
6077
6078 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6079
6080         * configure,
6081         * device/lib/configure.in,
6082         * device/lib/configure: fixed for autoconf 2.57
6083
6084 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6087         option so that it actually works. Made it specific to the z80, since
6088         the gbz80 doesn't have these kinds of I/O ports.
6089
6090 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * device/include/z180.h,
6093         * device/lib/_memcpy.c,
6094         * device/lib/_memmove.c,
6095         * device/lib/_mulint.c,
6096         * device/lib/ser_ir.c,
6097         * device/lib/ser_ir_cts_rts.c,
6098         * device/lib/_strcmp.c,
6099         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6100         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6101         portmode; added deprecation warning for bank= and protmode= forms.
6102         Also, guard against buffer overflow.
6103         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6104
6105 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6108         changed interrupt vector table generation to only emit declared vectors.
6109         * device/include/Makefile.in: added missing backslash
6110         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6111
6112 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6113
6114         Mainly changes to support compilation of the device libraries
6115         * src/pic16/device.c: stack is allocated via symbol and not
6116         via literal number. The symbol is placed in the corresponding
6117         position of the data ram
6118         * (pic16_dump_section): relocatable and absolute uninitialized
6119         data are now emitted in sorted order to reduce section naming,
6120         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6121         weren't marked as being in the access bank,
6122
6123 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6124
6125         Added portion of GNU PIC Library under the directory
6126         device/include/pic16 and device/lib/pic16. These files
6127         contain the declarations of SFRs for the PIC18Fxx2 devices.
6128         The directory is initialized via configure from toplevel.
6129
6130 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6131
6132         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6133         the spilllocations to be compared correctly
6134
6135 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6136
6137         * src/SDCCast.c (decorateType): fixed bug introduced today
6138
6139 2004-01-12  Borut Razem <borut.razem AT siol.net>
6140
6141         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6142         doc/sdccman.lyx: upper case pragmas are deprecated
6143
6144 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6147         in simpler and even better code
6148
6149 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6150
6151         * src/SDCCicode.c (operandOperation): fixed bug #874819
6152         * src/SDCCast.c (decorateType): fixed
6153         char foo (unsigned long ul) { return ul > 0; }
6154
6155 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6156
6157         * doc/sdccman.lyx: Moved and added some sections, small changes
6158         all over. Telling LaTeX to be less strict with word spacing
6159         to better keep the right margin. Changed some notes about
6160         maintainance of the ports in section 3.2.1 - is it OK like this?
6161
6162 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6163
6164         SDCC source changes:
6165         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6166         convilong): modified to inform the pic16 port that builtin functions
6167         are external
6168
6169         PIC16 PORT specific changes:
6170         * src/pic16/device.c pic16_dump_equates() added,
6171         processor registers declared internally by the port are emitted in
6172         the translation as equates,
6173         * src/pic16/gen.c: inline code is passed unprocessed to the
6174         translation,
6175         * (pic16_popGetLit2): fnuction modified to take second operand as
6176         pCodeOp pointer and not as literal,
6177         * (popRegFromIdx): prefixed with pic16_,
6178         * (pic16_popCombine2): modified to receive already allocated pCode
6179         operands,
6180         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6181         * (genFunction): initializes local stack frame and pushes on stack
6182         all the registers used by this function,
6183         * (genEndFunction): restores all registers from stack and restores
6184         stack frame,
6185         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6186         improvements,
6187         * (pic16glue): changed the program startup sequence,
6188         * added new dbName code 'A' for functions placed in absolute section
6189         * src/pic16/main.c: added function attribute _naked,
6190         * added pragma 'code' to place a fnuction at an absolute address,
6191         * added command line arguments --debug-ralloc and --pcode-verbose,
6192         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6193         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6194         * (pic16_newpCodeOpLit2): modified to take the second operand as
6195         pCodeOp pointer,
6196         * (pic16_printpBlock): modified to emit each function in a separate
6197         section,
6198         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6199         UPPER for immediate operands,
6200         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6201         instruction,
6202         * src/pic16/peeph.def: all peepholes with movff are commented out,
6203         because there is a problem in the pcode peep optimizer,
6204         * src/pic16/ralloc.c: the register allocator can now reuse local
6205         function symbols for another function. This saves register usage.
6206         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6207
6208         Added file src/pic16/NOTES with information about program writing on
6209         the current port version.
6210
6211 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6212
6213         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6214         and peephole 252 (array access)
6215
6216 2004-01-09  Borut Razem <borut.razem AT siol.net>
6217
6218         * src/SDCCmain.c : fixed #872250: -l command line defined library
6219           files are scanned before standard library files
6220
6221 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6222
6223         * src/SDCCast.c (decorateType): fixed bug #874046
6224
6225 2004-01-09  Borut Razem <borut.razem AT siol.net>
6226
6227         * support/scripts/sdcc.nsi: remove previous installation
6228
6229 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6230
6231         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6232         bytes for last interrupt vector (mcs51)
6233         * sdcc.spec: fixed typo
6234
6235 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6236
6237         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6238         gen51Code): more efficient parameter receive for --model-large
6239         ("bug" #845294)
6240
6241 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6242
6243         * src/ds390/main.c,
6244         * src/z80/main.c: added missed needLinkerScript flags (more than
6245         one port structure defined in these file)
6246         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6247         bug #795325
6248
6249 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6250
6251         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6252         * src/port.h: added flag needLinkerScript in port->linker
6253         structure to inform whether to create a .lnk file or not,
6254         * src/avr/main.c,
6255         * src/ds390/main.c,
6256         * src/hc08/main.c,
6257         * src/mcs51/main.c,
6258         * src/pic/main.c,
6259         * src/pic16/main.c,
6260         * src/xa51/main.c,
6261         * src/z80/main.c: changed appropriately to configure
6262         needLinkerScript flag
6263         * src/pic/gen.c,
6264         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6265         * src/pic/glue.c: added variable udata_section_name to
6266         override default uninitialized data segment definition for
6267         devices only with SHAREBANK memory (reported from Erik Epetrich)
6268         * (pic14emitOverlay): modified to emit a commented overlay segment
6269         directive when no overlay data exist
6270         * (picglue): modified to emit uninitialized data segment
6271         according to udata_section_name
6272         * src/pic/main.c (_pic14_parseOptions): added command line
6273         options --udata-section-name=[name] to override default
6274         udata definition name
6275         * modified _linkCmd and _asmCmd to include compiler passed
6276         arguments via -W option
6277         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6278         object file from '.rel' to '.o' in port->linker structure,
6279         changed size of fptr from 2 to 3 in port structure
6280
6281 2004-01-07  Borut Razem <borut.razem AT siol.net>
6282
6283         * support/scripts/sdcc.nsi: update PATH
6284         * support/scripts/sdcc.ico: craeted
6285
6286 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6287
6288         * device/include/Makefile.in: fix install
6289         * doc/Makefile: fix install
6290
6291 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6292
6293         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6294         in bug #860505
6295         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6296         how the function variable allocation summary is displayed; also
6297         include information about variables allocated to the overlay
6298         segment
6299
6300 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6301
6302         * as/mcs51/lkmain.c: Help about -Y option
6303         * as/mcs51/lkarea.c: Fixed gcc warnings
6304
6305 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6306
6307         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6308         fixed warning
6309         * support/valdiag/tests/overflow.c: added
6310         * src/SDCCast.c (decorateType),
6311         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6312         LEFT_OP (left shift)
6313
6314 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6315
6316         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6317         (default behaviour).
6318
6319 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         A python script to validate compiler diagnostic messages. It can be
6322         used to verify that sdcc complains about bad c source code and
6323         gives a good location of the error.
6324         * support/valdiag/Makefile,
6325         * support/valdiag/valdiag.py,
6326         * support/valdiag/tests/*
6327
6328 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6329
6330         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6331         * src/SDCCsymt.c (newEnumType),
6332         * src/SDCCsymt.h
6333         * support/Util/SDCCerr.c,
6334         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6335         enum related bugs.
6336         * support/regression/tests/enum.c: added test for enum values that
6337         require at least 2 bytes of storage.
6338
6339 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6340
6341         * src/common.h: added ifndef/define/endif macros
6342         around the header file.
6343         Bug reported from Jesus Calvino-Fraga
6344
6345 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6346
6347         * sdcc.spec: updated
6348         * device/include/Makefile.in: don't install CVS directories
6349         * device/lib/Makefile.in: added removal of CVS directories after install
6350         * doc/Makefile: fixed install, added local_icons
6351         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6352         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6353         * src/ds390/gen.c (genRightShift): fixed bug #870788
6354         * src/SDCCast.c (decorateType): fixed bug #870781
6355
6356 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6357
6358         PIC16 port related changes:
6359         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6360         added variable stackPos,
6361
6362         * gen.c: genCall, assignResultValue: added support for
6363         pushing/retrieving function parameters to/from stack,
6364         genFunction,genEndFunction: setup stack frame for the
6365         generated function,
6366         genAddrOf: will be changed according to bug 863624
6367
6368         * added files genutils.c and genutils.h which contain gen*
6369         debugged and optimised functions extracted from gen.c
6370
6371         * glue.c: added variable 'externs' which holds extern symbols,
6372         pic16emitRegularMap: is modified to properly handle relocatable
6373          symbols under the new scheme,
6374         pic16createInterruptVect: is modified
6375         pic16printPublics: is modified to emit 'global' assembler directives,
6376         added pic16_printExterns to print extern symbols,
6377         pic16glue: initializes stack/frame pointer in the beginning of
6378         the assembly output. Temporary hack, will be corrected later,
6379         because gplink yet does not support stack and SDCC does not
6380         yet support a type of crt0.o object to create the final binary.
6381
6382         * Removed many lines that contain 8051 legacy code.
6383         * The code is finally placed under a 'code' directive.
6384         * Added port specific options.
6385
6386         * _process_pragma: simplified since now we do not need *special*
6387         include file to define SFR registers. But a separate header
6388         will be needed. This will be developed later.
6389         * _pic16_parseOptions: added, parses port specific options:
6390         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6391         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6392         --preplace-udata-with=
6393
6394         * _pic16_setDefaultOptions: modified to initialize section names,
6395         but hack is temporarly out of order since it needs improvement.
6396         * _pic16_genAssemblerPreamble: configuration words are emitted by
6397         their address instead of their name. This part is incomplete and
6398         supports only the 18Fxx2 devices. Other devices will emit an error
6399         during assembly since they do not contain the same set of config
6400         registers
6401         * _pic16_genIVT: is modified,
6402
6403         * pcode.c: added definitions for some hardware registers that are needed
6404         for stack support
6405         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6406         All PCI entries are updated. Now LFSR is supported.
6407         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6408         * added pic16_newpCodeOpLit2 to support instructions with
6409         two literal arguments
6410         * pic16_pCode2str: corrected code that emits assembler instructions
6411         with two literal operands and those that have an access bit modifier
6412         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6413         this fixes a bug which caused some labels to be lost, when an
6414         assembler directive was added, i.e. banksel,
6415         * pic16_FixRegisterBanking: improved logic that causes the insertion
6416         of bank switching,
6417         * InlineFunction: functions that are called once, are not any more
6418         inlined. This can be a port option in the future,
6419
6420         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6421
6422         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6423         hold the corresponding uninitialized symbols,
6424         * pic16_allocProcessorRegister: registers have explicit marked the
6425         accessBank field,
6426         * pic16_allocInternalRegister: registers are explicit marked as
6427         not used,
6428         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6429         processing list, so bit registers were lost,
6430         *
6431
6432         * ralloc.h: added field 'accessBank' and original symbol operand
6433         in register definition,
6434         * removed the field isMapped from register definition,
6435
6436         ** Several functions have been removed from various sources:
6437         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6438         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6439         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6440         pic16_assignRelocatableRegisters
6441
6442         ** others have been introduced:
6443         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6444         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6445
6446 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6447
6448         * support/scripts/inc2h.pl: changed definition of BIT_AT
6449         to emit 'sbit at' instead of 'bit at'. This was a request.
6450
6451         PIC16 port related preliminary changes:
6452         * gen.c: prefixed function popRegFromString with
6453         pic16_ and all references to it corrected
6454         * pcode.c: all pic16_pc_* hardware registers prefixed
6455         with underscore (_),
6456         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6457         * ralloc.c: newReg(): when register is REG_SFR then
6458         set address to rIdx,
6459         pic16_allocProcessorRegister(): marks register wasUsed=0
6460         pic16_writeUsedRegs(): added a call to assign processor
6461         registers via pic16_assignFixedRegisters
6462
6463 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6464
6465         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6466         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6467         variables in unused register banks.  Also the SSEG is placed
6468         wherever there is enough space for it, and IDATA can be anywhere
6469         in internal RAM.  For now compile using -Wl-Y[stack_size].
6470         The mem file is different for this option as well, since it
6471         makes no sense of talking about DSEG lenght.
6472
6473 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6474
6475         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6476         in certain cases, e.g. when ROM assignment, patch provided
6477         from Albert den Haan.
6478
6479 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6480
6481         Many signedness and type propagation fixes:
6482         * src/SDCCicode.c: made geniCodeCast() static
6483         replaced SPEC_ by IS_ (cosmetic)
6484         (operandOperation): fixed div and mod operation
6485         (usualBinaryConversions): added support for promotion of char
6486         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6487         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6488         (geniCodeAdd): an array index will stay unsigned, even if promoted
6489         from char to int
6490         (geniCodeArray): ditto
6491         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6492         * src/SDCCsymt.c (computeType): added more support for char;
6493         promotion of char is selectable by promoteCharToInt, fixed signedness
6494         for all cases
6495         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6496         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6497         * src/SDCCval (val*): replaced signedness calculation by
6498         computeType()
6499         rearranged if-branches (cosmetic)
6500         (valShift): added warning W_SHIFT_CHANGED
6501         (valCompare): fixed problem with different types
6502         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6503         * support/regression/tests/literalop.c: added many cases
6504         * support/regression/tests/ast_constant_folding.c: changed finally to
6505         'unsigned int'
6506         * .version: new year, new version: 2.3.7
6507         * src/SDCCmain.c (main): applied patch #866468
6508         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6509         provided by Scott Bronson
6510         * doc/sdccman.lyx: updated documentation for sdcdb
6511         updated and added chapter tips
6512
6513 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/SDCCsymt.h: missing from yesterday's commits
6516
6517 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/SDCC.y (struct_or_union_specifier),
6520         * support/Util/SDCCerr.c,
6521         * support/Util/SDCCerr.h: verify that struct & union tags are used
6522         as declared.
6523
6524 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6525
6526         * src/SDCCglobl.h: missing from yesterday's commits
6527
6528 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6529
6530         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6531         sft_attributes, struct_declaration, parameter_declaration,
6532         type_name, start_block, declaration_list),
6533         * src/SDCC.lex (check_type): support redefinition of typedef names
6534
6535 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6536
6537         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6538         aligned xdata arrays. Erik helped me with the if clause.
6539
6540 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6541
6542         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6543         warning
6544
6545 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         * src/SDCCast.h,
6548         * src/SDCCast.c (newAst_),
6549         * src/SDCCicode.h,
6550         * src/SDCCicode.c (ast2iCode, newiCode),
6551         * src/SDCCglobl.h,
6552         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6553         expr, statement, expression_statement, selection_statement,
6554         iteration_statement, expr_opt, jump_statement): foundation for tracking
6555         sequence points
6556         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6557         point code too)
6558
6559 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6560
6561         * support/Util/SDCCerr.c,
6562         * src/SDCCast.h,
6563         * src/SDCCast.c (createCase, createDefault, decorateType),
6564         * src/SDCClabel.c (labelUnreach),
6565         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6566         to error messages.
6567         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6568         (with thanks to Stas Sergeev)
6569         * device/include/time.h,
6570         * device/lib/time.c (CheckTime): suppress unreachable code warning
6571
6572 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/SDCCast.c (createIvalCharPtr),
6575         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6576         bug #753752)
6577         * support/regression/tests/nullstring.c: tests for these two bugs
6578
6579 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         * support/Util/SDCCerr.h,
6582         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6583         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6584         about storage class and 'at' used inside struct or union
6585         * src/SDCCBBlock.c (iCodeFromeBBlock),
6586         * src/SDCCcse.c (ifxOptimize),
6587         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6588         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6589         printIval, emitStaticSeg, emitOverlay),
6590         * src/SDCClabel.c (deleteIfx),
6591         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6592         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6593         gatherAutoInit, processParms),
6594         * support/Util/SDCCerr.h,
6595         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6596         reporting for post-parse errors.
6597
6598 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6599
6600         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6601         implicit casts via union; they don't work on big endian systems
6602         (possible fix for bug #861138)
6603
6604 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6605
6606         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6607         * src/mcs51/main.c: fixed the fix for bug #737001
6608
6609 2003-12-15  Borut Razem <borut.razem AT siol.net>
6610
6611         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6612
6613 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6614
6615         * support/makebin/makebin.c: put output in binary mode
6616
6617 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6618
6619         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6620         xdata and data memory on startup. Set the environment variable
6621         SDCC_NOGENRAMCLEAR to disable this.
6622         * src/mcs51/peephole.def,
6623         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6624         (allows non-interrupt and interrupt code to safely compete for a resource
6625         without the non-interrupt code having to disable interrupts)
6626
6627 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * src/SDCCicode.c (geniCodeAdd),
6630         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6631         with valFromType if type might be a pointer and host is big endian).
6632         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6633         types, not just integer types.
6634         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6635         multiply defined with mismatching "at" address.
6636
6637 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6640         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6641         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6642         with embedded nulls (fixed bug #753752)
6643
6644 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6645
6646         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6647         Apparently this did not see much testing (endless loop)
6648
6649 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6650
6651         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6652
6653 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6654
6655         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6656         gracefully handle NULL memmap pointers
6657
6658 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6659
6660         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6661         instead of deleting the iCode when an operand is volatile
6662         * src/z80/gen.c (genDummyRead),
6663         * src/mcs51/gen.c (genDummyRead),
6664         * src/ds390/gen.c (genDummyRead),
6665         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6666         not just IC_RIGHT
6667         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6668         * src/SDCC.y: fixed bug #850420
6669
6670 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6671
6672         Applied z80 i/o port patch from Peter Townson and fixed some operators
6673         to better handle operands in A register.
6674         * device/include/z180.h
6675         * src/SDCC.y
6676         * src/SDCCglue.c
6677         * src/z80/gen.c
6678         * src/z80/gen.h
6679         * src/z80/main.c
6680         * src/z80/peeph-z80.def
6681         * src/z80/peeph.def
6682         * src/z80/z80.h
6683
6684 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6685
6686         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6687
6688 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * device/lib/hc08/_mullong.c: Removed extra #endif
6691
6692 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * sim/ucsim/hc08.src/inst.cc,
6695         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6696         carries from x to h
6697         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6698         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6699         * device/include/stdarg.h: fixed varargs for hc08
6700         * device/lib/Makefile.in,
6701         * device/lib/hc08/Makefile,
6702         * device/lib/hc08/_mulint.c,
6703         * device/lib/hc08/_mullong.c: fixed some endian problems
6704
6705 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6706
6707         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6708         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6709         * device/lib/_gptrget.c,
6710         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6711
6712 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6713
6714         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6715         * src/SDCCast.c (astErrors): fixed bug #846007
6716         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6717
6718 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6719
6720         * src/SDCCast.c (decorateType): disabled a transformation I added in
6721         revision 1.188 (access to fields of a structure at an absolute address);
6722         it breaks with bitfields, extern declarations, and gcse analysis.
6723         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6724         could be assigned through a pointer, so don't complain.
6725         * src/SDCCast.c (astErrors),
6726         * src/SDCCast.h,
6727         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6728
6729 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6730
6731         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6732         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6733         output of __config directives, since gpasm now supports them
6734         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6735         pre-processor macro, i.e. -DMCU=p18f452
6736         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6737         and modified to handle 'cast' icode similarly to '=' icode
6738         * src/pic16/device.h (typedef struct PIC_device): added field
6739         'extMIface' to indicate that chip has external memory interface
6740         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6741         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6742         18F8720
6743
6744 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6745
6746         * src/SDCC.y (pointer): fixed bug #846006
6747         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6748         * src/SDCCast.c (decorateType): fixed bug #846009
6749         * src/ds390/peeph.def,
6750         * src/ds390/gen.c (genAnd, genOr),
6751         * src/mcs51/peeph.def,
6752         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6753
6754 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6757         * src/SDCCdflow.c
6758         * src/SDCCcse.c
6759         * src/SDCCcse.h
6760         * src/SDCCBBlock.h
6761         * src/SDCCBBlock.c
6762
6763 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6764
6765         fixed bug #845089
6766         * src/SDCCbitv.h,
6767         * src/SDCCbitv.c: added function to free a bitvector
6768         * src/SDCClrange.h,
6769         * src/SDCClrange.c: added function to recompute the liveranges
6770         * src/avr/ralloc.c,
6771         * src/ds390/ralloc.c,
6772         * src/hc08/ralloc.c,
6773         * src/mcs51/ralloc.c,
6774         * src/pic/ralloc.c,
6775         * src/pic16/ralloc.c,
6776         * src/xa51/ralloc.c,
6777         * src/z80/ralloc.c: recompute the liveranges after register packing
6778
6779 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6780
6781         * src/SDCCloop.c (newInduction): fixed bug #845630
6782
6783 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6784
6785         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6786         inadvertantly left behind from my 2003-11-12 change
6787
6788 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6789
6790         Updated headers I neglected to commit yesterday.
6791         * src/SDCClrange.h,
6792         * src/SDCCicode.h
6793
6794 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6795
6796         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6797         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6798         * src/SDCCopt.c (eBBlockFromiCode),
6799         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6800         the creation of the key hash table from the sequencing so it can be used
6801         earlier (for some GCSE bug fixes still pending)
6802
6803 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6804
6805         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6806         * support/regression/tests/addsub.c: testing genPlus shortcut
6807
6808 2003-11-15  Borut Razem <borut.razem AT siol.net>
6809
6810         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6811
6812 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6815         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6816         ordering is immaterial.
6817         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6818
6819 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6822         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6823         (SIGSEV) of bug #840381
6824         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6825         unlink new file before rename if new and old filenames are the same)
6826
6827 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6828
6829         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6830         uninitialized variables) for the mcs51. Set environment variable
6831         SDCC_GENRAMCLEAR to test.
6832         xdata initialization slightly shorter
6833
6834 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCsymt.h,
6837         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6838         #838241 & 780691 (basicly the same bug)
6839         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6840         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6841
6842 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6843
6844         * src/SDCCmain.c (linkEdit): "fix" #834252
6845
6846 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6849         * src/SDCCast.h,
6850         * src/SDCC.y: fixed bug #819403
6851
6852 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6853
6854         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6855         the reentrant attribute.
6856         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6857         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6858         simulation
6859         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6860         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6861         erroneously reduced to a literal.
6862         * src/hc08/ralloc.c (packRegisters, rematStr),
6863         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6864         some cases
6865
6866 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6867
6868         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6869         * doc/sdccman.lyx: changed from 'article' to 'book'
6870         * doc/Makefile: readded test_suite_spec and cdbfileformat
6871
6872 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * device/include/stdlib.h: include malloc.h to comply with ANSI
6875         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6876
6877 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6878
6879         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6880         * doc/clean.mk: also remove *.out files
6881         * doc/sdccman.lyx: some additions, larger top/bottom margins
6882
6883 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6884
6885         * src/SDCC.y: fixed bug #837365
6886         * support/regression/tests/bitopcse.c
6887         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6888         a symbol (might be valop instead)
6889         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6890         * device/lib/clean.mk: added hc08 to the cleaning list
6891
6892 2003-11-04  Borut Razem <borut.razem AT siol.net>
6893
6894         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6895           made 2003-11-04
6896         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6897           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6898           malloc is declared in standard stdlib.h
6899
6900 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6901
6902         * device/lib/hc08/Makefile: need to clean .rel not .o files
6903         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6904
6905 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6906
6907         * src/port.h,
6908         * src/hc08/main.c,
6909         * src/mcs51/main.c,
6910         * src/ds390/main.c,
6911         * src/z80/main.c,
6912         * src/avr/main.c,
6913         * src/pic/main.c,
6914         * src/pic16/main.c,
6915         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6916         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6917         tests (which uses the port's oclsExpense function)
6918         * src/SDCC.y,
6919         * src/SDCCast.c,
6920         * src/SDCCicode.c,
6921         * src/hc08/gen.c,
6922         * src/ds390/gen.c,
6923         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6924
6925 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6926
6927         * src/SDCCcse.c (ifxOptimize),
6928         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6929         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6930         deleting the IFX iCode.
6931         * src/hc08/ralloc.c: reduced unneeded slocs
6932         * src/hc08/gen.c: fixed bug in asmopToBoolean
6933
6934 2003-11-04  Borut Razem <borut.razem AT siol.net>
6935
6936         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6937           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6938           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6939           transferred to configure
6940
6941 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6942
6943         Use headers defined in the C[++] standards:
6944         * sim/ucsim/gui.src/serio.src/fileio.cc
6945         * sim/ucsim/gui.src/serio.src/frontend.cc
6946         * sim/ucsim/gui.src/serio.src/main.cc
6947         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6948         * support/Util/NewAlloc.c
6949         * as/hc08/lklibr.c
6950         * as/mcs51/lklibr.c
6951         * as/z80/aslist.c
6952         * as/z80/assym.c
6953
6954 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6955
6956         * Added MSVC projects for hc08 assembler and linker:
6957         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6958         /as/hc08/link_hc08.dsp
6959
6960 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6961
6962         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6963
6964 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6965
6966         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6967
6968 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6969
6970         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6971
6972 2003-10-31  Borut Razem <borut.razem AT siol.net>
6973
6974         * support/cpp2/cpplib.h,
6975           support/cpp2/cpplib.c,
6976           support/cpp2/cpplex.c,
6977           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6978           to switch _asm block preprocessing on / off. Default is
6979           #pragma preproc_asm +
6980
6981 2003-10-31  Borut Razem <borut.razem AT siol.net>
6982
6983         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6984           when outputting comment blocks (when executed with -C option) and
6985           _asm (SDCPP specific) blocks
6986
6987 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6990
6991 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6992
6993         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6994
6995 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6996
6997         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6998         * src/SDCCast.c (decorateType): fixed bug #832664
6999
7000 2003-10-31  Borut Razem <borut.razem AT siol.net>
7001
7002         * support\cpp2\cpplex.c: fixed for SDCPP:
7003           comments(when executed with -C option) and _asm blocks
7004           were included even if they where in skipped #if block.
7005           Applied solution from GCC cpp 3.3.2
7006
7007 2003-10-31  Borut Razem <borut.razem AT siol.net>
7008
7009         * src/SDCC.lex: sdcc now understands both formats:
7010           '# <line_number> <file_name>' and
7011           '#line <line_number> <file_name>'
7012         * support/cpp2/cppmain.c: sdcpp now generates the standard
7013           '# <line_number> <file_name>' instead of former
7014           '#line <line_number> <file_name>'
7015
7016 2003-10-30  Borut Razem <borut.razem AT siol.net>
7017
7018         * support/cpp2/cpphash.h,
7019         * support/cpp2/cpplib.h
7020         * support/cpp2/cpplex.c,
7021         * support/cpp2/cppmain.c,
7022         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7023
7024 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7025
7026         Fixed a number of problems revealed by bug #827883.
7027         * src/SDCCloop.c (loopInvariants): Spill location of the
7028         result operand should be recomputed if extracted from
7029         a loop. Also, don't extract assignments of an iTemp
7030         from a literal.
7031         * src/SDCCast.c (isConformingBody): loop reversal should
7032         not occur if the control variable is involved with a
7033         relational operator.
7034
7035 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7036
7037         * .version: bumped to 2.3.6 to reflect the big improvements
7038         made by Erik and Klaus. Thanks!
7039
7040 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7041
7042         Replaced the livrange code.
7043         * src/SDCClrange.c: added new LR code
7044         * src/SDCCloop.c,
7045         * src/SDCCBBlock.h: removed remainig parts from old LR code
7046         * src/ds390/ralloc.c,
7047         * src/ds390/gen.c: minor fixes to make it work with new code
7048
7049 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         * as/hc08/asm.h,
7052         * as/hc08/lkrloc.c,
7053         * src/hc08/gen.c,
7054         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7055         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7056         (tweaked fix for bug #818696)
7057
7058 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7061
7062 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7063
7064         * src/SDCCmain.c,
7065         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7066         * src/mcs51/gen.c (gencjneshort),
7067         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7068         more efficient (per Scott Bronson's suggestion)
7069
7070 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7071
7072         Extended the semantics of the critical keyword to include
7073         individual statements. See RFE #827755 and #799831
7074         * src/SDCC.y
7075         * src/SDCCicode.c
7076         * src/SDCCopt.c
7077         * src/SDCCast.c
7078         * support/Util/SDCCerr.c
7079         * support/Util/SDCCerr.h
7080         * src/mcs51/gen.c
7081         * src/ds390/gen.c
7082         * src/hc08/gen.c
7083
7084 2003-10-19  Borut Razem <borut.razem AT siol.net>
7085
7086         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7087
7088 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7091         Fixed bug #818696
7092         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7093         and predecrement operand is displayed
7094
7095 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7096
7097         * src/SDCCval.c (valMinus): fixed bug #826041
7098
7099 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7100
7101         Some hc08 related updates that I missed earlier
7102         * sim/ucsim/stypes.h
7103         * support/regression/ports/hc08/spec.mk
7104
7105 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7106
7107         New target "hc08" for the Motorola 68hc08 family of micros
7108
7109         * configure
7110         * configure.in
7111         * Makefile
7112         * src/hc08/*
7113         * src/SDCCmain.c
7114         * src/port.h
7115         * sim/ucsim/hc08.src/*
7116         * sim/ucsim/configure.in
7117         * src/ucsim/configure
7118         * sim/ucsim/packages_in.mk
7119         * as/hc08/*
7120         * as/Makefile
7121         * device/include/mc68hc908qy.h
7122         * device/lib/hc08/*
7123         * device/lib/Makefile.in
7124         * support/regression/ports/hc08/*
7125         * support/regression/Makefile
7126
7127 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7128
7129         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7130         regression test
7131         * src/ds390/gen.c (genCast): fixed bug #821957
7132
7133 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7134
7135         * device/lib/logf.c: "fixed" overlay bug
7136         * support/regression/ports/host/spec.mk: added m library
7137         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7138         * support/regression/tests/float_trans: added (for Eric)
7139
7140 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7141
7142         * src/mcs51/gen.c (genCpl): fixed bug
7143         http://sf.net/mailarchive/message.php?msg_id=6263915
7144
7145 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * src/SDCCast.c (decorateType): added extended constant folding
7148         * src/SDCCsymt.c (computeType): cleanup
7149         * src/SDCCval.c (valShift): minor optimization
7150         * support/regression/tests/ast_constant_folding.c: added
7151
7152 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7153
7154         * src/SDCCmain.c: removed some unintended changes
7155
7156 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7159         * src/z80/gen.c: fixed part of bug #817589
7160         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7161
7162 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7163
7164         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7165         * src/SDCCcflow.c
7166         * src/SDCCcse.c
7167         * src/SDCCdflow.c
7168         * src/SDCClabel.c
7169         * src/SDCClrange.c
7170         * src/SDCCmem.c
7171         * src/SDCCopt.c
7172         * src/SDCCpeeph.c
7173         * src/SDCCset.c
7174         * src/avr/ralloc.c
7175         * src/ds390/ralloc.c
7176         * src/izt/ralloc.c
7177         * src/mcs51/ralloc.c
7178         * src/pic/ralloc.c
7179         * src/pic16/ralloc.c
7180         * src/xa51/ralloc.c
7181         * src/z80/ralloc.c
7182         * src/z80/gen.c: removed unused label "release:"
7183
7184 2003-10-06  Borut Razem <borut.razem AT siol.net>
7185
7186         * src/SDCC.lex: removed definition of unused variables
7187           save_optimize and save_options
7188
7189 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7190
7191         * clean.mk: removed '=' in "-maxdepth=1"
7192         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7193         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7194
7195 2003-10-06  Borut Razem <borut.razem AT siol.net>
7196
7197         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7198           my_unput() replaced by unput()
7199
7200 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7201
7202         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7203         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7204         type-punned pointer will break strict-aliasing rules"
7205         Old LR behaviour is again default; Klaus' LR can be choosen by
7206         defining the environment variable LRKLAUS
7207         * src/SDCCBBlock.h
7208         * src/SDCCloop.c
7209         * src/SDCClrange.c
7210         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7211         * clean.mk: fixed removal of files in bin/CVS/
7212         * device/lib/clean.mk: fixed removal of directories small and large
7213         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7214         * src/SDCCicode.c,
7215         * src/SDCCval.c: removed superflous test for pedantic
7216
7217 2003-10-05  Borut Razem <borut.razem AT siol.net>
7218
7219         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7220           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7221           message "unmatched #pragma SAVE and #pragma RESTORE"
7222
7223 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7224
7225         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7226           assembly, critical functions, atomic, nojtbound)
7227
7228 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7229
7230         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7231         * src/SDCCBBlock.h
7232         * src/SDCCloop.c
7233         * src/SDCCloop.h
7234         * src/SDCClrange.c
7235
7236 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7237
7238         * src/z80/gen.h,
7239         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7240         * src/mcs51/gen.h
7241         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7242         * src/ds390/gen.h
7243         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7244         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7245         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7246
7247 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7248
7249         * src/z80/gen.c (genRet): fixed bug #524753
7250         * src/z80/gen.c (genCast): fixed internal error on cast from
7251         pointer to long
7252         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7253         fix for bug #477835 to the z80
7254         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7255         for tracking iCodes in the peephole optimizer for z80
7256
7257 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7258
7259         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7260         the other part of bug #814548
7261         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7262
7263 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7264
7265         * src/SDCCcse.c: fixed part of bug #814548
7266
7267 2003-09-28  Borut Razem <borut.razem AT siol.net>
7268
7269         * src/asm.c: rewrite of printILine() to use temporary file instead
7270           a pipe
7271         * src/xa51/main.c: commented out declaration of int rewinds
7272
7273 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7274
7275         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7276
7277 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7278
7279         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7280         * src/asm.c (printILine): Fixed bug #811015
7281
7282 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7283
7284         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7285         freeing.
7286
7287 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7288
7289         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7290         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7291         to correctly handle general case of AOP_PAIRPTR
7292         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7293
7294 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7295
7296         * src/mcs51/ralloc.c (fillGaps),
7297         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7298         register positioning bug)
7299
7300 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7301
7302         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7303
7304 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7305
7306         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7307         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7308         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7309         (ralloc doesn't intentionally do this now, but perhaps later)
7310         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7311         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7312         register positioning bugs (Fixed bug #762602 and #795325)
7313         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7314         (Fixed bug #808779)
7315         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7316         lines that --i-code-in-asm generates
7317
7318 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7319
7320         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7321         trying to fclose a FILE* that was already closed.
7322
7323 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7324
7325         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7326         of const struct should be treated as if const themselves)
7327
7328 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7329
7330         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7331
7332 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7333
7334         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7335         Unix (/n) and DOS (/r/n) line terminations.
7336
7337 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7338
7339         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7340         bug #613775
7341
7342 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7343
7344         * src/mcs51/gen.c (genFunction, genEndFunction),
7345         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7346         and restore of EA so that stack offsets to parameters are
7347         correct when using both critical and reentrant/stack-auto.
7348         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7349         size (can be triggered in error if sloc is shared between
7350         different sized objects)
7351         * device/include/float.h: fixed macros to explicitly use
7352         unsigned long where needed
7353
7354 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7355
7356         Feature req. 799831: added code to allow nesting of critical functions
7357         * src/mcs51/gen.c (genFunction, genEndFunction)
7358         * src/ds390/gen.c (genFunction, genEndFunction)
7359
7360 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7361
7362         * src/SDCCsymt.c (sclsFromPtr),
7363         * src/SDCCsymt.h,
7364         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7365         support for standard C idiom of memory mapped variables; for
7366         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7367         to xdata int at 0x1234 tempvar = 1.
7368         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7369         provided by Akiya ISHIDA
7370
7371 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7374         * src/SDCCval.c (constVal): added reduction from int to char
7375         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7376         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7377         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7378         to ignore the sign
7379         * support/regression/tests/shifts.c: fixed
7380
7381 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7382
7383         * src/z80/gen.c (genXor): Fixed bug #805445
7384
7385 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7386
7387         Fixed bug #621531 (const & volatile confusion in the type chain).
7388         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7389         refer to the const or volatile state of the pointer itself.
7390
7391         * src/SDCCast.c
7392         * src/SDCCglue.c
7393         * src/SDCCicode.c
7394         * src/SDCCsymt.c
7395         * src/SDCCval.c
7396         * src/SDCC.y
7397         * src/SDCCsymt.h
7398         * src/pic/gen.c
7399         * src/pic/ralloc.c
7400         * src/pic16/gen.c
7401         * src/pic16/ralloc.c
7402         * support/regression/tests/const.c
7403
7404 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7405
7406         When checking for duplicated modules, use absolute paths
7407         instead of relative paths.  Files changed:
7408
7409         * as/mcs51/lklib.c
7410         * link/z80/lklib.c
7411
7412 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7413
7414         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7415
7416 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7417
7418         * device/include/string.h: added size_t typedef, changed
7419         prototypes to use size_t, eliminated separate reentrant and
7420         non-reentrant declarations, added _memmove declaration
7421         * device/lib/_memcpy.c: changed to use size_t instead of int,
7422         changed /4 to >>2 to avoid division library call
7423         * device/lib/_memcmp.c,
7424         * device/lib/_memset.c,
7425         * device/lib/_strncat.c,
7426         * device/lib/_strncpy.c,
7427         * device/lib/_strncmp.c: changed to use size_t instead of int
7428         * device/lib/_memmove.c: new file (fixed bug #772294)
7429         * device/lib/Makefile.in: added _memmove.c
7430         * device/lib/z80/asm_strings.s: fixed bug #772290
7431         * support/regression/tests/bitfields.c: attempt to fix host assertion
7432         failure on amd64-unknown-linux2.2
7433
7434 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7435
7436         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7437         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7438         * as/z80/asmain.c (main): fixed bug #801766
7439
7440 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7443         compilers
7444
7445 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7448         reported in bug #800609
7449
7450 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7451
7452         * Top header beautifications in src/pic16 directory:
7453           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7454           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7455           pcoderegs.h, ralloc.c, ralloc.h
7456         * main.c: added top header and GPL license notice
7457         * pcode.c: fixed the if-conditional warning
7458
7459 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7460
7461         * device/lib/_mullong.c: replaced int by short for gcc
7462
7463 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7464
7465         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7466         and JUMPTABLE iCodes properly now (worked by accident before)
7467         * src/mcs51/gen.c (leftRightUseAcc),
7468         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7469         iCode properly now. Use getSize instead of nRegs since a & b
7470         aren't part of the nRegs tally.
7471
7472 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7473
7474         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7475         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7476           before instructions that use the _STATUS register
7477
7478 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7479
7480         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7481         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7482         fetching of the pointer
7483         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7484         copied from genNearPointerSet()
7485         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7486         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7487         If they pop r0/r1 they must be called in the opposite order than aopOp().
7488         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7489         (resp. --stack-auto), prepared for --xstack
7490
7491 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7492
7493         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7494
7495 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7498         these ports have their own __sdcc_external_start()
7499
7500 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7503         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7504         type for bits was changed. It resulted in bit variables becoming
7505         global, which is not permitted in PIC 14 assembly output.
7506
7507 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7508
7509         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7510
7511 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7512
7513         Z80 and MCS51 linkers complaint if a public symbol is defined
7514         in more than one library module:
7515
7516         * as/mcs51/lklib.c
7517         * link/z80/lklib.c
7518         * as/mcs51/Makefile.in
7519
7520 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7521
7522         A few small changes that speed up the peephole optimizer.
7523
7524         * src/SDCCpeeph.c
7525
7526 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7527
7528         Try to make the peephole optimizer smarter by maintaining
7529         an association between the assembly source code and the
7530         iCodes that originated them. Put this information to use
7531         with a new peephole rule condition "notVolatile" so that
7532         the rules can be aggressive yet still safe.
7533
7534         * src/SDCCpeeph.c
7535         * src/SDCCpeeph.h
7536         * src/mcs51/gen.c
7537         * src/mcs51/peeph.def
7538
7539 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7540
7541         Fixed bug #741761
7542
7543         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7544         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7545         if the left or right operand symbols have the accuse flag set.
7546
7547 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7548
7549         Changed the type of the result of the ! (NOT) operator to char;
7550         previously it returned the same type as the source. This allows
7551         us to eliminate all the genFloatNot functions (all of its target
7552         implementations were very buggy) since !float can use the same
7553         code as !long now.
7554
7555         * src/SDCCicode.c (ast2iCode): ! returns char
7556         * src/mcs51/gen.c (genNot, genNotFloat),
7557         * src/ds390/gen.c (genNot, genNotFloat),
7558         * src/z80/gen.c (genNot, genNotFloat),
7559         * src/pic/gen.c (genNot, genNotFloat),
7560         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7561
7562 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7563
7564         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7565         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7566            during interrupts. Ensure WSAVE is located at a shared bank address.
7567         2. Fixed page selection in some places
7568         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7569            the registers name strings.
7570         4. Fixed "signed / unsigned compare" compiler warnings.
7571         5. The PIC port manages its own allocation of the general purpose
7572            registers, but makes no attempt to reuse them. As a result when
7573            compiling it soon runs out of general purpose registers. Some
7574            additional code was added to the files pcode.c and device.c to walk
7575            through the function call tree and rename the registers so that they
7576            get reused.
7577
7578         * src/pic/device.c
7579         * src/pic/gen.c
7580         * src/pic/glue.c
7581         * src/pic/pcode.c
7582         * src/pic/pcode.h
7583         * src/pic/ralloc.c
7584         * src/pic/ralloc.h
7585         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7586         genPlus() & genMinus() when the result is the same as left or right
7587
7588 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7591
7592 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7593
7594         Made bitfield a distinct type from bit so that bitfields
7595         convert as per ANSI C and bits retain their traditional
7596         boolean style behaviour. Implemented bitfield support in
7597         the z80 port.
7598
7599         * src/SDCCsymt.h,
7600         * src/SDCCsymt.c,
7601         * src/SDCCast.c,
7602         * src/cdbFile.c,
7603         * src/mcs51/gen.c,
7604         * src/ds390/gen.c: bit v bitfield split
7605         * src/z80/gen.c: New support for bitfields
7606         * support/regression/tests/bitfields.c: reenabled z80,
7607         added more tests
7608
7609 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7610
7611         Rules 246.x, 247.x relate to bitfields, the others speed up
7612         access to xdata mapped I/O devices.
7613
7614         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7615
7616 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         Cleaned up genPackBits and genUnpackBits and added two helper
7619         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7620         for literal assignments in genPackBits (thanks to Frieder for
7621         reminding me).
7622
7623         * src/mcs51/gen.c
7624         * src/ds390/gen.c
7625
7626 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         Fixed bug #748310 (pointer to function type mishandled when the
7629         function name is omitted). Also fixed a SIGSEGV when a function
7630         attribute (reentrant, etc) is used on a non-function or on a
7631         function but misplaced before the parameter list.
7632
7633         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7634         bug #748310
7635         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7636         * support/Util/SDCCerr.h,
7637         * support/Util/SDCCerr.c: Added func attr misuse error msg
7638
7639 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7640
7641         Fixed bug #787649 by anonymous
7642         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7643         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7644
7645 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7646
7647         Fixed numerous bitfield problems.
7648
7649         * src/SDCC.y: More bitfield related error checking
7650         * src/SDCCsymt.h,
7651         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7652         * support/Util/SDCCerr.h,
7653         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7654         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7655         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7656         * support/regression/tests/bitfields.c: tests added
7657
7658 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7659
7660         Made the constant following the "interrupt" keyword optional. If
7661         omitted, the function will not automatically be given an entry
7662         in the interrupt vector table (similar to #pragma NOIV, but
7663         less syntacticly kludgy). The interrupt number is also now
7664         range checked. Also fixed a bug in the high order bit example
7665         in the manual.
7666
7667         * src/SDCC.y
7668         * src/SDCCmem.c
7669         * src/SDCCglue.c
7670         * src/SDCCsymt.h
7671         * support/Util/SDCCerr.c
7672         * support/Util/SDCCerr.h
7673         * doc/sdccman.lyx
7674
7675 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7676
7677         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7678         * src/SDCCicode.c (operandOperation): rewritten some ops
7679         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7680         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7681         other type
7682         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7683         be re-activated by defining REDUCE_LITERALS)
7684         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7685         unsigned, but are signed by default
7686         * src/SDCCval.c (constVal): rearranged
7687         * src/SDCCval.c (valMod): preliminary fix
7688         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7689         * support/regression/literalop.c: added, work in progress
7690
7691 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7692
7693         Generate warnings for useless declarations like "char data;"
7694         that don't do what new users expect.
7695
7696         * src/SDCC.y
7697         * support/Util/SDCCerr.h
7698         * support/Util/SDCCerr.c
7699
7700 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7701
7702         * src/SDCCval.c (valMult): fix overflow detection of negative int
7703
7704 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7705
7706         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7707
7708         Changes to support big endian targets:
7709
7710         * src/ports.h
7711         * src/SDCCglue.c
7712         * src/avr/main.c
7713         * src/ds390/main.c
7714         * src/izt/i186.c
7715         * src/mcs51/main.c
7716         * src/pic/main.c
7717         * src/pic16/main.c
7718         * src/xa51/main.c
7719         * src/z80/main.c
7720
7721 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7722
7723         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7724         * device/lib/time.c: fixed warning "integer overflow in expression"
7725
7726 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7729         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7730         constants are unsigned; added recognition of "u" flag for unsigned
7731         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7732         * src/SDCCval.c (valDiv, valMod): fixed signdness
7733         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7734         signedness of modulo, left and right shift
7735         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7736         * support/Util/SDCCerr.h: added warning W_INT_OVL
7737         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7738         * src/SDCCast.c (ast_print): improved output of constants
7739
7740 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7741
7742         Fixed some warnings when building with MSVC:
7743
7744         * as\mcs51\asdata.c
7745         * as\z80\asdata.c
7746         * as\mcs51\asm.h
7747         * as\z80\asm.h
7748         * link\z80\aslink.h
7749         * link\z80\lkdata.c
7750         * link\z80\lkeval.c
7751         * link\z80\lkgb.c
7752         * link\z80\lkihx.c
7753         * link\z80\lks19.c
7754         * link\z80\lksym.c
7755         * support\cpp2\cpplib.c
7756         * src\ds390\gen.c
7757         * src\mcs51\gen.c
7758
7759 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7760
7761         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7762
7763 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7764
7765         * support\librarian\clean.mk: Do not remove Makefile.
7766         * support\librarian\Makefile: added.
7767
7768 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7769
7770         Added librarian to MSVC build:
7771         * all.dsp
7772         * sdcc.dsw
7773         * support\librarian\librarian.dsp
7774
7775         'configure' not needed for librarian, removed:
7776         * support\librarian\configure
7777         * support\librarian\configure.in
7778         * support\librarian\config_in.h
7779         * support\librarian\Makefile.in
7780
7781         Hopefully these ones built the librarian and the rest of sdcc properly:
7782         * Makefile
7783         * Makefile.common.in
7784
7785         Messed up 'configure', so revert to previous version:
7786         * configure
7787         * configure.in
7788
7789 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7792         there, while the mantissa of a double is "only" 53 bits wide.
7793
7794 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7795
7796         Adding sdcclib to the build.  MSVC project coming soon.
7797         Files added/changed:
7798
7799         * support\librarian\clean.mk
7800         * support\librarian\configure
7801         * support\librarian\configure.in
7802         * support\librarian\config_in.h
7803         * support\librarian\Makefile.bcc
7804         * support\librarian\Makefile.in
7805         * support\librarian\sdcclib.c
7806         * Makefile.bcc
7807         * Makefile
7808         * Makefile.common.in
7809         * configure
7810         * configure.in
7811
7812 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7813
7814         Linker now complaints if linked modules have conflicting options, for
7815         example, one compiled using --model-large and another one compiled with
7816         --model-small.  The following files were modified:
7817
7818         * as\mcs51\asdata.c
7819         * as\mcs51\aslink.h
7820         * as\mcs51\asm.h
7821         * as\mcs51\asmain.c
7822         * as\mcs51\asout.c
7823         * as\mcs51\i51pst.c
7824         * as\mcs51\lkdata.c
7825         * as\mcs51\lklibr.c
7826         * as\mcs51\lkmain.c
7827         * as\z80\asdata.c
7828         * as\z80\asm.h
7829         * as\z80\asmain.c
7830         * as\z80\asout.c
7831         * as\z80\z80pst.c
7832         * link\z80\aslink.h
7833         * link\z80\lkdata.c
7834         * link\z80\lklibr.c
7835         * link\z80\lkmain.c
7836         * src\SDCCglue.c
7837
7838 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7839
7840         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7841         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7842
7843 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7844
7845         * src/z80/mappings.i: fix _mul[us][int,long] entries
7846
7847 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7848
7849         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7850
7851 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7854         * support/regression/tests/bitopcse.c: added
7855         fixed warning:
7856         * src/avr/gen.c:
7857         * src/pic/gen.c:
7858         * src/pic16/gen.c:
7859         * src/z80/gen.c:
7860         * src/xa51/gen.c:
7861
7862 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7863
7864         added support for new library format to z80, gbz80 linkers:
7865         *link/z80/aslink.h
7866         *link/z80/lklex.c
7867         *link/z80/lklib.c
7868         *link/z80/lklist.c
7869
7870 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7871
7872         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7873         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7874
7875 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         added DUMMY_READ_VOLATILE:
7878         * src/SDCC.y:
7879         * src/avr/gen.c:
7880         * src/xa51/gen.c:
7881         * src/z80/gen.c:
7882         * src/pic/gen.c:
7883         * src/pic16/gen.c:
7884         * src/mcs51/gen.c:
7885         * src/ds390/gen.c:
7886         * src/SDCCcse.c (algebraicOpts): many improvements
7887         * src/SDCCcse.h: removed algebraicOpts()
7888         * src/SDCCicode.c (picDummyRead): added
7889
7890 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7891
7892         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7893         "Insufficient space in data memory".
7894
7895 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * src/mcs51/gen.c: fixed bug #771358
7898         * src/z80/gen.c: fixed bug #759087
7899
7900 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7901
7902         * src/pic16/glue.c: minor cleanup by Vangelis
7903
7904 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7905
7906         * device/include/regc515c.h: fixed #758477
7907         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7908         * device/lib/_gptrput.c: saved a few bytes
7909         * my tab spacing is 8, yours too?)
7910         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7911         * device/lib/serial.c: process RX bytes earlier than TX bytes
7912         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7913
7914 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7915
7916         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7917
7918 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7919
7920     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7921
7922 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7923
7924         * device/lib/Makefile.in: bad fix, reverted to 1.43
7925
7926 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7927
7928         * device/lib/Makefile.in: added missing z80 object files
7929
7930 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7931
7932         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7933         pic16 progress by Vangelis:
7934         * src/SDCCglobl.h:
7935         * src/SDCCmain.c:
7936         * src/pic/Makefile:
7937         * src/pic:
7938         * pic/Makefile:
7939         * pic16/device.c:
7940         * pic16/device.h:
7941         * pic16/gen.c:
7942         * pic16/gen.h:
7943         * pic16/genarith.c:
7944         * pic16/glue.c:
7945         * pic16/main.c:
7946         * pic16/pcode.c:
7947         * pic16/pcode.h:
7948         * pic16/pcodepeep.c:
7949         * pic16/peeph.def:
7950
7951 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7952
7953     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7954
7955 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7956
7957     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7958     added gbz80 build to MSVC project.
7959     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7960     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7961     from 8051 stuff and setup so it links using a .lnk file.
7962
7963 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7964
7965     * support/librarian/sdcclib.c: sdcc librarian.
7966     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7967     with sdcclib.
7968
7969 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7970
7971     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7972
7973 2003-07-02  Borut Razem <borut.razem AT siol.net>
7974
7975         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7976         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7977         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7978         src/xa51/main.c, src/z80/main.c:
7979         virtualization of glue() function: each port has it's own glue function,
7980         which is accessed by do_glue function pointer in PORT.general structure
7981
7982 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7983
7984         * DS800C400 fun, improved ROM interface and tinibios.
7985
7986 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7987
7988         * More support for DS80C400. Now includes beginning of interface to ROM.
7989
7990 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7993
7994 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7995
7996         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7997
7998 2003-06-19  Borut Razem <borut.razem AT siol.net>
7999
8000         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8001
8002 2003-06-19  Borut Razem <borut.razem AT siol.net>
8003
8004         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8005         fixed Z80 port - crt0.o: cannot open.
8006
8007 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8008
8009         * support/Util/MySystem.c (merge_command): revert bad fix
8010
8011 2003-06-18  Borut Razem <borut.razem AT siol.net>
8012
8013         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8014
8015 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8016
8017         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8018         option --use-stdout sends errors to stdout instead of stderr.
8019
8020 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8023
8024 2003-06-15  Borut Razem <borut.razem AT siol.net>
8025
8026         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8027         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8028         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8029         fixed width array of pointers replaced with sets;
8030         multiple include and lib paths ared transferred to preprocessor and linker
8031         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8032         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8033         fixed width array of pointers
8034         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8035         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8036         fixupPath(), getPathDifference()
8037         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8038         fixed width array of pointers
8039
8040 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8041
8042         * src/pic16/ralloc.c: fix warnings
8043         * src/pic16/pcode.c: fix warning
8044
8045 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8046
8047          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8048         know all the details, but essentially this set of changes enable
8049         the pic16 port to generate movff instructions and generate assembler
8050         directives,
8051         * src/SDCCmain.c:
8052         * src/pic16/gen.c:
8053         * src/pic16/glue.c:
8054         * src/pic16/pcode.c:
8055         * src/pic16/device.c:
8056         * src/pic16/main.c:
8057         * src/pic16/pcode.h:
8058         * src/pic16/pcoderegs.c:
8059         * src/pic16/ralloc.c:
8060         * src/pic16/ralloc.h:
8061
8062 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8063
8064         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8065         added option --vc, so sdcc errors and warnings are compatible with
8066         Microsoft Visual Studio.
8067
8068 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8069
8070         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8071           device/lib/libfloat.lib: added atof function.
8072
8073 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * doc/sdccman.lyx: updated to Lyx 1.3
8076         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8077         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8078         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8079
8080 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8081
8082         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8083
8084 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8085
8086         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8087           additions to the "related tools/documentation" section
8088
8089 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8092
8093 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8094
8095         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8096         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8097
8098 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8099
8100         * doc/sdccman.lyx: fix double dash and other minor things
8101         * doc/Makefile: fix double dash
8102
8103 2003-05-28  Karl Bongers(patches from Martin Helmling)
8104         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8105           condition and ignore commands.
8106
8107 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8108
8109         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8110           is in parts still quite out of date, I did changes as far as I felt makes sense
8111           for a non-native english speaker.
8112           Please feel free to add to the manual or to correct my changes.
8113         * doc/Makefile: undid touching the date of intermediate tex files.
8114
8115 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8116
8117         * doc/sdccman.lyx: Manual has an index now
8118
8119 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8120
8121         Finalize muluint/mulsint and mululong/mulslong merging:
8122         * device/lib/_mulint.c
8123         * device/lib/_mullong.c
8124         * device/lib/gbz80/mul.s
8125         * device/lib/gbz80/stubs.s
8126         * device/lib/z80/mul.s
8127         * device/lib/z80/stubs.s
8128         * src/SDCCsymt.c (initCSupport)
8129
8130 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8131
8132         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8133         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8134           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8135           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8136           instead of /Zm500.
8137
8138 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8139
8140         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8141           the regression tests I'm not brave enough to enable 245.b, 245.c
8142         * doc/sdccman.lyx: added latex preamble for hyperref package.
8143           Using pdflatex this will give you a hyperlinked pdf file with
8144           bookmarks. (prepend '%' before /usepackage if this breaks something)
8145
8146 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8147
8148          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8149
8150 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8151
8152         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8153
8154 2003-05-21    <johan AT balder>
8155
8156         * src/SDCCglue.c (printIval): fixed bug #739934
8157
8158 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8159
8160         Applied patch from bug 737905 (renamed yylineo to mylineno):
8161         * src/altlex.c
8162         * src/SDCCast.c
8163         * src/SDCglobl.h
8164         * src/SDCC.lex
8165         * src/SDCCsymt.c
8166         * src/SDCCval.c
8167         * src/pic16/pcode.c: Cleaned warnings
8168         * src/pic16/pcodeflow.c: Cleaned warnings
8169         * src/pic16/pcoderegs.c: Cleaned warnings
8170
8171 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8172
8173         * src/pic16/pcode.c: Cleaned warnings
8174         * src/pic16/pcodepeep.c: Cleaned warnings
8175         * src/pic16/ralloc.c: Cleaned warnings
8176
8177 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8178
8179         * doc/sdccman.lyx: fixed bug 739745
8180         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8181
8182 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8183
8184         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8185         it can be defined with CFLAGS when running configure
8186         * src/SDCCmain.c: fixed compiling + linking with object files
8187
8188 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8189
8190         * configure.in: configure for pic16 port,
8191             added --disable-pic16-port
8192         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8193         * src/SDCCmain.c: linkOptions is changed to set *,
8194             added if/endif conditional macros to remove options help
8195             messages from optionsTable when a port is not configured, added
8196             support for the PIc16 port in the ports table, when executing
8197             the compiler with no port specified on command line, a default
8198             port is selected with the new macro DEFAULT_PORT which is
8199             defined in port.h, in setDefaultOptions() linkOptions is removed
8200             from initialization assignment, since now it is a set,
8201             parseCmdLine uses setParseWithComma for linkOptions, in
8202             linkEdit() linkOptions are accessed with new function indexSet()
8203             which returns the i'th item of a set variable. See SDCCset.c, in
8204             linkEdit() when calling buildCmdLine(), added linkOptions as
8205             last argument. Now users can pass arguments to gplink via the
8206             -Wl option, main() uses pic16glue() to glue up pic16 programs
8207         * src/SDCCpeeph.c: various changes to support pic16
8208         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8209             return the i'th item of the set
8210         * src/SDCCset.h: added function prototype for indexSet()
8211         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8212         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8213         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8214             added macro DEFAULT_PORT
8215         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8216         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8217             generated
8218         * src/pic16/glue.c: commented out some error producing lines
8219         * src/pic16/main.c: __config directives are commented out to stop
8220             gpasm complaining and test the linkage with gplink, _linkCmd and
8221             _asmCmd changed to be more gplink and gpasm friendly
8222         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8223             produced an error when parsed, peep rule 12 is added to utilize
8224             movff, but it is commented out since the pCode does not support
8225             yet a command with 2 address arguments
8226
8227 2003-05-18    <johan AT balder>
8228
8229         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8230         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8231 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8232
8233         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8234   Added feature to script commands from file.
8235
8236 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8239         * src/SDCCutil.c: include ctype.h for win32
8240
8241 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8242
8243         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8244
8245 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8246
8247         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8248   Fixed so you can set breakpoints prior to run, run does not stop
8249   on entry now.  Add tbreak.  Other enhancements and fixes for use
8250   with ddd.
8251
8252 2003-05-12  Borut Razem <borut.razem AT siol.net>
8253
8254         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8255
8256 2003-05-11  Borut Razem <borut.razem AT siol.net>
8257
8258         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8259         the path of bin directory, so that PATH is the only env. variable, which has to be set
8260         in case of standard installation.
8261         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8262         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8263         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8264
8265 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8266
8267         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8268         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8269         temp files are in the port dir; clean the gen/test directory when
8270         generating new test.c
8271         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8272         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8273         * support/regression/tests/zeropad.c: added
8274
8275 2003-05-09    <johan AT balder>
8276
8277         * src/SDCCglue.c: fixed bug #597940
8278
8279 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8280
8281         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8282   cache sfr, optimize next,step, fix off by one sourceline,
8283   support ddd list function.
8284         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8285
8286 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8287
8288         * support/regression/HTMLgen.py: added compare_s2f()
8289         * support/regression/Makefile: redo 1.27
8290         * support/regression/generate-cases.py: redo 1.5
8291
8292 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8293
8294         * support/regression/tests/float.c: workaround 33 bit hex constant
8295         * support/regression/tests/simplefloat.c: fix division for host
8296
8297 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8298
8299         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8300         that tame's the PIC's over-aggressive optimizer.
8301
8302 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8303
8304          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8305          support for MSVC.
8306
8307 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8308
8309         Initial support for DS80C400. "Hello world" runs on TINIm400
8310         (with polled I/O).
8311
8312 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8313
8314          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8315          * Some notes on ddd usage added in debugger/README
8316          Martin Helmling adding more features and fixes for ddd GUI debugger.
8317          Code added for nexti, stepi, up, down, and other adjustments.
8318
8319 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8320
8321         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8322         * src/pic/peeph.def Added two rules to optimize carry manipulation
8323         * src/pic/* removed debug printfs
8324
8325 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * debugger/mcs51/cmd.c: added header newalloc.h
8328
8329 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8330
8331         * as/Makefile: new EXEEXT
8332         * as/z80/Makefile: remove trailing slash of BUILDIR
8333         * as/z80/clean.mk: new EXEEXT
8334         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8335         * support/cpp2/Makefile.in: new EXEEXT
8336         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8337
8338 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8339
8340         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8341         EXEEXT was introduced to fix all related problems with targets
8342         "clean", "install" and "uninstall"; a couple of further flaws
8343         especially with "clean" have been fixed too
8344         * as/mcs51/Makefile.in
8345         * as/mcs51/clean.mk
8346         * as/z80/Makefile
8347         * Makefile
8348         * clean.mk
8349         * debugger/mcs51/Makefile.in
8350         * debugger/mcs51/clean.mk
8351         * link/z80/Makefile
8352         * link/z80/Makefile.in
8353         * link/z80/clean.mk
8354         * link/Makefile
8355         * packihx/Makefile.in
8356         * packihx/clean.mk
8357         * sim/ucsim/Makefile
8358         * sim/ucsim/clean.mk
8359         * sim/ucsim/avr.src/Makefile.in
8360         * sim/ucsim/avr.src/clean.mk
8361         * sim/ucsim/s51.src/Makefile.in
8362         * sim/ucsim/s51.src/clean.mk
8363         * sim/ucsim/xa.src/Makefile.in
8364         * sim/ucsim/xa.src/clean.mk
8365         * sim/ucsim/z80.src/Makefile.in
8366         * sim/ucsim/z80.src/clean.mk
8367         * sim/ucsim/main_in.mk
8368         * sim/ucsim/packages_in.mk
8369         * sim/ucsim/gui.src/Makefile.in
8370         * sim/ucsim/gui.src/serio.src/Makefile.in
8371         * sim/ucsim/gui.src/serio.src/clean.mk
8372         * src/Makefile.in
8373         * src/clean.mk
8374         * support/cpp2/Makefile.in
8375         * support/cpp2/clean.mk
8376         * support/makebin/Makefile
8377         * support/makebin/clean.mk
8378         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8379         * doc/sdccman.lyx: --program-suffix no longer needed
8380
8381 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8382
8383          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8384          Martin Helmling added support for ddd GUI debugger.
8385          Code added to display assembly, set variables, and other commands
8386          to interface to ddd.
8387
8388 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8389
8390         * as/Makefile: fix target clean
8391         * as/clean.mk: fix target clean
8392         * as/z80/clean.mk: fix target clean
8393
8394 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8395
8396         * Makefile.common.in: added  AT EXEEXT AT
8397         * configure.in: removed all mingw32 stuff
8398         * configure: rebuilt from configure.in
8399         * doc/sdccman.lyx: updated section "installation"
8400         * support/scripts/sdcc_mingw32: adapted to configure
8401         * support/scripts/sdcc_cygwin_mingw32: added
8402
8403 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8404
8405         * src/pic Added object file support for the PIC port
8406         * src/pic Applied patch from Craig Franklin (this started the object file support)
8407         * src/regression Updated the PIC regression tests for object files
8408
8409 2003-04-20  Borut Razem <borut.razem AT siol.net>
8410
8411         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8412           lklex.c: In function `getfid':
8413           lklex.c:203: warning: array subscript has type `char'
8414         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8415           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8416         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8417           stack handling macros
8418
8419 2003-04-19  Borut Razem <borut.razem AT siol.net>
8420
8421         * "handling space characters in file path" task:
8422         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8423         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8424         * support/Util/MySystem.h: make it self-sufficient
8425         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8426           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8427           handling space characters in file path
8428         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8429           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8430         * support/Util/MySystem.c: handling space characters in executable's path
8431
8432 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8433
8434         * as/z80/Makefile: fix permanent rebuild of z80
8435         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8436         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8437
8438 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8439
8440         * src/SDCCopt.c: add special case optimization to replace modulo by
8441           a power of two with a bitwise AND.
8442
8443 2003-04-18    <johan AT balder>
8444
8445         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8446
8447 2003-04-17    <johan AT balder>
8448
8449         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8450         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8451
8452 2003-04-13  Borut Razem <borut.razem AT siol.net>
8453
8454         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8455         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8456           fixed mingw problem in adl_NORMALIZE_PATH
8457
8458 2003-04-12  Borut Razem <borut.razem AT siol.net>
8459
8460         * fixed "#pragma SAVE/RESTORE can not be nested":
8461         * src/SDCC.lex: reworked pragma handling functions
8462         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8463         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8464
8465 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * src/SDCCutil.c (pathEquivalent): defined but not used
8468         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8469         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8470         * configure: rebuilt from configure.in
8471         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8472         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8473         * device/include/Makefile.in: replace sdcc_datadir
8474         * device/lib/Makefile.in: replace sdcc_datadir
8475         * Makefile.common.in: add LDFLAGS from configure
8476         * packihx/Makefile.in: use LDFLAGS
8477         * src/Makefile.in: use LDFLAGS
8478         * support/cpp2/Makefile.in: add LDFLAGS from configure
8479         * support/makebin/Makefile: use LDFLAGS
8480         * .version: bumped version number to 2.3.5
8481
8482 2003-04-12  Borut Razem <borut.razem AT siol.net>
8483
8484         * completed "different paths" task:
8485         * src/SDCCmacro.c: fixed bug in handling quotes
8486         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8487         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8488
8489 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8490
8491         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8492
8493 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8494
8495         * ds390/gen.c ds390/peeph.def: fix bug 706781
8496
8497 2003-04-11  Borut Razem <borut.razem AT siol.net>
8498
8499         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8500
8501 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8502
8503         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8504         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8505          set - this bit used to not be set...).
8506         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8507           bad code in PIC Port
8508         * src/regression/and2.c added to test bug 609268
8509         * src/regression/Makefile added and2.c to regression test
8510
8511
8512 2003-04-08    <johan AT CP255758-A>
8513
8514         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8515         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8516         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8517
8518 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8519
8520         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8521         fix bug #487815
8522         * support/cpp2/Makefile.in: fix bug #487815
8523         * configure: rebuilt from configure.in
8524         * Makefile.common.in: docdir changed, new path suffixes
8525         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8526         * sdcc_vc_in.h: reflect changes from sdccconf.h
8527         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8528         * src/SDCCutil.h: remove BINDIR hack
8529         * doc/sdccman.lyx: update new path hierarchy
8530
8531 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8532
8533         * src/SDCCpeeph.c: added okToRemoveSLOC test
8534
8535 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8536
8537         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8538
8539 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8540
8541         * src/SDCCpeeph.c: added labelIsReturnOnly test
8542         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8543
8544 2003-04-05    <johan AT balder>
8545
8546         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8547         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8548         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8549         * src/SDCCast.c: fixed a warning
8550         * src/SDCCast.h: fixed a warning
8551         * src/SDCCicode.c (operandFromAst): fixed a warning
8552
8553 2003-04-04    <johan AT balder>
8554
8555         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8556         * src/SDCCast.c (decorateType): fixed bug #715076
8557         * src/SDCC.y: fixed bug #702907
8558
8559 2003-04-03    <johan AT balder>
8560
8561         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8562         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8563         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8564         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8565         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8566
8567 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8568
8569         * _decdptr.c: fix return values
8570         * _gptrget.c: fix return values
8571         * _gptrgetc.c: fix return values
8572         * _gptrput.c: fix return values
8573         * _mulint.c: fix return values
8574         * as/z80/Makefile: fix 'make -j' problem
8575
8576 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8579         * configure.in: big cleanup, updated to autoconf 2.5x
8580         * configure: rebuilt from configure.in
8581         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8582         * sdcc_vc_in.h: reflect changes from sdccconf.h
8583         * doc/Makefile: fixed a flaw in "make install"
8584
8585 2003-04-02    <johan AT balder>
8586
8587         * src/ds390/gen.c (genCmp): no comments
8588         * src/mcs51/gen.c (genCmp): no comments
8589         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8590         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8591
8592 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * support/regression/generate-cases.py: place generated file in given sub directory
8595         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8596         * support/regression/Makefile: improvements for 'make -j';
8597         side effect: it's simpler and faster now
8598
8599 2003-03-31  Borut Razem <borut.razem AT siol.net>
8600
8601         * src/z80/main.c: link-{port} and as-{port} defined without path
8602         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8603
8604 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8605
8606         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8607
8608 2003-03-30  Borut Razem <borut.razem AT siol.net>
8609
8610         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8611           changed type of list parameter to set
8612         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8613         * src/port.h: changed type of do_assemble() parameter to set
8614         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8615           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8616           definition of "cppoutfilename" macro with NULL value in preProcess()
8617         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8618         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8619         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8620           replaced with set *binPathSet
8621         * shash_add() deallocates the item, if allready exsists, before adding the new one
8622         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8623
8624 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8625
8626         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8627           a nested for loop bug in the PIC port
8628         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8629           for loops
8630
8631 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8632
8633         * support/Util/dbuf.h: remove C++ stuff to make it portable
8634
8635 2003-03-28  Borut Razem <borut.razem AT siol.net>
8636
8637         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8638           literal strings in stringLiteral()
8639         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8640         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8641           to the project
8642
8643 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8644
8645         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8646
8647 2003-03-26    <johan AT balder>
8648
8649         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8650         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8651         * src/SDCCast.c (decorateType): fixed " -v < 3"
8652
8653 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8656         Added Lenny Story's debug infrastructure changes:
8657         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8658         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8659         * src/cdbFile.c: added
8660         * src/SDCCdebug.c: added
8661         * src/SDCCdebug.h: added
8662         * src/SDCCast.c (createFunction)
8663         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8664         * src/SDCCmain.c (parseCmdLine, main)
8665         * src/SDCCmem.c (redoStackOffsets)
8666         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8667         * src/SDCCsymt.h
8668         * src/common.h
8669         * src/avr/gen.c (genAVRCode)
8670         * src/ds390/gen.c (gen390Code)
8671         * src/mcs51/gen.c (gen51Code)
8672         * src/pic/gen.c (genpic14Code)
8673         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8674         * src/xa51/gen.c (genXA51Code)
8675         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8676
8677 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8678
8679         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8680         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8681
8682 2003-03-22    <johan AT balder>
8683
8684         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8685
8686 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8687
8688         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8689         * doc/cdbfileformat.lyx: added, written by Lenny Story
8690         * doc/Makefile: added cdbfileformat.lyx
8691         * doc/clean.mk: added cdbfileformat.lyx
8692
8693 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8694
8695         * src/mcs51/peeph.def: fix bug #705773
8696
8697 2003-03-20    <johan AT balder>
8698
8699         An sfr/sbit can have an "at #" AND an initializer
8700         * src/SDCCsymt.c (checkSClass):
8701         * src/SDCCmem.c (allocGlobal):
8702         * src/SDCCmem.c (allocLocal):
8703         * src/SDCCast.c (createBlock):
8704
8705 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8706
8707         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8708
8709 2003-03-16    <johan AT balder>
8710
8711         Undid the hackup of const and volatile, the problem is much bigger
8712         * src/SDCC.y:1.65
8713         * src/SDCCast.c:1.171
8714         * src/SDCCglue.c:1.138
8715         * src/SDCCicode.c:1.146
8716         * src/SDCCsymt.c:1.150
8717         * src/SDCCval.c:1.65
8718
8719 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8720
8721         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8722         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8723
8724 2003-03-13    <johan AT balder>
8725
8726         Hackup const and volatile modifiers in type chains a bit:
8727         * src/SDCC.y:1.63
8728         * src/SDCCast.c:1.169
8729         * src/SDCCglue.c:1.136
8730         * src/SDCCicode.c:1.143
8731         * src/SDCCsymt.c1.146
8732         * src/SDCCsymt.h1.59
8733         * src/SDCCval.c:1.63
8734
8735 2003-03-12    <johan AT balder>
8736
8737         * src/SDCCBBlock.h: more LRH debugging junk
8738         * src/SDCCcflow.h: more LRH debugging junk
8739         * src/SDCCloop.c: more LRH debugging junk
8740         * src/SDCC.y (struct_declaration): fixed bug #697590
8741         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8742         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8743         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8744
8745 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8746         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8747         test function names must now match exactly).
8748         * src/SDCCcse.c: added special case in findCheaperOp to allow
8749         extending a short integer. Makes less awful code for bug 700121 test case.
8750
8751 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8752
8753         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8754         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8755
8756 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8757
8758         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8759         actually called (operandsNotEqual() was called for all
8760         operandsNotEqualX tests).
8761
8762 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8763
8764         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8765         with shorter literals. Fixes bug 700121.
8766
8767 2003-03-11    <johan AT balder>
8768
8769         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8770
8771 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8772
8773         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8774         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8775
8776 2003-03-10  Borut Razem <borut.razem AT siol.net>
8777
8778         * src/SDCCmain.c: pipe preprocessor's output
8779         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8780         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8781         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8782         which closes all pipes in pipeSet set
8783         * src/SDCCset.c: free deleted item in function deleteSetItem()
8784         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8785         moved from z80 to src subproject
8786         * .version: increased version number to 2.3.4
8787
8788 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8789
8790         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8791         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8792         * support/regression/ports/xa51/spec.mk: fix typo
8793
8794 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8795
8796         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8797
8798 2003-03-09  Borut Razem <borut.razem AT siol.net>
8799
8800         * src/SDCCmain.c: pipe preprocessor's output
8801         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8802         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8803         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8804         which closes all pipes in pipeSet set
8805         * src/SDCCset.c: free deleted item in function deleteSetItem()
8806         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8807         moved from z80 to src subproject
8808
8809 2003-03-09  Borut Razem <borut.razem AT siol.net>
8810
8811         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8812         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8813         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8814         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8815         * src/SDCCglobl.h: unification of WIN32 native definitions
8816
8817 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8818
8819         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8820
8821 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8822
8823         * src/configure.in:   check for endianess (even while cross-compiling)
8824         * src/configure:      check for endianess (even while cross-compiling)
8825         * src/configure_in.h: check for endianess (even while cross-compiling)
8826         * src/avr/gen.c:        remove old endianess stuff
8827         * src/mcs51/gen.c:      remove old endianess stuff
8828         * src/ds390/gen.c:      remove old endianess stuff
8829         * src/pic/gen.c:        remove old endianess stuff
8830         * src/pic/genarith.c:   remove old endianess stuff
8831         * src/pic/glue.c:       fix endianess check
8832         * src/pic16/gen.c:      remove old endianess stuff
8833         * src/pic16/genarith.c: remove old endianess stuff
8834         * src/pic16/glue.c:     fix endianess check
8835         * src/xa51/gen.c:       remove old endianess stuff
8836         * src/z80/gen.c:        fix endianess check
8837         * src/SDCCglue.c:       fix endianess check
8838         * src/ds390/peeph.def: fix bug 700036
8839
8840 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8841
8842         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8843         * src/configure: find appropriate data-types on host for SDCC's int and long
8844         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8845         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8846         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8847
8848 2003-03-07    <johan AT balder>
8849
8850         Just a big NOOP:
8851                 some minor cleanups before the big shot
8852                 OP_DEFS and OP_USES now use Kevin's protection
8853                 new option --nolabelopt
8854
8855         * src/SDCCBBlock.c:
8856         * src/SDCCast.c,:
8857         * src/SDCCcflow.c:
8858         * src/SDCCcse.c:
8859         * src/SDCCicode.c:
8860         * src/SDCCicode.h:
8861         * src/SDCClabel.c:
8862         * src/SDCCloop.c:
8863         * src/SDCCmain.c:
8864         * src/ds390/ralloc.c:
8865         * src/mcs51/ralloc.c:
8866         * src/pic/ralloc.c:
8867         * src/xa51/ralloc.c:
8868         * src/z80/ralloc.c:
8869
8870 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8871
8872         * src/pic/pcode.c (get_op): fix 64 bit warnings
8873         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8874         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8875         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8876         * support/regression/tests/malloc.c: fix 64 bit warnings
8877
8878 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8879
8880         * src/mcs51/gen.c (genMinus): fixed bug 696436
8881
8882 2003-03-02  Borut Razem <borut.razem AT siol.net>
8883
8884         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8885
8886 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8887
8888         * configure.in: test for mkstemp
8889         * sdccconf_in.h: add HAVE_MKSTEMP
8890
8891 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8892
8893         * device/include/ctype.h: removed warning while using --stack-auto
8894         * device/include/malloc.h: removed warning while using --stack-auto
8895         * device/include/string.h: removed warning while using --stack-auto
8896
8897 2003-02-23  Borut Razem <borut.razem AT siol.net>
8898
8899         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8900         because NDEBUG is defined (see man assert)
8901         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8902
8903 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8904
8905         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8906         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8907
8908 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8909
8910         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8911         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8912
8913 2003-02-18    <johan AT balder>
8914
8915         * as/mcs51/asmain.c (asmbl): module can start with a digit
8916         * as/z80/asmain.c (asmbl): module can start with a digit
8917
8918 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8919
8920         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8921         * src/asm.c: fix pipe() for Mingw32
8922
8923 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8924
8925         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8926         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8927         make -V work again; --c1mode reads now from stdin
8928         * doc/sdccman.lyx: added --c1mode
8929         * support/Util/SDCCerr.c: new messages for c1 mode
8930         * support/Util/SDCCerr.h: new messages for c1 mode
8931         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8932
8933 2003-02-15    <johan AT balder>
8934
8935         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8936
8937 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8938
8939         * doc/sdccman.lyx: Environment variables, -o and other minor things
8940
8941 2003-02-14    <johan AT balder>
8942
8943         * src/xa51/main.c: before anyone really tries to use it :)
8944
8945         * Install doc's in share/sdcc/doc
8946         * removed some obsolete files
8947         * Do a proper make distclean and uninstall
8948         M Makefile.common.in
8949         R sdccbuild.sh
8950         M as/Makefile
8951         M device/include/Makefile.in
8952         M device/lib/Makefile.in
8953         M doc/sdccman.lyx
8954         M link/Makefile
8955         M sim/ucsim/doc/Makefile.in
8956         M src/clean.mk
8957         R src/avr/peeph.rul
8958         R src/xa51/peeph.rul
8959         M support/cpp2/Makefile.in
8960         M support/makebin/Makefile
8961
8962
8963 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8964
8965         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8966
8967 2003-02-10  Borut Razem <borut.razem AT siol.net>
8968
8969         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8970         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8971         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8972         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8973         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8974         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8975         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8976         src/z80/Makefile.bcc: Borland Makefile cleanup
8977         * as/z80/Makefile.bcc: Added Borland Makefile
8978         * support/cpp2/borland.h: Removed
8979
8980 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8981
8982         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8983         * src/SDCC.lex: new pragma NOIV
8984         * src/SDCCglobl.h: new pragma NOIV
8985         * src/SDCCmem.c: new pragma NOIV
8986
8987 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8988
8989         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8990
8991 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8992
8993         * src/SDCCmain.c: signal handling is switched off by --debug
8994         * doc/Makefile: small fix for install; use clean.mk again
8995         * doc/clean.mk: clean *.pdf and *.html too
8996
8997 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9000         * device/lib/printfl.c: fix a ds390 bug by making it portable
9001         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9002         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9003         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9004         * debugger/mcs51/cmd.c: converted multi-line string literals
9005         * sim/ucsim/globals.cc: converted multi-line string literals
9006         * src/SDCCmain.c: introduced signal handler to remove temp files
9007         * doc/Makefile: small tweaks, implement clean
9008         * doc: removed generated files
9009
9010 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9011
9012         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9013         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9014         Address Record is not correctly generated for DS390."
9015
9016 2003-02-02  Borut Razem <borut.razem AT siol.net>
9017
9018         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9019         * as/mcs51/asm.h: fixed compilation with Borland C
9020         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9021         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9022         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9023         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9024         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9025         src/z80/Makefile.bcc: delete $(LIB) only if exist
9026         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9027
9028 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9029
9030         * device/include/malloc.h: introduced NULL
9031         * device/include/string.h: introduced NULL
9032         * device/include/stdlib.h: introduced NULL
9033         * device/lib/_memcpy.c: removed NULL
9034         * device/lib/_strcat.c: removed NULL
9035         * device/lib/_strchr.c: removed NULL
9036         * device/lib/_strcmp.c: removed NULL
9037         * device/lib/_strcpy.c: removed NULL
9038         * device/lib/_strcspn.c: removed NULL
9039         * device/lib/_strlen.c: removed NULL
9040         * device/lib/_strncat.c: removed NULL
9041         * device/lib/_strncmp.c: removed NULL
9042         * device/lib/_strncpy.c: removed NULL
9043         * device/lib/_strpbrk.c: removed NULL
9044         * device/lib/_strrchr.c: removed NULL
9045         * device/lib/_strspn.c: removed NULL
9046         * device/lib/_strstr.c: removed NULL
9047         * device/lib/_strtok.c: removed NULL
9048         * device/lib/malloc.c: removed NULL, include own header
9049
9050 2003-02-02    <johan AT balder>
9051
9052         * 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
9053         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9054         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9055         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9056         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9057         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9058
9059 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9060
9061         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9062         area 'DATA'"
9063
9064 2003-02-01    <johan AT balder>
9065
9066         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9067
9068 2003-01-31    <johan AT CP255758-A>
9069
9070         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9071
9072 2003-01-30    <johan AT balder>
9073
9074         * src/SDCCBBlock.c: automatic bug detection
9075         * src/SDCCicode.c: automatic bug detection
9076
9077 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9078
9079         * src/SDCCglobl.h:   now --xram-size 0 works
9080         * src/SDCCmain.c:    now --xram-size 0 works
9081
9082 2003-01-29    <johan AT balder>
9083
9084         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9085
9086 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9087
9088         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9089         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9090         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9091         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9092         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9093         * src/SDCCmain.c:    Added options --xram-size and --code-size
9094
9095 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9096
9097         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9098         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9099
9100 2003-01-27    <johan AT balder>
9101
9102         * src/SDCC.y: fixed bug #613764
9103
9104 2003-01-26    <johan AT balder>
9105
9106         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9107         * src/SDCCsymt.h: fixed bug #673374
9108         * src/SDCCglue.c: fixed bug #661910
9109         * src/SDCCast.c: fixed bug #458099 and 673374
9110
9111 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9114         * as/mcs51/strcmpi.h: added
9115         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9116         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9117         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9118         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9119         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9120         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9121         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9122         * as/mcs51/Makefile.aslink: new module strcmpi
9123         * as/mcs51/Makefile.asx8051: new module strcmpi
9124         * as/mcs51/Makefil.bcc: new module strcmpi
9125         * as/mcs51/Makefile.in: new module strcmpi
9126         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9127
9128 2003-01-26    <johan AT balder>
9129
9130         * src/SDCCglue.c: reverted back to 1.124
9131         * src/SDCCast.c: reverted back to 1.156
9132         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9133
9134 2003-01-25    <johan AT balder>
9135
9136         * src/SDCCglue.c: A better fix for bug #661910
9137         * src/SDCCast.c: A better fix for bug #661910
9138         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9139
9140 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9141
9142         * src/Makefile.in: remove spawn.o
9143         * src/SDCCmain.c: remove spawn.h
9144         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9145         * src/spawn.c: removed
9146         * src/spawn.h: removed
9147         * support/regression/ports/ds390/spec.mk: link with -r
9148
9149 2003-01-24    <johan AT CP255758-A>
9150
9151         * src/ds390/gen.c (aopOp): fixed bug #667458
9152         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9153         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9154         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9155
9156 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * src/mcs51/peeph.def: better assembler identation by Frieder
9159         * src/mcs51/gen.c: better assembler identation by Frieder
9160
9161 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9162
9163         * as/z80/string.h: removed for gcc 3.2
9164         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9165         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9166
9167 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9170         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9171         * support/regression/Makefile: separate temp files for ports
9172         * support/regression/generate-cases.py: separate temp files for ports
9173         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9174         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9175
9176 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9177
9178         * moved tinitalk to device/examples/ds390
9179
9180 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9181
9182         * as/mcs51/lkmem.c: rflag is for DS390
9183         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9184         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9185                          (linkEdit): move mem- and map-files the same way as ihx-files
9186         * src/z80/main.c (_setDefaultOptions): removed --generic
9187         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9188         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9189         * src/pic/glue.c (picglue): --c1mode works again
9190         * src/pic16/glue.c (pic16glue): --c1mode works again
9191         * src/asm.c (printCLine): fix #660034
9192
9193 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9194
9195         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9196         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9197         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9198         * as/mcs51/lkmem (summary): better fix for sp problem
9199         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9200         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9201         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9202                                               remove --stack-after-data
9203
9204 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9205
9206         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9207         * src/SDCCutil.c (join): ugly bug: missing '\0'
9208         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9209
9210 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9211
9212         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9213         * src/port.h: typo
9214         * src/pic/main.c (_asmCmd): gpasm supports -o
9215         * src/z80/main.c: more general macros
9216         * device/lib/Makefile.in: remove intermediate files
9217
9218 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * .version: Bumped version number to 2.3.3
9221         * src/SDCCBBlock.c: new option -o
9222         * src/SDCCglobl.h: new option -o
9223         * src/SDCCglue.c: new option -o
9224         * src/SDCCmain.c: new option -o
9225         * src/asm.c: new option -o
9226         * src/ds390/main.c: new option -o
9227         * src/pic/glue.c: new option -o
9228         * src/pic/pcode.c: new option -o
9229         * src/pic/ralloc.c: new option -o
9230         * src/pic16/glue.c: new option -o
9231         * src/pic16/pcode.c: new option -o
9232         * src/pic16/ralloc.c: new option -o
9233         * src/z80/main.c: new option -o
9234         * device/lib/Makefile.in: use -o
9235         * support/regression/ports/ds390/spec.mk: use -o
9236         * support/regression/ports/gbz80/spec.mk: use -o
9237         * support/regression/ports/mcs51/spec.mk: use -o
9238         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9239         * support/regression/ports/z80/spec.mk: use -o
9240         * support/regression/ports/ucz80/spec.mk: use -o
9241         * support/regression/ports/xa51/spec.mk: use -o
9242         * support/regression/fwk/lib/timeout.c: fix usage string
9243
9244 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9245         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9246
9247 2003-01-07    <johan AT balder>
9248
9249         * src/SDCCast.c (decorateType): fixed bug #600035
9250
9251 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9252         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9253         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9254         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9255         * src/pic/pcode.c: outcommented unused variable to remove warnings
9256         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9257
9258 2003-01-06    <karl AT turbobit.com>
9259         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9260    regression tests.
9261
9262 2003-01-06    <johan AT balder>
9263
9264         * src/SDCCicode.c: fixed array add
9265
9266 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9267         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9268         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9269
9270 2003-01-04    <johan AT balder>
9271
9272         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9273
9274 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9275         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9276
9277 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9278         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9279         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9280
9281 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9282         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9283
9284 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9285         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9286
9287 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9288         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9289
9290 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9291
9292     * in \sdcc\as\mcs51\ changed these files in order to create an
9293     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9294     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9295     following files to include the previous two files: aslink.dsp,
9296     Makefile.aslink, Makefile.bcc, and Makefile.in.
9297
9298     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9299     .adb instead of .cdb
9300
9301 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9302
9303         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9304         value from option --iram-size.
9305
9306 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9307
9308         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9309         dram[] array.
9310
9311 2002-09-18    <wiml AT hhhh.org>
9312
9313         * SDCClrange.h: exposed setFromRange() and setToRange()
9314         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9315           packRegsForAccUse() (bug 542397)
9316         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9317           multiple times and emitting the fetch operations more than once
9318           added aopGetUsesAcc() function to allow binary operators to
9319           fetch their operands in the correct order; made genMinus() emit
9320           compact code for X = LITERAL - Y
9321
9322 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9323         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9324         sprintf() in line 1267.
9325
9326 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9327         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9328         like ports.
9329
9330 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9331         Changes to aslink (All the changes are marked with 'JCF'):
9332
9333         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9334         summary().
9335
9336         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9337         area BSEG.  Also moves, if possible, the DATA area down into the internal
9338         ram so more space is available.
9339
9340         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9341         sflag.
9342
9343         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9344         not bytes.  Function summary() which creates a memory usage summary
9345         file with extension .mem.  Reports of overlaping stack and small stack
9346         size.  If the space for the stack is less than 16 bytes aslink trows a
9347         warning.
9348
9349         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9350         the 8051.  Option 'y' for memory summary output file.
9351
9352         Changes to sdcc (All the changes are marked with 'JCF'):
9353
9354         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9355
9356         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9357         overlaying area for it (uses RegBankUsed[4]).
9358
9359         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9360         bank zero as used by default.  By default aslink locates the stack
9361         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9362         the creation of the .mem file.  Delegates the allocation of data area
9363         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9364         the begining of the stack area to aslink.
9365
9366         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9367         glue() in SDCCglue.c creates an area for it.
9368
9369 2002-09-03  Borut Razem <borut.razem AT siol.net>
9370         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9371         sdcc/src/pic/glue.c:
9372         introduced atexit() handler for teporay files removal in case of
9373         errors, assertions, ...
9374
9375 2002-08-29  Borut Razem <borut.razem AT siol.net>
9376         * sdcc/support/cpp2/auto-host_vc_in.h:
9377         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9378         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9379         Maybe there is a similar problem with BORLANDC? It should be checked!
9380
9381         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9382         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9383         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9384         was not executed, and the compiler (cl) launched a warning:
9385         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9386
9387 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9388         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9389
9390 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9391         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9392
9393         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9394           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9395           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9396           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9397           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9398           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9399           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9400         - added Release configuration in VS projects
9401         - review of compiler an linker options
9402         - VC .exe files are generated in bin_vc directory, not to interfere
9403           with binaries generated from other projects (cygwin, mingw, bcc ...)
9404
9405         * sdcc/src/yacc.dsp: added
9406
9407         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9408         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9409         and insert the version number definitions from .version
9410
9411         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9412
9413         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9414         added - genarate auto-host.h using auto-host_vc_in.h as template
9415
9416         * sdcc/sdcc_vc.h,
9417         removed from CVS, generated automatically
9418
9419 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9420         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9421
9422 2002-08-11  Borut Razem <borut.razem AT siol.net>
9423         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9424
9425 2002-08-10  Borut Razem <borut.razem AT siol.net>
9426         * src/SDCCmain.c (main):
9427         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9428         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9429         The consequence was that some temporary files were not removed.
9430
9431         * src/SDCCglue.c:
9432         unification of code in functions tempfilename() and tempfile():
9433         function tempnam() is defined in Visual Studio 6.0 and .NET
9434
9435         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9436
9437         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9438           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9439         - removed compiler command line option /WX: Treats all warnings as errors
9440         - update a list of source files, included into the project
9441
9442         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9443           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9444         changed project type to Generic Project so that can be correcly converted to VS.NET project
9445
9446         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9447
9448         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9449
9450         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9451
9452         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9453         added return 0 statements after assert() to make compiler happy
9454
9455         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9456         added newline in the def file to keep MSC compiler satisfied
9457
9458         * sdcc/src/z80/gen.c:
9459         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9460           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9461         - solved MSC error in function aopDump()
9462
9463         * sdcc_vc.h: define PREFIX as "\\sdcc"
9464
9465 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9466         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9467
9468 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9469         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9470         - Rewrote the register banking algorithm.
9471         - Added pCode live-range analysis to registers (for now, only non-used and
9472         singly-used registers optimized away)
9473
9474         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9475
9476         * 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.
9477
9478 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9479         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9480
9481 2002-04-22  Michael Hope  <michaelh AT vroom>
9482
9483         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9484
9485         * configure.in (DD_COPT): Added include support required for gbdk.
9486
9487         * .version: Bumped version number just to increase it.
9488
9489         * src/SDCCmain.c: Added -nostdinc to the default options.
9490
9491 2002-04-15  Michael Hope  <michaelh AT vroom>
9492
9493         * device/lib/z80/printf.c (sprintf): Added.
9494
9495         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9496
9497         * src/z80/peeph.def: Added transpose redundent load rule.
9498
9499         * src/z80/main.c: Added force callee saves for jaune.
9500
9501         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9502
9503         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9504
9505 2002-03-28  Johan Knol  <johan AT balder>
9506
9507         * src/SDCCval.c: fixed bug #532436
9508
9509 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9510         * /src/port.h:
9511         Added "char *Processor" field to the port structure.
9512
9513         * /src/SDCCmain.c:
9514         Added -p option. Allows port dependent processor to be specified.
9515
9516         * all ports:
9517         Initialized the new field char *Processor field to NULL in all ports
9518
9519         * /src/pic/*:
9520         Compiler generated registers for interrupt context saving
9521         were not getting allocated.
9522
9523 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9524
9525         * /src/SDCCast.c:
9526         Fixed left shift. Will promote the left side of a left shift
9527         if a) left shifting more than size of operand or b) when assigned
9528         to something size > size of left side
9529
9530 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9531         * src/pic/*
9532         tons of changes. Register allocation has been
9533         rewritten. Added customization for the various PICs. Flow
9534         analysis is restructured. ...
9535
9536         * src/pic/device.h:
9537         Added
9538
9539         * src/pic/device.c:
9540         Added. device.c is a PIC port hack to accomodate variations
9541         in PIC devices.
9542
9543 2002-03-13  Michael Hope  <michaelh AT vroom>
9544
9545         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9546
9547 2002-03-04  johanknol  <johanknol AT manik>
9548
9549         * /src/SDCCval.c: fixed
9550
9551         const unsigned char arr[][2] = { { 0, 1 } };
9552         t18.c:1: error: Initializer element is not constant
9553
9554 2002-03-04  bela  <bela AT manik>
9555
9556         * /device/include/mcs51reg.h:
9557         ds89c420 register definition update
9558
9559 2002-03-03    <johan AT FRIJA>
9560
9561         * support/Util/SDCCerr.c: did something, but don't no why anymore
9562
9563         * support/regression/tests/bug-524691.c: made it a little less shy
9564
9565         * src/SDCCast.c (decorateType): fixed bug #524697
9566
9567         * src/SDCCast.c: made some lineno improvements
9568
9569         * src/SDCCval.c (getNelements): changed warning to error
9570
9571         * src/SDCCglue.c (printIvalArray): changed warning to error
9572
9573         * src/SDCCicode.c: fixed a warning for mingw
9574
9575         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9576
9577         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9578
9579 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9580
9581         * src/ds390/peeph.def:
9582         Added some more peephole rules
9583
9584         * src/ds390/gen.c: Various fixes & enhancements
9585
9586         * src/SDCClrange.c, src/SDCClrange.h:
9587         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9588
9589         * src/ds390/ralloc.c:
9590         various fixes & enhancements (ds390) specific
9591
9592         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9593         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9594         from rallocs.
9595
9596         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9597
9598 2002-03-02    <johan AT FRIJA>
9599
9600         * src/SDCCast.c (decorateType): fixed bug #524708
9601
9602         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9603
9604         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9605
9606 2002-03-01  Michael Hope  <michaelh AT vroom>
9607
9608         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9609
9610         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9611
9612 2002-03-01    <johan AT FRIJA>
9613
9614         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9615
9616         * src/SDCCast.c (decorateType): fixed bug #524209
9617
9618         * src/SDCCval.c (valNot): fixed bug #524195
9619
9620 2002-02-26    <johan AT balder>
9621
9622         * src/xa51/gen.c: fixed a warning
9623
9624         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9625
9626         * src/SDCCast.c (decorateType): fixed bug #522534
9627
9628 2002-02-23    <johan AT balder>
9629
9630         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9631
9632 2002-02-22    <johan AT balder>
9633
9634         * src/SDCCast.c: fixed bug #514865
9635
9636         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9637
9638 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9639
9640         * sdcc/src/SDCCloop.c:
9641         Previous fix was not good. basic blocks that have "break" or "return" are
9642         not really partof a loop , but live ranges used in these blocks should
9643         be live thru the entire loop, so set partOfLoop but don't add them to
9644         loop region
9645
9646 2002-02-21    <johan AT FRIJA>
9647
9648         * src/SDCCcse.c: fixed bug #514308
9649
9650 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9651
9652         * src/SDCCloop.c:
9653         Fixed BUG #519583. If a conditional block ended in a return/break
9654         statement inside a loop, it was not being considered part of the loop.
9655
9656         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9657
9658 2002-02-10  Karl Bongers <karl AT turbobit.com>
9659
9660         * debugger/*:
9661         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9662         with lots of comments and notes.
9663
9664         * device/examples/test2.c:
9665         Fix bug, "red" variable not being initialized(compiler complained).
9666
9667         * device/examples/Makefile, examples/test3.c:
9668         Add Makefile in device/examples folder, compiles test3.c
9669         for use as a multiple module SDCDB test case.
9670
9671         * sim/ucsim/cmd.src/cmdset.cc:
9672         Took out debug printfs in ucsim "next" command.
9673
9674         * sim/ucsim/xa.src:
9675         Karl and Johan start ucsim XA support.  Most dissassembly working,
9676         about 75% emulation done(plenty of work remaining).
9677
9678         * sim/ucsim/z80.src:
9679         Add Z80 support to ucsim, add test-ucz80 regression test,
9680         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9681         Notice z80 compiler fails on examples/test3.c/crc code.
9682
9683 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9684
9685         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9686         Added support for --parms-in-bank1
9687
9688         * src/ds390/peeph.def:
9689         added a few more peephole optimzations
9690
9691         * src/ds390/main.c:
9692         1) added __builtin_inp & __builtin_outp used to read in data of given length
9693            from a memory mapped port
9694         2) added __builtin_memcmp
9695         3) added __builtin_swapw swap bytes of a short
9696
9697         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9698         1) handle multiple send & receives from register bank1
9699         2) ralloc can now allocate DPTR1 to some liveRanges
9700
9701         * src/SDCCsymt.c, src/SDCCsymt.h:
9702         changes to handle multiple sends & receives
9703
9704         * src/SDCCptropt.h:
9705         added some pointer arithmetic optimization
9706
9707         * src/SDCCptropt.c:
9708         added some pointer arithmetic optimizations but not stable yet so not
9709         called from anywhere (will get this working shortly)
9710
9711         * src/SDCCopt.c: fixed for multiple sends & receives
9712
9713         * src/SDCCmain.c:
9714         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9715         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9716            set preprocessor defines (depending on options)
9717
9718         * src/SDCCicode.c, src/SDCCicode.h:
9719         changes made to handle multiple sends & receives
9720
9721         * src/SDCCglobl.h:
9722         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9723
9724         * src/SDCCcse.c, src/SDCCcse.h:
9725         added function findbackward def (to be used in upcoming optimization)
9726
9727         * src/SDCCcflow.c, src/SDCCcflow.h:
9728         added function returnAtEnd - to determine if a basic block terminates with
9729         a RETURN iCode
9730
9731         * src/SDCCast.c, src/SDCCast.h:
9732         added option parms-in-bank1
9733
9734         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9735         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9736         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9737         adjusted for --parms-in-bank1 option
9738
9739         * device/include/string.h:
9740         donot redefine "reentrant" keyword
9741
9742         * device/include/ds80c390.h: Added some more SFRs
9743
9744 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9745
9746         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9747
9748 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9749
9750         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9751
9752 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9753
9754         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9755
9756 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9757
9758         * Added --xram-movc option
9759
9760 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9761
9762         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9763
9764 2002-01-11  Johan Knol
9765
9766         * Added math lib of Jesus Calvino-Fraga
9767
9768 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9769
9770         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9771         * support/regression/Makefile: new target test-mcs51-stack-auto
9772         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9773
9774 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9775
9776         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9777
9778 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9779
9780         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9781
9782 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9783
9784         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9785
9786         * src/SDCCglue.h: add definition for printIvalChar()
9787
9788 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9789
9790         * src/SDCCast.c: fix #498138 by Johan
9791
9792         * src/SDCCglue.c: fix #498138 by Johan
9793
9794 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9795
9796         * support/regression/Makefile: fix clean
9797
9798         * support/regression/ports/ds390/support.c: fix transmission of last character
9799
9800 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9801
9802         * /sdcc/src/ds390/gen.c:
9803         a) improved computing address of stack variable
9804         b) took out some #if 0 code
9805         c) improved parmBytes adjustment
9806         d) improved genPlusIncr & genMinusIncr
9807         e) genCmp could generate bad code (when left assigned to DPTR)
9808         f) Fixed bug in hasInc
9809
9810         * /sdcc/src/ds390/ralloc.c:
9811         a) packRegsForSupport could mess up live information (Fixed)
9812         b) packRegsDPTRuse could be incorrect for left & right shift
9813
9814         * /sdcc/src/mcs51/ralloc.c:
9815         packRegsForSupport could mess up the live information (Fixed)
9816
9817         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9818
9819         * /sdcc/src/SDCCast.c:
9820         can reverse a loop even if function call is present as long
9821         as the loop control variable is local & is not passed as parameter
9822
9823 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9824
9825         * /sdcc/ChangeLog: *** empty log message ***
9826
9827         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9828         More builtin function additions for TININative
9829
9830         * /sdcc/src/ds390/ralloc.c:
9831         Had broken the regression testsuite
9832
9833         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9834
9835         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9836         Added funcattr hasStackParms will be set for reentrant functions when there
9837         are paramteres on the stack, this helps in minimizing frame pointer generation
9838         typeFromStr can handle function pointers now
9839
9840         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9841         *** empty log message ***
9842
9843 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9844
9845         * /src/ds390/gen.c, /src/ds390/main.c:
9846         More builtin function additions for TININative
9847
9848         * /src/ds390/ralloc.c:
9849         Had broken the regression testsuite
9850
9851         * /src/SDCCast.c: Fixed a bug in dumptree
9852
9853         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9854         Added funcattr hasStackParms will be set for reentrant functions when there
9855         are paramteres on the stack, this helps in minimizing frame pointer generation
9856         typeFromStr can handle function pointers now
9857
9858         * /doc/builtins.txt, /doc/TININative.txt:
9859         *** empty log message ***
9860
9861
9862 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9863
9864         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9865         ALPHA version for -mTININative
9866
9867         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9868         updated to reflect changes in the port structure
9869
9870         * /src/port.h:
9871         added function do_assemble (similar to do_link) if non-null this function
9872         will be called to do assembly (-mTININative) requires a multi command
9873         assembly
9874         added function genAssemblerEnd will be called to generate assembler Epilogue
9875
9876         * /src/SDCCsymt.c:
9877         added _JavaNative to debug info printing
9878
9879         * /src/SDCCmain.c: added option --tini-libid
9880         added port->do_assemble function (-mTININative) has a multi command assemble
9881
9882         * /src/SDCCglue.c: Disabled "constExpr" check
9883         added port->genAssemblerEnd function
9884
9885         * /src/SDCCglobl.h: Added option --tini-libid value
9886
9887         * /src/SDCCast.h:
9888         tookout optimizeCompare from the header (has no external references)
9889
9890         * /src/SDCCast.c: made one more function "static"
9891
9892 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9893
9894         * src/z80/mappings.i: Added z80asm support.
9895
9896         * src/z80/main.c: Added z80asm support on --asm=z80asm
9897
9898         * src/z80/gen.c: Fixed asm portability issues.
9899
9900         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9901
9902         * src/SDCCglue.c (printExterns): Added global/extern split.
9903
9904 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9905
9906         * support/regression/Makefile: added test for mcs51 model large
9907
9908         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9909
9910         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9911
9912 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9913
9914         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9915
9916 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9917
9918         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9919
9920         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9921
9922 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9923
9924         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9925
9926         * support/regression/tests/simplefloat.c: Port to mcs51.
9927
9928 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9929         * support/regression/tests/bug-485362.c: Added.
9930
9931         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9932
9933         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9934
9935         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9936
9937         * src/z80/gen.c (aopDump): Added a dump function.
9938
9939 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9940         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9941
9942         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9943
9944         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9945
9946         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9947
9948         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9949
9950         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9951
9952         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9953
9954         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9955
9956         * support/regression/ports/ds390/support.c: Use tinibios.
9957
9958         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9959
9960 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9961
9962         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9963         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9964
9965         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9966
9967         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9968
9969 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9970
9971         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9972
9973         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9974         (packRegsForIYUse): Created and optimised.
9975
9976 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9977
9978         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9979 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9980
9981         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9982
9983         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9984
9985         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9986
9987 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9988
9989         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9990
9991         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9992
9993 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9994
9995         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9996
9997         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9998
9999         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10000
10001 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10002
10003         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10004         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10005         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10006
10007         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10008
10009         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10010         (genNotFloat): Added.
10011         (genUminusFloat): Added.
10012
10013         * device/lib/z80/Makefile: Added floating pt stubs.
10014
10015         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10016
10017         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10018
10019         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10020
10021 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10022
10023         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10024
10025         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10026
10027         * sdcc/support/regression/Makefile: Add port ds390.
10028
10029         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10030
10031         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10032
10033         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10034
10035         * sdcc/support/regression/ports/ds390/support.c: Added.
10036
10037         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10038
10039         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10040
10041         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10042
10043 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10044
10045         * device/include/malloc.h: Added z80 and gbz80 support.
10046
10047         * device/lib/gbz80/heap.s: Added.
10048
10049         * device/lib/z80/heap.s: Added.
10050
10051         * device/lib/malloc.c: Added z80 and gbz80 support.
10052
10053         * support/regression/tests/malloc.c (testMalloc): Added.
10054
10055         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10056
10057         * support/regression/tests/bug-478094.c: Added.
10058
10059         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10060
10061 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10062
10063         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10064
10065         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10066
10067         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10068
10069         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10070
10071         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10072
10073 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10074
10075         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10076
10077 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10078
10079         * support/regression/tests/bug-477927.c: Added.
10080
10081         * src/z80/peeph.def: Added minor rules.
10082
10083         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10084
10085         * src/z80/peeph.def: Added jump optimisation modification.
10086
10087 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10088
10089         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10090
10091 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10092
10093         * support/regression/tests/funptrs.c: Added.
10094
10095 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10096
10097         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10098
10099 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10100
10101         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10102
10103         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10104
10105         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10106         (movLeft2ResultLong): Created.
10107
10108         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10109         (joinPushes): Added.  Joins two char pushes into a word push.
10110
10111 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10112
10113         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10114
10115         * support/makebin/Makefile (install): Added creation of dest dir.
10116
10117 2001-10-24 Karl Bongers <karl AT turbobit.com>
10118
10119         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10120
10121 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10122
10123         * src/z80/ralloc.c: Turned off faulty pack for one use.
10124
10125         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10126
10127         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10128
10129 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10130
10131         * support/regression/Makefile: Improved clean
10132
10133         * support/regression/ports/gbz80/spec.mk: Added clean
10134
10135         * support/regression/ports/host/spec.mk: Added clean
10136
10137         * support/regression/ports/z80/spec.mk: Added clean
10138
10139         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10140
10141         * support/regression/ports/mcs51/timeout.c: little improvements
10142
10143 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10144
10145         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10146
10147         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10148
10149         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10150
10151 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10152
10153         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10154
10155         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10156
10157 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10158         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10159
10160         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10161
10162         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10163
10164         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10165
10166         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10167
10168         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10169
10170         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10171
10172         * support/regression/tests/longor.c: Added.
10173
10174 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10175
10176         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10177
10178         * as/mcs51/aslink.h: define PATH_MAX
10179
10180         * as/mcs51/asm.h: define PATH_MAX
10181
10182         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10183
10184         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10185
10186         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10187
10188         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10189
10190         * src/SDCCglobl.h: define PATH_MAX
10191
10192         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10193
10194         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10195
10196 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10197
10198         * src/z80/gen.c (gencjneshort): Fixed
10199
10200         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10201
10202 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10203
10204         * support/regression/tests/bug-469671.c: Added.
10205
10206         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10207
10208 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10209
10210         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10211
10212         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10213
10214 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10215
10216         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10217
10218         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10219
10220         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10221
10222         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10223
10224         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10225
10226         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10227
10228         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10229
10230 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10231
10232         * 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.
10233
10234         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10235
10236         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10237
10238 2001-10-07    <johan AT FRIJA>
10239
10240         * device/lib/gets.c (gets): fixed the return value.
10241
10242 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10243         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10244
10245         * 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.
10246
10247         * 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.
10248
10249         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10250
10251         * src/pic/gen.c: Removed Safe_strdup.
10252
10253         * configure.in: Added option to enable libgc support.
10254
10255         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10256         (bitVectUnion): Optimised.
10257         (bitVectIntersect): Optimised.
10258         (bitVectBitsInCommon): Optimised.
10259         (bitVectCplAnd): Optimised.
10260
10261         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10262
10263 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10264
10265         * src/SDCCmain.c: distinguish between assembler debug and plain options
10266
10267         * src/avr/main.c:   remove standard assembler options
10268
10269         * src/ds390/main.c: remove standard assembler options
10270
10271         * src/mcs51/main.c: remove standard assembler options
10272
10273         * src/port.h: removed "PENDING" comment
10274
10275 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10276
10277         * src/device/lib/_mulint.c  : new, with assember functions
10278
10279         * src/device/lib/_mullong.c : new, with assember functions
10280
10281         * src/device/lib/_divuint.c : with assember functions
10282
10283         * src/device/lib/_divsint.c : with assember functions
10284
10285         * src/device/lib/_divulong.c: with assember functions
10286
10287         * src/device/lib/_divslong.c: with assember functions
10288
10289         * src/device/lib/_moduint.c : with assember functions
10290
10291         * src/device/lib/_modsint.c : with assember functions
10292
10293         * src/device/lib/_modulong.c: with assember functions
10294
10295         * src/device/lib/_modslong.c: with assember functions
10296
10297         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10298
10299         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10300
10301         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10302                                       replaced _mululong.c and _mulslong.c by _mullong.c
10303
10304 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10305
10306         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10307
10308 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10309
10310         * src/SDCCglue.c: test, if win32api is available for MINGW
10311
10312 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10313
10314         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10315         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10316         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10317         * support/regression/ports/host/spec.mk: removed GENERIC
10318         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10319         * support/regression/ports/z80/spec.mk: removed GENERIC
10320
10321 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10322
10323         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10324
10325         * support/regression/tests/bug-467035.c: Created.
10326
10327 2001-10-01    <johan AT FRIJA>
10328
10329         * src/SDCC.y: fixed bug #466586 part 1
10330
10331 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10332
10333         * SDCCicode.c: z80 has no generic pointers
10334         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10335
10336 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10337
10338         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10339
10340 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10341
10342         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10343
10344         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10345
10346 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10347
10348         * configure.in: Fixed up so that ucsim is only configured once.
10349
10350         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10351
10352         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10353         (getPathDifference): As above.
10354
10355         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10356
10357         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10358
10359 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10360         * .version: Updated to 2.3.1
10361
10362         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10363         Added copyright header.
10364
10365         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10366         (assemble): Added support for macro based assembler commands.
10367         (linkEdit): Added support for macro based linker commands.
10368         (preProcess): Changed the pre-processor to use macros.
10369         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10370         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10371
10372         * device/lib/z80/crt0.s: Added module name for debugging.
10373
10374 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10375
10376         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10377
10378         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10379
10380         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10381
10382         * src/Makefile.in: Added SDCCmacro and SDCCutil
10383
10384 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10385
10386         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10387
10388 2001-09-16    <johan AT FRIJA>
10389
10390         * 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.
10391
10392 2001-09-15    <johan AT FRIJA>
10393
10394         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10395         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10396
10397 2001-09-11    <johan AT FRIJA>
10398
10399         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10400
10401 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10402
10403         * support/regression/tests/bug-460444.c: Added test case.
10404
10405         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10406         (genCast): Added justification for all of the asserts.
10407
10408 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10409
10410         * support/regression/support.c: _xdata replaced by xdata
10411
10412         * support/regression/spec.mk: removed _generic
10413
10414 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10415
10416         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10417
10418         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10419         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10420
10421         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10422
10423         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10424
10425         * support/regression/tests/bug-460010.c: Added test case.
10426
10427         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10428
10429 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10430
10431         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10432
10433         * support/regression/testfwk.c: removed workaround for bug #436344
10434
10435         * support/regression/tests/bp.c: use less memory with mcs51
10436
10437         * support/regression/tests/bug-441448.c: use less memory
10438
10439         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10440
10441         * support/regression/collate-results.py: typo
10442
10443 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10444
10445         * support/regression/tests/fetchoverlap.c: Added new test case.
10446
10447         * support/regression/tests/bp.c: Added new test case.
10448
10449         * support/regression/tests/bug-448984.c: Added new test case.
10450
10451         * support/regression/tests/pow2shifts.c: Added new test case.
10452
10453         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10454         (genlshTwo): Fixed right shift for count > 8.
10455
10456         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10457
10458 2001-09-08    <johan AT FRIJA>
10459
10460         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10461
10462 2001-09-07    <johan AT FRIJA>
10463
10464         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10465
10466         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10467
10468 2001-09-06    <johan AT FRIJA>
10469
10470         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10471         * bernhard noted me at this: "() equals to (void)" (1.38)
10472
10473 2001-09-05    <johan AT FRIJA>
10474
10475         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10476
10477 2001-09-04    <johan AT FRIJA>
10478
10479         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10480
10481
10482 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10483
10484         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10485
10486 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10487
10488         * link/z80/aslink.h: Fixed path for PATH_MAX
10489
10490 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10491
10492         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10493
10494         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10495
10496         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10497
10498         * 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.
10499
10500 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10501
10502         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10503         (genCmp): Fixed up genCmp for the GB with longs.
10504
10505         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10506
10507         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10508
10509         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10510
10511         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10512
10513 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10514
10515         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10516
10517 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10518
10519         * 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.
10520
10521         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10522
10523 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10524
10525         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10526
10527         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10528
10529 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10530
10531   * sim/ucsim/configure:    little improvement of Cygwin-detection
10532   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10533   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10534   * support/regression/tests/bug-221100.c: small changes for mcs51
10535   * support/regression/tests/bug-221168.c: small changes for mcs51
10536   * support/regression/tests/bug-227710.c: small changes for mcs51
10537   * support/regression/tests/staticinit.c: small changes for mcs51
10538   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10539   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10540   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10541
10542 $Revision$