* src/pic16/gen.c (genPcall): fixed bug #1443644
[fw/sdcc] / ChangeLog
1 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2
3         * src/pic16/gen.c (genPcall): fixed bug #1443644
4         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
5         which dumps before the function entry point a data byte which represents
6         the number of the local variables used by the specified function, added
7         'xinst' for initial support for Extended Instruction Support,
8         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
9         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
10         port->fun_prefix anymore (may change later),
11         (genFunction, genEndFunction): do not store/restore local registers for
12         _main (this should take care the --main-return command line option in
13         the future),
14         (genOr): removed some legacy pic-port instructions,
15         * src/pic16/genarith.c (genAddLit): re-enabled old code because
16         performing operations with SFR's causes data to be written more than
17         once to each SFR. Perhaps SFRs should be handled in special cases...
18         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
19         pcode.h
20         * src/pic16/main.c (_process_pragma): stack bound checking did not take
21         into account for stack starting position,
22         (struct OPTIONS pic16_optionsTable): added command line argument
23         --extended or -y for Extended Instruction Support,
24         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
25         (deassignLRs): *** perhaps the most important change, old 'for' code
26         (comented out for reference), didn't account for some registers which
27         were left marked 'not free' after a pointer operation. The change
28         reduces register usage a lot in some cases
29
30 2006-03-04 Borut Razem <borut.razem AT siol.net>
31
32         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
33           _clean
34         * support/regression/tests/bug-524697.c: decreased array size for
35           mcs51 to fit into the internal RAM
36         * support/regression/Makefile.in: a little bit more verbose
37
38 2006-03-03 Borut Razem <borut.razem AT siol.net>
39
40         * support/regression/fwk/lib/testfwk.c,
41           support/regression/fwk/include/testfwk.h: introduced function
42           _prints(), nonrecursive _printn(), call _initEmu() from main()
43         * support/regression/ports/gbz80/support.asm,
44           support/regression/ports/ucz80/support.asm,
45           support/regression/ports/z80/support.asm,
46           support/regression/ports/ds390/support.c,
47           support/regression/ports/hc08/support.c,
48           support/regression/ports/host/support.c,
49           support/regression/ports/mcs51/support.c,
50           support/regression/ports/xa51/support.c: added empty _initEmu()
51           function
52         * support/regression/ports/pic16/gpsim.cmd,
53           support/regression/ports/pic16/spec.mk,
54           support/regression/ports/pic16/support.c,
55           support/regression/Makefile.in: added pic16 regression test
56
57 2006-03-01 Raphael Neider <rneider AT web.de>
58
59         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
60           genConstPointerGet): use safe way of generating MOVFF to cover
61             literals as well as registers, fixes bug #1440527
62         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
63             dereference
64           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
65             more correctly, fixes bug #1232186
66           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
67         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
68             gplink guess the correct processor in more cases, applied patch
69             from Till Riedel attached to and fixing bug #1436552
70
71 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
72
73         * support/regression/tests/array.c: added, contains check for #1434401
74         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
75
76 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
77
78         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
79         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
80         * device/include/mcs51/c8051f326.h,
81         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
82         * device/include/mcs51/c8051f000.h,
83         * device/include/mcs51/c8051f018.h,
84         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
85           PCON_IDLE,PCON_STOP and added sfr16 definitions
86
87 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
88
89         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
90           genGetWord): fixed bug 1409955
91
92 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
93
94         * device/include/hc08/mc68hc908gp32.h,
95         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
96
97 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
98
99         * src/SDCCast.c (constExprValue): return NULL if not a value
100         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
101         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
102         * support/regression/tests/bitfields.c: enabled signed bitfield for all
103
104 2006-02-13 Borut Razem <borut.razem AT siol.net>
105
106         * src/regression/ptrarg.c: added, fails due to bug #1430967
107         * src/regression/Makefile: ptrarg.c added, ...
108
109 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
110
111         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
112         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
113
114 2006-02-11 Borut Razem <borut.razem AT siol.net>
115
116         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
117           print "Processor: xxx" message to stdout only if --verbose
118
119 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
120
121         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
122         * support/regression/tests/bug1426356.c: added
123         * support/regression/tests/bitfields.c: removed 2 tests
124
125 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
126
127         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
128         * device/include/mcs51/c8051f330.h,
129         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
130           PCON_IDLE,PCON_STOP and added sfr16 definitions
131         * device/lib/_divsint.c,
132         * device/lib/_divuint.c,
133         * device/lib/_divulong.c,
134         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
135           register bank bug for small stackauto
136
137 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
138
139         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
140
141 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
142
143         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
144         * all.dsp: corrected several bin paths
145         * device/include/mcs51/c8051f120.h,
146         * device/include/mcs51/c8051f300.h,
147         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
148           to PCON_IDLE,PCON_STOP
149         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
150         * device/lib/printf_large.c (output_float): fixed bug 1388703
151         * support/regression/tests/bug1057979.c: added test for bug 1388703
152
153 2006-02-08 Raphael Neider <rneider AT web.de>
154
155         * src/pic/pcode.c (pciTRIS): fixed typo,
156           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
157           (LinkFlow): fixed handling of flows that end in a call,
158           (ReuseReg): perform safety check earlier
159         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
160             to work with flows at the beginning of a pBlock,
161             fixes #1426557 (Symbol not previously defined),
162           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
163             usage information
164           (RemoveUnusedRegisters): update register usage info
165         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
166             created, reuse existing ones instead
167         * src/pic/gen.c (genPcall): fixed #1424719
168
169 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
170
171         * link/z80/lkmain.c,
172         * link/z80/lklex.c,
173         * link/z80/lkdata.c,
174         * link/z80/aslink.h: fixed build on current cygwin:
175         replaced getline() by lk_getline()
176
177 2006-02-01 Borut Razem <borut.razem AT siol.net>
178
179         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
180           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
181           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
182           src/regression/bool1.c, src/regression/bool2.c,
183           src/regression/bool3.c, src/regression/call1.c,
184           src/regression/compare.c, src/regression/compare10.c,
185           src/regression/compare2.c, src/regression/compare3.c,
186           src/regression/compare4.c, src/regression/compare5.c,
187           src/regression/compare6.c, src/regression/compare7.c,
188           src/regression/compare8.c, src/regression/compare9.c,
189           src/regression/configword.c, src/regression/for.c,
190           src/regression/inline.c, src/regression/mult1.c,
191           src/regression/nestfor.c, src/regression/or1.c,
192           src/regression/pointer1.c, src/regression/ptrfunc.c,
193           src/regression/rotate1.c, src/regression/rotate2.c,
194           src/regression/rotate3.c, src/regression/rotate4.c,
195           src/regression/rotate5.c, src/regression/rotate6.c,
196           src/regression/rotate7.c, src/regression/string1.c,
197           src/regression/struct1.c, src/regression/sub.c,
198           src/regression/sub2.c, src/regression/switch1.c,
199           src/regression/while.c, src/regression/xor.c,
200           src/regression/create_stc, src/regression/simulate,
201           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
202           regression tests
203         * src/regression/gpsim_assert.h: added
204
205 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
206
207         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
208         ((void (code *) (void)) 0) ();
209         * as/hc08/aslex.c,
210         * as/hc08/aslink.h,
211         * as/hc08/asm.h,
212         * as/hc08/asmain.c,
213         * as/hc08/lkdata.c,
214         * as/hc08/lklex.c,
215         * as/hc08/lkmain.c,
216         * as/mcs51/aslex.c,
217         * as/mcs51/aslink.h,
218         * as/mcs51/asm.h,
219         * as/mcs51/asmain.c,
220         * as/mcs51/lkdata.c,
221         * as/mcs51/lklex.c,
222         * as/mcs51/lkmain.c,
223         * as/z80/aslex.c,
224         * as/z80/asm.h,
225         * as/z80/asmain.c: fixed build on current cygwin:
226         replaced getline() by as_getline()
227
228 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
229
230         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
231         declarator in the symbol chain
232         * src/SDCCsymt.h,
233         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
234         parameter list for function pointers
235         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
236         * support/regression/tests/bug-716242.c: added
237
238 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
239
240         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
241         offset if possible
242         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
243
244 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
245
246         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
247         inifinitely recurseable, added static
248         * support/regression/tests/bug-1408066.c: added
249
250 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
251
252         * src/SDCCicode.h,
253         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
254         renamed, added possibility to create "postLoopLbl"-labels
255         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
256         newiTempLoopHeaderLabel
257         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
258         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
259         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
260         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
261         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
262         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
263         (basicInduction): fixed bug #136564, made static,
264         (loopInduction): changed parameter of basicInduction, made static,
265         (addPostLoopBlock): added
266         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
267         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
268         findLoopEndSeq
269         * support/regression/tests/bug-136564.c: added
270         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
271         --std-sdcc99 to LIBSDCCFLAGS
272
273 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
274
275         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
276         while loop
277         * support/regression/tests/bug-1406131.c: added
278
279 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
280
281         * src/SDCCast.c (decorateType): fix promotion of unary minus
282         * src/SDCCsymt.c (computeType): beautified
283         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
284         (valUnaryPM, valComplement): fix sign and promotion,
285         (valNot): ANSI: result type is int (SDCC: unsigned char)
286         * support/regression/tests/uminus.c: speedup by removing superflous
287         test case 'int'
288         * support/regression/tests/onebyte.c: added promotion and signedness
289         tests for unary minus
290         * support/regressions/tests/bug-477927.c: disable warning about
291         uninitialized variables
292         * support/regression/tests/not.c: added
293
294 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
295
296         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
297         * src/mcs51/gen.c (gen51Code): show final register usage after
298         fillGaps in asm with --i-code-in-asm
299         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
300         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
301         incUsed, rliveClear, adjustIChain): made static,
302         (setFromRange): excluded because it's unused,
303         (findPrevUseSym, markWholeLoop): added,
304         (findPrevUse): rewritten; fixes bug 895992; now a complete search
305         through all branches of predecessors enables sdcc to emit the warning
306         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
307         (rlivePoint): made static, added parameter emitWarnings which is only
308         true during the first run out of two,
309         (findRecursiveSucc, findRecursivePred): removed,
310         (computeLiveRanges): made static, added parameter emitWarnings,
311         (dumpIcRlive): added for debugging only
312         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
313         removed prototype of setFromRange()
314         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
315         in call of computeLiveRanges()
316         * support/regression/tests/bug-895992.c: added
317         * support/regression/tests/bug-971834.c: added
318         * support/valdiag/tests/bug-895992.c: added
319         * support/valdiag/tests/bug-971834.c: added
320
321 2005-12-18 Raphael Neider <rneider AT web.de>
322
323         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
324           (genUnpackBits): improved code for direct operands,
325           (genPackBits): improved code for literal assignment to bitfields
326             and for direct destination operands (no FSR indirection),
327             prevented redundant AND, fixes #1362800,
328           (AccLsh): added parameter to disable masking of the result
329         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
330           skip instructions with side-effects (like incfsz),
331           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
332         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
333         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
334           fixes #1375263
335
336 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
337
338         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
339         volatile variables as spill location
340
341 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
342
343         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
344         replacing literals
345         * support/regression/tests/bug-1376320.c: added
346
347 2005-12-08 Raphael Neider <rneider AT web.de>
348
349         * src/pic/device.c: renamed is_shared to pic14_is_shared
350         * src/pic/gen.c (genIfx): re-enabled handling of sbits
351         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
352           (is_valid_identifier): added for above workaround
353
354 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
355
356         * device/lib/Makefile.in: fixed to enable port-specific-objects
357         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
358           char, thanks Hubert Sack
359         * doc/sdccman.lyx: documented --xstack-loc,
360           elaborated a bit more on interrupts and pitfalls,
361           removed "setjmp/longjmp unsupported",
362           documented some unsupported C99 features
363         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
364         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
365           if, thanks Hubert Sack
366         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
367         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
368           make make_library
369         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
370           regression tests can report resource usage (rfe 700441)
371         * support/regression/collate-results.py: report resource usage
372         * support/regression/ports/ds390/spec.mk,
373         * support/regression/ports/hc08/spec.mk,
374         * support/regression/ports/mcs51/spec.mk,
375         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
376         * support/regression/ports/ds390/uCsim.cmd,
377         * support/regression/ports/hc08/uCsim.cmd,
378         * support/regression/ports/mcs51/uCsim.cmd,
379         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
380         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
381           library, use the default one
382         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
383           building the library
384
385 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
386
387         * config.dsp: added dependency on .version and configure_vc.awk
388         * device/include/setjmp.h: updated for --stack-auto and --xstack
389         * device/include/mcs51/at89c51snd1c.h: corrected line endings
390         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
391         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
392         * device/lib/libsdcc.lib: added _setjmp
393         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
394           (decorateType): fixed bug 1372851,
395           (optimizeGetHbit): fixed warning
396         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
397           array initialisation
398         * support/regression/tests/bug1057979.c: added test for bug 1358192
399         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
400
401 2005-12-03 Borut Razem <borut.razem AT siol.net>
402
403         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
404           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
405
406 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
407
408         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
409         createIval): implement symbol independant "flexible array member",
410         (createIvalCharPtr): implemented flexible array initialisation with a
411         string
412         * src/SDCCsymt.c (copyStruct): removed,
413         (getSize): fixed misleading comment,
414         (getAllocSize): removed, the additional allocation size is now in
415         sym->flexArrayLength,
416         (checkStructFlexArray): new, syntax checks for flexible array members,
417         (compStructSize): added syntax checks for "flexible array members"
418         (copyStruct): removed,
419         (copyLinkChain): removed inefficient fix for bug 770487
420         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
421         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
422         symbol->flexArrayLength
423         * src/SDCCerr.c,
424         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
425         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
426         * support/regression/tests/structflexarray.c: added
427         * support/valdiag/tests/structflexiblearray.c: added
428
429 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
430
431         * src/SDCCast.c (decorateType): fixed bug 1368489
432         * support/Util/SDCCerr.c,
433         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
434
435 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
436
437         * device/include/mcs51/at89c51snd1c.h: added file submitted by
438           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
439
440 2005-11-27 Borut Razem <borut.razem AT siol.net>
441
442         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
443           support/cpp2/mkdeps.h: added command line option
444           -obj-ext=<extension> to SDCPP to define object file externion, used
445           for generation of make dependencies (-M)
446         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
447
448 2005-11-26 Borut Razem <borut.razem AT siol.net>
449
450         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
451           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
452           added pic and pic16 libraries
453
454 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
455
456         * device/include/float.h: Corrected typo in prototype of __fsgt
457
458 2005-11-25 Borut Razem <borut.razem AT siol.net>
459
460         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
461           added creation of model-mcs51-stack-auto libraries
462
463 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
464
465         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
466         and fields-list too
467         * src/SDCCast.c (createIvalArray): removed obsolete comment
468
469 2005-11-24 Borut Razem <borut.razem AT siol.net>
470
471         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
472           added missing device/lib/mcs51/crt*.asm sources
473
474 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
475
476         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
477
478 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
479
480         * device/lib/_fs2schar.c,
481         * device/lib/_fs2sint.c,
482         * device/lib/_fs2slong.c: optimized inline asm
483
484 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
485
486         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
487           Better handling of floats between -1.0 and 0.0.
488
489 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
490
491         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
492           (the missing "if"s prohibited removal of redundant labels)
493
494 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
495
496         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
497           Properly convert floats between -1.0 and 0.0 to long, int, and char
498           types (max integer value of negative floats tends to zero).
499         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
500           Removed changes made so to work properly with floats between
501           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
502           and _fs2char.c
503
504 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
505
506         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
507         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
508         (genCast) cosmetic change
509         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
510         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
511         from mcs51
512         * support/regression/tests/bitfields (testSignedBitfields): added
513
514 2005-11-18 Borut Razem <borut.razem AT siol.net>
515
516         * sdcc/device/lib/Makefile.in: remove all unnecessary files
517         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
518           introduced SILENT option to make building of pic16 libraries less
519
520 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
521
522         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
523           Now they work properly with floats between -1.0 and 0.0
524         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
525
526 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
527
528         * src/SDCCicode.c (printOperand): added missing else
529
530 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
531
532         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
533         reformatted for better readability
534         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
535         signed bitfields
536
537 2005-11-17 Borut Razem <borut.razem AT siol.net>
538
539         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
540           introduced SILENT option to make building of pic16 libraries less
541           verbose - used for nightly snapshot build
542         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
543           available on Win32 platforms.
544         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
545           medium, large, pic and pic16
546
547 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
548
549         * device/lib/printf_large.c: Temporary patch for bug 1358192:
550           printf("%f"...) sets fraction to zero.
551
552 2005-11-16 Raphael Neider <rneider AT web.de>
553
554         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
555           fixes #1357221
556         * src/pic/gen.c (genIfx): implemented for CARRY bit
557         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
558           to generic pointers, fixes #1357332,
559           (pic16_movLit2f): NEW,
560           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
561
562 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
563
564         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
565
566 2005-11-11 Raphael Neider <rneider AT web.de>
567
568         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
569         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
570           compute pointer's type from operand,
571           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
572           improved single bit reads, fixes bug #1353379
573
574 2005-11-09 Borut Razem <borut.razem AT siol.net>
575
576         * support/scripts/sdcc.nsi: added lib/pic to the package
577
578 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
579
580         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
581
582 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
583
584         * support/regression/tests/bug1348008.c: added
585         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
586         * support/regression/tests/bug1337835.c: updated comment
587
588 2005-11-06 Borut Razem <borut.razem AT siol.net>
589
590         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
591           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
592           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
593           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
594           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
595           dynamic construction of cl_error_class and derivates - 2.nd try
596
597 2005-11-05 Borut Razem <borut.razem AT siol.net>
598
599         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
600           bug, which caused Bus Errors on sparc solaris
601
602 2005-11-04 Borut Razem <borut.razem AT siol.net>
603
604         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
605           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
606           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
607           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
608           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
609           and derivates to resolve the initialization problem on OSX
610
611 2005-11-02 Borut Razem <borut.razem AT siol.net>
612
613         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
614           corrected typo - #include <winsock2.h>
615
616 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
617
618         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
619           (_asxxxx_mapping): added org directive for future enhancements
620
621 2005-11-01 Borut Razem <borut.razem AT siol.net>
622
623         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
624           enabled sockets on WIN32
625         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
626
627 2005-10-31 Borut Razem <borut.razem AT siol.net>
628
629         * support/regression/generate-cases.py: escape backslashes in {testcase}:
630           WIN32 backslash path delimiters should be escaped when used in C strings
631         * support/regression/tests/bitfields.c: exclude failing assertions for
632           __CYGWIN32__ and __MINGW32__ hosts
633
634 2005-10-30 Borut Razem <borut.razem AT siol.net>
635
636         * src/SDCCutil.c: corrected double comparison typo
637
638 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
639
640         * device/lib/medium/Makefile: added for new memory model medium
641         * device/include/asm/mcs51/features.h: updated for medium/pdata
642         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
643           added Multiply & Accumulate sbit's and MAC0_PAGE define
644         * device/include/mcs51/c8051f300.h: added sfr16 definitions
645         * device/include/mcs51/c8051f310.h: added sfr16 definitions
646         * device/lib/_mullong.c: update for medium model
647         * device/lib/incl.mk: added medium model
648         * doc/sdccman.lyx: documented medium model
649         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
650         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
651         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
652         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
653           (allocParms): set SCLS and OCLS to pdata for medium model
654         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
655           for pdata,
656           (powof2): return <0 if not power of 2
657         * src/avr/gen.c (genBitWise): use updated powof2
658         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
659           (shiftR2Left2Result): small optimization in setup, save acc when storing,
660           (shiftLLeftOrResult): use B if necessary
661         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
662         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
663         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
664         * support/regression/Makefile.in: added test-mcs51-medium
665         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
666
667 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
668
669         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
670         specifier unsigned
671         * device/lib/time.c (mktime): fixed bug 1334315
672
673 2005-10-28 Raphael Neider <rneider AT web.de>
674
675         * device/include/pic/p16f_common.inc: added common declarations
676         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
677
678 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
679
680         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
681           (aopPutUsesAcc): added to predict accumulator use,
682           (assignResultValue): save acc if necessary,
683           (genMinusDec): store result if indirectly addressed,
684           (genDivOneByte):  save acc if necessary,
685           (movLeft2Result): bugfix if left already in acc,
686           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
687             attention to accumulator use (esp. pdata),
688           (genReceive): receive pdata correctly
689         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
690         * src/SDCCicode.h: added isOperandInPagedSpace prototype
691
692 2005-10-27 Raphael Neider <rneider AT web.de>
693
694         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
695
696 2005-10-27 Raphael Neider <rneider AT web.de>
697
698         * .version: changed version to 2.5.4
699         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
700         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
701           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
702             arithmetics support routines
703         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
704         * device/lib/Makefile.in: also create installdir for pic
705
706         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
707           pic14 port as well
708         * src/pic/device.c (dump_sfr): rewritten to delegate register
709           placement to the linker (use `extern sym' rather than sym EQU addr),
710           (validAddress): fixed to check last specified address
711         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
712           (popGetLit): truncate literal value to 8 bit,
713           (popGet): moved assert to more appropriate place
714           (popGetExternal): create pCode operand from and mark the according
715             symbol as being `extern'
716           (popGetAddr): added sanity check on immediate's offset, provide
717             GPOINTER tag on demand
718           (aopPut): fixed for immediates,
719           (mov2w_op): move operand's address or contents to WREG (depending on
720             operand type), safer variant of mov2w,
721           (movwf,call_libraryfunc): NEW, handy abbreviations,
722           (get_argument_pcop,get_return_val_pcop,pass_argument,
723           get_returnvalue): interface for accessing function parameters and
724             return values,
725           (assignResultValuei,genRet): use new parameter/return value interface
726           (pic14_getDataSize): back to old version handling generic pointers,
727           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
728             provided implementation and/or fixed old one,
729           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
730             calls, removed legacy 8051 reference code
731           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
732           (loadSignToC): NEW, move the operands sign bit to CARRY,
733           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
734             genRightShiftSigned, accepts negative shift counts,
735           (setup_fsr): load FSR and adjust IRP (indirect memory access),
736           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
737             generic pointers, __data pointers and __code pointers,
738           (genUnpackBits,genPackBits): rewritten to work with generic pointers
739             and signed bitfields, limit bitfields to 8 bit,
740           (genDataPointerGet): fixed number of bytes read,
741           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
742           (genPointerGet,genPointerSet): fixed handling of __code pointers,
743             pointers to constant data are no longer assumed to point to __code
744             space, removed invalid pointer types,
745           (bitpatternFromVal): retrieve the PICs representation of an integer
746             or float literal,
747           (genDataPointerSet): fixed assigning to po_immediate operands,
748           (genGenPointerSet): implemented as library call,
749           (genIfx): fixed incorrect condition,
750           (genAddrOf): limit generic pointers' addresses to 2 bytes,
751             provide GPOINTER tag according to destination's storage class,
752           (genCast): added code to handle casting to generic pointers, added
753             sign-/zero extension of the result
754           (aop_isLitLike,op_isLitLike): fixed handling of immediates
755         * src/pic/gen.h: added macros to access IRP bit in STATUS register
756         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
757           extend the result
758         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
759           address/register resides in the shared banks
760           (emitSymbolToFile): improved to handle global and `pinned' symbols,
761             put all variables into separate sections (have the linker arrange
762             them)
763           (picglue): put init code and interrupt handlers in separate sections
764         * src/pic/main.c: added port specific options table, modified to PORT
765           structure to make GPOINTERs 3 byte, added pic14_options
766           (_pic14_do_link): private linking routine (update paths to libraries,
767             add libsdcc.lib by default)
768         * src/pic/main.h: declare pic14_options
769         * src/pic/pcode.c: fixed instructions i/o relations,
770           (RegCond): reverted to correct version,
771           (newpCodeOpLit): truncate literals to 8 bit,
772           (genericPrint): added debug output,
773           (getRegFromInstruction): fixed for various operand types, simplified
774           (BuildFlow): fixed broken handling of isntructions with labels
775           (LinkFlow): start at last instruction in flow (skip trailing comments),
776             pass the flow on to the next instruction after CALL
777           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
778           (insertPCodeInstruction): fixed inserting after a skip instruction,
779           (DoBankSelect): fixed for labeled instructions
780           (OptimizepBlock): honor --nopeep switch
781           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
782         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
783         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
784           (pCodeOptime2pCodes): allow disabling this optimization via
785             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
786             but is still buggy), started implementation of a dataflow based
787             pCode optimization (CSE + dead code elimination)
788           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
789         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
790           names are independant of the stack location and therefore portable across
791           devices
792
793 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
794
795         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
796           (selectSpil): fixed bug 1337835 by not spilling bit variables
797         * support/regression/tests/bug1337835.c: added test for this bug
798         * src/mcs51/peeph.def: restart after rule 3.c,
799           addded rules 263.x to optimize loading constants
800
801 2005-10-26 Raphael Neider <rneider AT web.de>
802
803         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
804         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
805           (genAssign): emit warning when casting literals to generic pointer
806             type, also applies when taking the address of a fixed variable,
807           (genCast): improved casting to generic pointers
808         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
809           extern variables, added verbose error message
810         * device/include/pic16/{string.h,errno.h}: added #pragma library c
811
812 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
813
814         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
815         carry must be complemented too
816         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
817         could be emitted by genMinus
818         * src/SDCCval.c (constVal): fixed bug 1305065
819
820 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
821
822         * src/SDCCast.c (addCast): added promotion for bit variables
823         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
824         promotion casts + optimisation
825         (optimizeGetWord): fix warning 'i' might be used uninitialized
826         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
827         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
828
829 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
830
831         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
832         all chars are promoted to int; promotion should be handled in SDCCast.c
833
834 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
835
836         * device/lib/_strcmp.c: Fixed bug 1326457
837
838 2005-10-11 Raphael Neider <rneider AT web.de>
839
840         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
841         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
842
843 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
844
845         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
846         * support/regression/tests/sfr16.c: added test for the sfr32 bug
847
848 2005-10-04 Raphael Neider <rneider AT web.de>
849
850         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
851           device/lib/pic16/pics.all: added pic18f1320
852         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
853
854 2005-09-30 Raphael Neider <rneider AT web.de>
855
856         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
857         * src/pic16/devices.inc: NEW, provides device descriptions
858         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
859
860 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
861
862         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
863           GETHBIT
864
865 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
866
867         * doc/sdccman.lyx: updated Highest Order Bit documentation,
868           documented Any Order Bit, Higher Order Byte and Higher Order Word
869         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
870         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
871           (optimizeGetAbit): new, to get any bit, not only the high bit,
872           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
873           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
874           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
875           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
876             RIGHT_OP: also try GETBYTE, GETWORD optimization,
877             GETABIT, GETBYTE, GETWORD: decorate them,
878           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
879           (ast_print): added GETABIT, GETBYTE, GETWORD
880         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
881         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
882           (geniCodeBinary): new generic binary icode,
883           (ast2iCode): added GETABIT, GETBYTE, GETWORD
884         * src/port.h: updated comment for PORT.hasExtBitOp
885         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
886           (genGetByte): new, to get a single byte,
887           (genGetWord): new, to get a word from a long,
888           (gen51Code): added GETABIT, GETBYTE, GETWORD
889         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
890
891 2005-09-23 Raphael Neider <rneider AT web.de>
892
893         * configure.in, configure: have device/lib/pic configured
894         * device/lib/Makefile.in: added model-pic14
895         * device/lib/clean.mk: added pic/ to clean rule
896         * device/lib/pic: added rudimentary pic14 library providing support
897           functions for multiplication/division/generic pointer access
898         * src/SDCCopt.c (convilong): mark support functions as extern
899           for pic14 port as well
900         * src/pic/gen.c (genMult): added assertions,
901           (genpic14Code): emit warning on unhandled iCodes
902         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
903         * src/pic/pcode.c (pCodeOpCopy),
904         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
905           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
906           SFR_REGISTER}), made safe for future extensions
907         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
908           instructions even if preceeded by SKIP instructions (also remove
909           them); removed unused code
910         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
911           prevents leaving parts of the structure uninitialized after copying
912
913 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
914
915         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
916           ago by me
917         * support/regression/tests/addsub.c: added test for the bug
918
919 2005-09-21 Raphael Neider <rneider AT web.de>
920
921         * device/include/pic16/pic18f1220.h,
922           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
923         * device/lib/pic16/Makefile.rules: added missing opening paren
924         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
925           are provided in genutils.c,
926           (genUminusFloat,genUminus,genCmpEq): added asserts on different
927           operand/result sizes,
928           (genCmp): assert on NULL pointers first, then check deref'ed values
929         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
930           result size
931
932 2005-09-18 Raphael Neider <rneider AT web.de>
933
934         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
935           as these are now unused,
936           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
937         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
938           local, avoids uninitialized pointer dereference on r->name
939         * src/pic16/ralloc.c (newReg): fixed indentation
940
941 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
942
943         * src/SDCCval.c (constVal): fixed bug 730366
944         * support/Util/SDCCerr.c,
945         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
946
947 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
948
949         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
950
951 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
952
953         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
954
955 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
956
957         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
958           (hex2dec): made hex_digit unsigned char, removed ascii dependance
959         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
960           (hex2dec): made hex_digit unsigned char, removed ascii dependance
961         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
962         * packihx/packihx.c (hexDigit): made c unsigned char
963         * as/mcs51/lklibr.c (fndsym),
964         * link/z80/lkgb.c (gb),
965         * link/z80/lklibr.c (fndsym),
966         * link/z80/lkrloc.c (relr),
967         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
968         * src/SDCC.lex (checkCurrFile, process_pragma),
969         * src/SDCCglue.c (spacesToUnderscores),
970         * src/SDCCmain.c (setParseWithComma, processFile),
971         * src/asm.c (tvsprintf, printCLine),
972         * src/avr/gen.c (emitcode, aopPut),
973         * src/ds390/gen.c (emitcode),
974         * src/hc08/gen.c (emitcode, emitinline),
975         * src/mcs51/gen.c (emitcode, genInline),
976         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
977           tokenizeLineNode),
978         * src/pic/ralloc.c (debugLog),
979         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
980           tokenizeLineNode),
981         * src/pic16/ralloc.c (debugLog),
982         * src/z80/main.c (_process_pragma):
983            made all ctype.h function calls safe
984         * src/SDCCopt.c: include math.h for fabs
985         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
986           and used them throughout the code to make ctype.h function calls safe
987         * src/ds390/main.c (asmLineNodeFromLineNode),
988         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
989         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
990            unsigned char*
991         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
992           (newpCodeAsmDir): made ctype.h function calls safe
993         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
994           pic16_emitcode):  made lbp unsigned char*
995         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
996           (pic16_newpCodeAsmDir): made ctype.h function calls safe
997         * src/xa51/gen.c (emitcode),
998         * src/z80/gen.c (_emit2): made lbp unsigned char*
999         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1000            char*
1001
1002 2005-09-05 Raphael Neider <rneider AT web.de>
1003
1004         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1005           access bank splitpoint
1006
1007 2005-09-05 Raphael Neider <rneider AT web.de>
1008
1009         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1010
1011 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1012
1013         * .version: changed to version 2.5.3
1014         * doc/sdccman.lyx: changed version to 2.5.3,
1015           documented --codeseg and --constseg and pragma codeseg and constseg,
1016           documented bit parameters (reentrant) and bit returning
1017         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1018            currFunc->recvSize, but is this ok for all ports?
1019           (ast2iCode): result of ~ on unsigned char must be cast to int for
1020            bool to work
1021         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1022           function pointers in bit space
1023         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1024           (processFuncArgs): call port.reg_parm() with reentrancy info
1025         * src/port.h,
1026         * src/avr/main.c,
1027         * src/ds390/main.c,
1028         * src/hc08/main.c,
1029         * src/pic/main.c,
1030         * src/pic16/main.c,
1031         * src/xa51/main.c,
1032         * src/z80/main.c: port.reg_parm prototype extended with
1033           "bool reentrant" parameter
1034         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1035           options.stackAuto for allocating bit register parameters
1036         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1037           (genSend): set BitBankUsed if it is,
1038           (selectRegBank): factored out of genCall for use in genPcall,
1039           (genCall): removed redundant dtype assignmen, use selectRegBank,
1040           (genPcall): handle returning in Carry properly, save in F0 if needed,
1041           (genReceive): handle bit register parameters
1042         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1043           (mcs51_assignRegisters): enable bit registers for all reentrant
1044            functions and don't set BitBankUsed unconditionally
1045         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1046         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1047         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1048
1049 2005-08-27 Borut Razem <borut.razem AT siol.net>
1050
1051         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1052         ppc-osx (Darwin) does not support -u option. It seems that it is
1053         supported only on Linux - GNU cp
1054
1055 2005-08-25 Borut Razem <borut.razem AT siol.net>
1056
1057         * sim/ucsim/gui.src/serio.src/Makefile.in,
1058           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1059           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1060           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1061           install and strip, since the strip at /usr/ccs/bin should be used
1062           on solaris
1063
1064 2005-08-24 Borut Razem <borut.razem AT siol.net>
1065
1066         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1067
1068 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1069
1070         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1071         ffffffffu
1072
1073 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1076         * as/mcs51/lkmain.c (link_main): fixed warning
1077         * device/include/stdbool.h: ds390 has no advanced bit support yet
1078         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1079         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1080         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1081           and updated their macros
1082         * src/SDCCval.c (constVal): updated comment for renamed b_long
1083
1084 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1087         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1088           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1089           (oprio): set priority for '['
1090         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1091            and adb_24_bit
1092         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1093         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1094         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1095         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1096           added overlayable BIT_BANK area
1097         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1098           (summary2): explain 'T' in legenda
1099         * as/mcs51/lkrloc.c: replaced old K&R style,
1100           (relr): added R_BIT processing,
1101           (errmsg): added "Bit-addressable relocation error",
1102           (adb_bit): added for converting from byte- to bit-addressable space,
1103           (adb_24_bit): added for converting from byte- to bit-addressable space
1104         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1105            used in reentrant functions now even as return value
1106         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1107         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1108           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1109         * src/SDCCglobl.h: added indicator BitBankUsed
1110         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1111            the bit registers b0-b7
1112         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1113           (geniCodeCast): fixed bug 1263853,
1114           (geniCodeLogicAndOr): put result in bool or char,
1115           (geniCodeReceive): added parameter func for accessing the return type,
1116           (geniCodeFunctionBody): pass func to geniCodeReceive
1117         * src/SDCCmain.c: added indicator BitBankUsed
1118         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1119         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1120           (checkSClass): don't put automatic bool/bit on stack,
1121           (checkFunction): removed check on function cannot return bit
1122         * src/SDCCsymt.h: added newBoolLink prototype
1123         * src/mcs51/gen.c (rb1regs): added bit registers,
1124           (movc): created for assigning to carry,
1125           (pushReg, popReg): created for pushing registers,
1126           (sameRegs): check both AOP_REG and AOP_CRY types,
1127           (aopOp): handle bit registers,
1128           (aopPut): optimization no self-assign,
1129           (saveRegisters): push reg->base (bits) only once for bit registers,
1130            and use pushReg,
1131           (unsaveRegisters): pop reg->base only once and use popReg,
1132           (assignResultValue): added parameter func and return in carry for bits,
1133           (genIpush): optimization no reload in A if not changed,
1134           (genSend): bit parameters in reentrant functions are passed in bit
1135            registers by first assigning to bits in B, then save registers and
1136            copy B to bits,
1137           (genCall): handle returning in Carry properly, save it in F0 if needed,
1138           (genPcall): updated assignResultValue call, this is not safe yet for bit
1139            returning function !!!
1140           (genFunction): don't generate equ's for bit registers and use pushReg,
1141           (genEndFunction): take care of bit returning functions and use popReg,
1142           (genRet): return bit in Carry,
1143           (genIfx): optimize bit registers and other directly addressable bits,
1144           (genReceive): updated assignResultValue call
1145         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1146           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1147            registers when using stack-auto
1148         * src/mcs51/ralloc.c (_G): added allBitregs,
1149           (regs8051): added the bit registers,
1150           (createStackSpil): use macro IS_BIT,
1151           (getRegBit): added to allocate a bit register, else spill,
1152           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1153           (updateRegUsage): factored out to ease stepping while debugging,
1154           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1155            also allocate bit registers,
1156           (fillGaps): handle bit registers,
1157           (findAllBitregs): added to create bit vector with all bit registers,
1158           (mcs51_allBitregs): returns this bit vector,
1159           (mcs51_assignRegisters): when using stack-auto use bit registers for
1160            passing parameters and creating local variables
1161         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1162
1163 2005-08-22 Borut Razem <borut.razem AT siol.net>
1164
1165         * device/lib/Makefile.in: replaced find option -or with -o
1166           to make it run on solaris
1167
1168 2005-08-22 Raphael Neider <rneider AT web.de>
1169
1170         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1171           fixes #1265442 (crash on Solaris)
1172
1173 2005-08-20 Borut Razem <borut.razem AT siol.net>
1174
1175         * configure, configure.in: added tests for libsocket and libnsl libraries,
1176           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1177           from support/regression/Makefile.in
1178         * support/regression/Makefile.in: added
1179         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1180         * sim/ucsim/libtool: regenerated on sparc-solaris
1181         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1182           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1183           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1184           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1185           sparc-solaris, which doesn't use GNU ld linker
1186         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1187         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1188
1189 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * src/mcs51/peeph.def: updated comments
1192
1193 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1194
1195         * device/lib/_gptrget.c,
1196         * device/lib/_gptrput.c: slightly shorter
1197         * doc/sdccman.lyx: incremented version
1198         * src/mcs51/peeph.def: moved peephole comments to the line of first
1199           change to better keep line correlation, reanimated 186.e
1200         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1201
1202 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1203
1204         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1205           David Saxton with quotes around file name.
1206
1207 2005-08-15 Borut Razem <borut.razem AT siol.net>
1208
1209         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1210           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1211           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1212           make tests run on x86_64 platform
1213
1214 2005-08-13 Raphael Neider <rneider AT web.de>
1215
1216         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1217           as it might be executed DURING a build (parallel make is wonderful)
1218
1219 2005-08-13 Raphael Neider <rneider AT web.de>
1220
1221         * device/lib/Makefile.in (port-specific-objects-pic16):
1222           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1223         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1224           dependency
1225         * device/lib/pic16/Makefile.rules: build subdirs before creating
1226           the library, removed builddir rule, create $(builddir) early in
1227           recurse rule, use empty recurse rule for leaf directories
1228         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1229           mkdir errors (race condition), removed duplicate suffix "hex"
1230           from clean rules
1231         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1232         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1233           prevents mkdir -p from aborting on Alpha
1234
1235 2005-08-12 Raphael Neider <rneider AT web.de>
1236
1237         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1238           db-statements in order to allow for arrays of pointers in code
1239           sections to be placed without interspersed 0-padding, fixes
1240           bug #1256215
1241         * (emitStatistics): fixed division by zero for pic18f1220
1242         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1243           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1244         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1245         * (pic16_pCodeConstString): keep track of already emitted string
1246           literals to prevent "duplicate definitions of symbol _str_NR"
1247         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1248           debug message
1249         * device/lib/Makefile.in: ignore failing PIC16 library builds
1250         * device/lib/pic16/Makefile: do not build if gputils are missing
1251         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1252
1253 2005-08-10 Raphael Neider <rneider AT web.de>
1254
1255         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1256           my last commit)
1257
1258 2005-08-10 Raphael Neider <rneider AT web.de>
1259
1260         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1261           Rokas' patch to add the new fixed point type "__fixed16x16"
1262         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1263           functions for __fixed16x16 arithmetics
1264         * device/lib/pic16: reimplemented the build system to support
1265           a separate build directory, better handling of libio (create
1266           the library in a separate subdir for each architecture) and
1267           easier configuration (centralized in Makefile.common)
1268
1269 2005-08-07 Raphael Neider <rneider AT web.de>
1270
1271         * src/pic16/gen.c (genrshTwo): fixed sign extension
1272         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1273         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1274           added T0CONbits
1275         * device/include/pic16/pic18f4220.h: NEW, header for
1276           pic18f4220 and pic18f4320
1277         * device/include/pic16/pic18fregs.h: added new devices,
1278           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1279         * device/include/pic16/signal.h: resolved name clashes
1280           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1281           to also allow testing for interrupt enable bits, added
1282           comments on how to use the macros
1283         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1284         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1285           register definitions for the devices
1286         * device/lib/pic16/pics.all: added new devices
1287         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1288           allocated memory
1289         * device/lib/pic16/libc/stdlib/memfree: do not count
1290           the block header as free memory
1291         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1292           simplified and added missing end-of-blocklist-marker
1293           (reported by Peter Onion, fixes #1252814)
1294         * (_mergeHeapBlock): fixed loop condition
1295         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1296           len==0, restructured code
1297         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1298           up a bit, reduced bitfield accesses, prevent endless loops
1299           in case of heap corruption
1300         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1301           "unreferenced arguments/must return a value" warnings
1302         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1303           replaced BAUDREG with SPBRG
1304         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1305           device/lib/pic16/debug/gstack/gstack.c: replaced
1306           _naked, _asm, _endasm with __naked, __asm, __endasm
1307
1308 2005-08-05 Raphael Neider <rneider AT web.de>
1309
1310         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1311           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1312
1313 2005-08-05 Borut Razem <borut.razem AT siol.net>
1314
1315         * device/lib/Makefile.in: added missing ';'
1316         * configure: removed ^M characters
1317
1318 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1319
1320         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1321           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1322           License
1323
1324 2005-08-04 Borut Razem <borut.razem AT siol.net>
1325
1326         * configure.in: pic16 libraries build 2nd try - enable running
1327           configure in device/lib/pic16
1328         * configure: regenerated from configure.in
1329         * device/lib/Makefile.in: create $(PORT)/bin directory
1330
1331 2005-08-03 Raphael Neider <rneider AT web.de>
1332
1333         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1334           to get/set values via pointers
1335         * (genUnpackBits,genPackBits): changed detection of
1336           ptr->bitfield vs. sym.bitfield, fixed access via generic
1337           pointers, removed dead (wrong) code for multibyte bitfields
1338         * (genNearPointerGet, genGenPointerGet): removed useless code,
1339           fixed bitfield detection, fixes #1250594
1340         * (genNearPointerSet): removed useless code
1341         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1342           and introduced macro pic16_emitpcode that conditionally emits
1343           the origin of the following pCode (useful for debugging SDCC)
1344         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1345         * (createDefmap): fixed handling of LFSR for --optimize-df
1346
1347 2005-08-02 Borut Razem <borut.razem AT siol.net>
1348
1349         * device/lib/Makefile.in: pic16 libraries build enabled since
1350           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1351
1352 2005-08-02 Raphael Neider <rneider AT web.de>
1353
1354         * src/pic16/gen.c (genPackBits): removed deprecated warning
1355         * (genGenPointerSet): fixed bitfield detection
1356
1357 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1358
1359         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1360
1361 2005-07-31 Raphael Neider <rneider AT web.de>
1362
1363         * device/lib/pic16/libdev/pic18f458.c,
1364           device/include/pic16/pic18f458.h: added missing T0CONbits
1365
1366 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1367
1368         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1369
1370 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1373
1374 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1375
1376         * device/include/mcs51/at89c51ed2.h: added.
1377
1378 2005-07-23 Raphael Neider <rneider AT web.de>
1379
1380         * src/pic/gen.h: added emitpcode macro for debugging
1381         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1382           and replace by macro adding debug information on demand
1383         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1384         * (gencjne): tried to fix; replaced with correct (slower) code
1385         * (gen{Unp,P}ackBits): fixed single bit access
1386         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1387         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1388           previous instruction
1389         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1390           register has to be handled with care (forbidding movement
1391           of assignments/uses, removing assignments completely, ...)
1392         * (pCodeOptime2pCodes): make use of regIsSpecial
1393         * added lots of debugging output (commented out)
1394         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1395           from being reused as result UNLESS it is known to work
1396
1397 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1398
1399         * support/Util/dbuf.h: include <stddef.h> for size_t
1400         * .version: changed to version 2.5.2
1401
1402 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1403
1404         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1405
1406 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1407
1408         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1409           (genModOneByte): removed needless psha/pula
1410
1411 2005-07-22 Raphael Neider <rneider AT web.de>
1412
1413         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1414           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1415         * src/pic/gen.c (resolveIfx): do not "invent" labels
1416         * (genSkipc): changed to positive logic
1417         * (genSkipCond): removed as no longer needed
1418         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1419           backport from PIC16
1420         * (genLeftShift): check operands are in different registers
1421         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1422           INCF does not update CARRY...
1423         * src/pic/main.c: fixed _linkCmd
1424         * src/pic/pcode.c (unlinkpCode): added inactive code
1425         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1426           alive (do not assign result and operand overlapping registers)
1427
1428 2005-07-22 Raphael Neider <rneider AT web.de>
1429
1430         * src/pic/device.c (dump_sfr): replaced register declaration with
1431           call to emitSymbolToFile() to avoid duplicate symbols
1432         * (assignRelocatableRegisters): do not declare external symbols
1433         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1434           right (take size of type, not etype)
1435         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1436         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1437         * (packRegsForAccUse): disabled assignment of WREG as
1438           the result reg to prevent occurence of just fixed #1235003,
1439           fixes #1242954
1440         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1441           symbols (avoids duplicate symbols in .asm file)
1442         * (pic14emitRegularMap): use emitSymbolToFile()
1443         * src/pic/gen.c (aopOp): fixed spillLocation handling
1444         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1445         * (genDataPointerSet): removed unneccessary variables/output
1446
1447 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1448
1449         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1450         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1451
1452 2005-07-21 Raphael Neider <rneider AT web.de>
1453
1454         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1455           architecture cannot handle them efficiently, fixes bug #1235003
1456         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1457           check for empty sets before using them (fixes bug #1232190)
1458
1459 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1460
1461         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1462           (lnksect2): generate warnings for memory overlap
1463         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1464           constseg to set the name of these segments so you can instruct the linker
1465           to place them in banks
1466         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1467         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1468           added code_seg and const_seg to options
1469         * src/SDCCglue.c (emitMaps): use options.const_seg,
1470           (createInterruptVect): put interrupt vectors in segment HOME,
1471           (glue): put HOME before static segment and put the main glue in HOME,
1472           (glue): use options.code_seg
1473         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1474         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1475           these segments so you can instruct the linker to place them in banks
1476           (linkEdit): use code_loc for HOME segment which should be the first
1477           segment in code memory now
1478         * src/SDCCmem.c: fixed more stuff like bug 1238386
1479         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1480           (changePointer): don't change function pointers to code pointers for
1481           banked functions,
1482           (compareType): added exceptional check for banked function pointers
1483         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1484         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1485           after static in code memory
1486         * src/mcs51/gen.c: added aopLiteralLong prototype,
1487           (aopForSym): use getSize for functions,
1488           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1489           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1490           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1491           the segment,
1492           (genPcall): use call for literal function pointers and generate banked
1493           calls over the one trampoline so there's only one place for the user to
1494           modify according to his/hers hardware,
1495           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1496           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1497         * src/mcs51/main.c: added keyword banked,
1498           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1499         * support/Util/SDCCerr.c,
1500         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1501           needed for passing the bank and address to the trampoline
1502         * device/lib/mcs51/crtbank.asm: added for bankswitching
1503         * device/lib/mcs51/Makefile: added crtbank
1504
1505 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1506
1507         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1508           for fields at offset 0 of a struct or union as reported
1509           on 2005-07-07 in the developer mailing list.
1510
1511 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1512
1513         * src/SDCCmem.c: fixed bug 1238386
1514
1515 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1516
1517         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1518           (patch #1144962), added peephole 300, enabled 259.x
1519         * doc/sdccman.lyx: removed screenshot and provided link instead
1520
1521 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1522
1523         * doc/sdccman.lyx: added section about debugging with ddd
1524         * doc/figures/ddd_example.eps: screenshot of debugging session
1525
1526 2005-07-04 Raphael Neider <rneider AT web.de>
1527
1528         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1529           like CODE pointers, fixes #1115683
1530         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1531           call, fixes bugs #1232211, #1228110,
1532           fixed wrong casts to pCodeFlow from pCodeInstructions
1533
1534 2005-07-04 Raphael Neider <rneider AT web.de>
1535
1536         * src/pic/gen.c (popGet): changed assert to allow for
1537           bit operands
1538         * (popGetAddr): changed signature to provide
1539           an additional index, patched all call sites
1540         * (genCmpEq): handle literal-like operands correctly
1541         * (genAddrOf): added sanity checks on __code/__data pointers
1542         * (genAssign): added handling of symbols from __code section
1543         * (gencjne): do not generate code for comparisons whose result
1544           is neither stored nor used, fixes bug #1171114
1545         * (AccLsh, AccRsh): operate on operand instead of WREG
1546         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1547           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1548           by known count
1549         * rewrote complete shift-by-literal logic, commented unused
1550           functions out
1551         * (genConstPointerGet): get multiple bytes (if result size > 1),
1552           fixed handling of non-immediate addresses
1553         * (genPointerGet): handle CODE pointers like CONST pointers
1554         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1555         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1556           operand is to be treated as a literal or not
1557         * (mov2w,genPcall,genCmpEq),
1558           src/pic/genarith.c: use aop_isLitLike() to decide between
1559           literal/register contents
1560         * (addSign): added missing offset
1561         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1562           only emit comment in debug-mode,
1563           use {aop,op}_isLitLike throughout the file
1564         * src/pic/glue.c: fix initializers for pointers (work in progress)
1565         * src/pic/pcode.c (get_op): honor index on _const symbols
1566         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1567         * (dumppBlock): added pCode size estimation
1568         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1569           check for IS_SYMOP before OP_SYMBOL'ing
1570         * fixed indentation, compacted switch-statements
1571         * (allocReg): find free register and allocate it instead of
1572           allocating new registers all the time
1573         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1574           registers as its operands (necessary only for multibyte GETs)
1575
1576 2005-07-01 Raphael Neider <rneider AT web.de>
1577
1578         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1579           debugging .asm-output macros FENTRY + FEXIT
1580         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1581           way... I wonder...
1582         * (emitpComment): NEW, printf to pCode
1583         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1584           offset handling
1585         * (popGetAddr): NEW, variant of popGet to access an immediates
1586           high(er) bytes instead of the n'th byte of memory they reference,
1587           replaced popGet with popGetAddr where neccessary
1588         * (genDataPointerGet): reactivated and fixed implementation
1589         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1590           accesses
1591         * (genDataPointerSet): fixed multibyte assignments
1592         * (genpic14Code): fixed --i-code-in-asm handling
1593         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1594         * (genPlus): fixed index-out-of-bounds error
1595         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1596         * src/pic/ralloc.c: added debugging output macro FENTRY2
1597         * (spillThis): fixed indentation, enbraced for-body for clarity
1598         * (rematStr): commented out as now unused
1599         * (regTypeNum): commented out special spill case (overwrites
1600           arbitrary values)
1601         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1602
1603 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1604
1605         * doc/sdccman.lyx: documented sfr16/sfr32,
1606           added example for using storage class with function pointers
1607         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1608
1609 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1610
1611         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1612         * device/lib/_itoa.c,
1613         * device/lib/_ltoa.c: optimized codesize
1614         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1615           but don't know how to suppress the double warning.
1616         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1617         * support/Util/SDCCerr.c,
1618         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1619
1620 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1621
1622         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1623           fixed old K&R prototypes
1624         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1625         * device/lib/_gptrget.c,
1626         * device/lib/_gptrgetc.c,
1627         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1628           also new versions for small generic pointers and banked generic pointers
1629         * src/port.h: added const_name
1630         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1631         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1632         * src/SDCCcse.c (findPrevIc): check all associative operators
1633         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1634         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1635         * src/SDCCmem.c: updated comments,
1636           set far-space to 0 for pdata, results in optimized code
1637         * src/SDCCmem.h: added macro CONST_NAME
1638         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1639           moving the info into the highest bits, see also gptrget/gptrput
1640         * src/src.dsp: added sdcc.ico to project files
1641         * src/avr/gen.c (genCast): fixed bug 0x%d
1642         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1643         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1644           relation between ptr_type and DCL_TYPE,
1645           (genCast): fixed bug 0x%d
1646         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1647           (CODE)" for const_name
1648         * src/hc08/gen.c (genCast): fixed bug 0x%d
1649         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1650           (hc08_port): added "CONST (CODE)" for const_name
1651         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1652           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1653           between ptr_type and DCL_TYPE,
1654           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1655           operand* and took AOP() inside function so sfr-ness can be checked,
1656           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1657           new prototype,
1658           (genFunction, genEndFunction): optimized stack setup,
1659           (genMinus): optimized for literals with ending zeroes (in bytes),
1660           (genCast): fixed bug 0x%d
1661         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1662           (mcs51_port): added "CONST (CODE)" for const_name
1663         * src/mcs51/peeph.def: made rule 226 more generic
1664         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1665         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1666         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1667         * src/z80/main.c (z80_port): added NULL for const_name,
1668           (gbz80_port): added NULL for const_name
1669         * support/regression/tests/bug663539.c,
1670         * support/regression/tests/sfr16.c: new tests
1671
1672 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1673
1674         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1675
1676 2005-06-24 Raphael Neider <rneider AT web.de>
1677
1678         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1679           corrected typos...
1680         * device/include/pic16/signal.h: added USBIF
1681           and SIG_USB
1682
1683 2005-06-24 Raphael Neider <rneider AT web.de>
1684
1685         * device/lib/pic16/libdev/pic18f2455.c,
1686           device/include/pic16/pic18f2455.h: NEW
1687         * device/include/pic16/pic18fregs.h,
1688           device/lib/pic16/pics.all,
1689           src/pic16/device.c: added 18f2455
1690         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1691           device/include/pic16/{pic18f[68][567].h,usart.h}:
1692           replaced MULTIPLE_USARTS define with more relaible
1693           compatibility sfrs (for USART access)
1694
1695 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1696
1697         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1698           and the output asm file line is printed on two lines.
1699
1700 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1701
1702         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1703           BGT, BLE, BHI, and BLS instructions
1704         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1705           genCmpEq): removed
1706         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1707           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1708           fixes bug #1216342
1709         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1710
1711 2005-06-15 Raphael Neider <rneider AT web.de>
1712
1713         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1714         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1715         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1716           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1717           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1718
1719 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1720
1721         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1722           Marcel Telka in bug #1215704
1723
1724 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1725
1726         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1727           located in shared memory bank.
1728
1729 2005-05-31 Raphael Neider <rneider AT web.de>
1730
1731         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1732           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1733           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1734
1735 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1736
1737         * device/lib/_strncpy.c: fixed the fix
1738
1739 2005-05-26 Raphael Neider <rneider AT web.de>
1740
1741         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1742           initializers with \0, bug #1208187
1743         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1744           intializers with \0, bug #1208187
1745
1746 2005-05-26 Raphael Neider <rneider AT web.de>
1747
1748         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1749           initializers with \0, bug #1208187
1750         * src/pic16/main.c (_process_pragma): added sanity checks
1751           for stack position and size, emit warnings when appropriate
1752
1753 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1754
1755         * device/lib/_strncpy.c: fixed not filling with \0
1756
1757 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1758
1759         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1760           createFunction),
1761         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1762           compound_statement),
1763         * src/SDCCsymt.h,
1764         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1765
1766 2005-05-24 Raphael Neider <rneider AT web.de>
1767
1768         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1769
1770 2005-05-24 Raphael Neider <rneider AT web.de>
1771
1772         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1773           TRISE definitions, closes bug #1162453
1774
1775 2005-05-22 Raphael Neider <rneider AT web.de>
1776
1777         * src/pic16/main.c (_process_pragma): check for missing
1778           arguments to pragmas code and udata
1779         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1780           consistency fixes to match other headers (thanks to Jim Paris)
1781         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1782
1783 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1784
1785         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1786
1787 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1788
1789         * support/regression/tests/bug1198642.c: new test
1790         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1791         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1792         * support/scripts/resource.h,
1793         * support/scripts/resource.rc,
1794         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1795         * support/scripts/sdcc.ico: added 32x32 icon
1796
1797 2005-05-18 Raphael Neider <rneider AT web.de>
1798
1799         * device/lib/pic16/libdev/pic18f*.c,
1800         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1801           keywords to "__sfr" and "__at (X)"
1802         * device/include/pic16/pic18fregs.h: added pic18f4520
1803         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1804           #1203088 (MPLAB compatibility)
1805
1806 2005-05-17 Raphael Neider <rneider AT web.de>
1807
1808         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1809         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1810         * device/lib/pic16/pics.all: added new devices
1811         * src/pic16/device.c: added support for pic18f4520
1812
1813 2005-05-16 Raphael Neider <rneider AT web.de>
1814         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1815         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1816         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1817           convenience function for bit access
1818
1819 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1820
1821         * device/lib/printf_large.c: fixed bug 1193299
1822         * support/regression/tests/bug1057979.c: added test %3.3s
1823
1824 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1825
1826         * device/include/mcs51/8051.h,
1827         * device/include/mcs51/8052.h: made parseable with lint
1828         * device/include/mcs51/lint.h: added include file for (sp)lint
1829         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1830         * doc/cdbfileformat.lyx,
1831         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1832
1833 2005-05-14 Raphael Neider <rneider AT web.de>
1834
1835         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1836         * device/lib/pic16/libc/stdlib/itoa.c (new)
1837         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1838         * device/lib/pic16/libio/Makefile: exclude subdir according to
1839           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1840         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1841         * src/pic16/gen.c (genFunction): prevent annoying warning
1842         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1843           nameclashes on BeOS
1844         * support/cpp2/cppmain.c (cpp_output_string): new
1845         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1846           fixes bug 1116802
1847
1848 2005-05-13 Borut Razem <borut.razem AT siol.net>
1849
1850         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1851
1852 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1853
1854         * .version: changed to version 2.5.1; back to bleeding edge development
1855
1856 2005-05-11 Borut Razem <borut.razem AT siol.net>
1857
1858         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1859           generate PDF version 1.3 documents
1860
1861 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1862
1863         * .version: changed to version 2.5.0
1864
1865 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1866
1867         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1868
1869 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1870
1871         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1872         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1873         well as many smaller updates.
1874         * .version: changed to version 2.5.0-pre1
1875
1876 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1877
1878         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1879
1880 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1881
1882         * support/regression/tests/bug1185672.c: added
1883         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1884           bug 1185672
1885         * src/mcs51/gen.c (genCall): added comments, made it look safer
1886         * src/mcs51/gen.c (genEndFunction): simplified
1887
1888 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1889
1890         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1891
1892 2005-04-14 Borut Razem <borut.razem AT siol.net>
1893
1894         * fixed bug 1045046 - SIGSEGV with really simple code?:
1895           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1896           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1897
1898 2005-04-14 Borut Razem <borut.razem AT siol.net>
1899
1900         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1901           src/pic16/device.h: temporarily disabled experimental #inline pragma
1902           for 2.5.0 release
1903
1904 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1905
1906         * device/include/z80/stdio.h,
1907         * device/include/z80/string.h: removed these highly incomplete files so
1908           SDCC can use the default ones in device/include/
1909
1910 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1911
1912         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1913         gcc warning.
1914         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1915         fix sdcpp warnings.
1916
1917 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1918
1919         * device/include/malloc.h: removed redundant __reentrant prototypes
1920         * device/lib/_mullong.c: added working xstack variant in asm (C version
1921           doesn't pass regression tests)
1922         * device/lib/bpx.c: used __data and made bpx char for mcs51
1923         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1924           (createFunction): fixed bug with xstackPtr
1925         * src/SDCCcse.c: corrected comments
1926         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1927           (killDeadCode, eBBlockFromiCode): removed unused code
1928         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1929           corrected comments
1930         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1931           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1932           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1933           (genModOneByte): fixed warning in MSVC
1934         * src/mcs51/main.c (): added comments
1935         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1936
1937 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1938
1939         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1940
1941 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1942
1943         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1944
1945 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1946
1947         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1948         characters arrays of larger size than the declared one.
1949
1950 2005-04-10 Borut Razem <borut.razem AT siol.net>
1951
1952         * src/pic/gen.c (genInline),
1953           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1954           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1955           (findNextInstruction), (findPrevInstruction),
1956           (findInstructionUsingLabel),
1957           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1958         * src/pic/pcode.c (findLabel): added missing '\n'
1959         * src/src.dsp: added SDCCdwarf2.c to the project
1960
1961 2005-04-09 Borut Razem <borut.razem AT siol.net>
1962
1963         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1964
1965 2005-04-08 Raphael Neider <rneider AT web.de>
1966
1967         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1968           into the chain after a given one) and mergeDefmapSymbols (combine
1969           defmap entries for each symbol per pcode)
1970         * (createDefmap): have defmap entries merged in the end
1971         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1972           a symbol before replacing one access type's symbol, merge symbols in
1973           the end (replacement symbol might already have an entry)
1974         * (assignValnums): keep reference to written WREG intact
1975
1976 2005-04-08 Raphael Neider <rneider AT web.de>
1977
1978         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1979           Alpha)
1980
1981 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1982
1983         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1984         bytes
1985
1986 2005-04-07 Raphael Neider <rneider AT web.de>
1987
1988         * device/include/pic16/usart.h: added compatibility defines for
1989           devices with more than one USART
1990         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1991
1992 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * device/lib/Makefile.in: updated for port specific include
1995
1996 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1999
2000 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * device/include/8051.h,
2003         * device/include/8052.h,
2004         * device/include/at89S8252.h,
2005         * device/include/at89c55.h,
2006         * device/include/at89x051.h,
2007         * device/include/at89x51.h,
2008         * device/include/at89x52.h,
2009         * device/include/mcs51reg.h,
2010         * device/include/reg51.h,
2011         * device/include/reg764.h,
2012         * device/include/regc515c.h,
2013         * device/include/sab80515.h: (re)moved these 12 files
2014         * device/include/mcs51/8051.h,
2015         * device/include/mcs51/8052.h,
2016         * device/include/mcs51/at89S8252.h,
2017         * device/include/mcs51/at89c55.h,
2018         * device/include/mcs51/at89x051.h,
2019         * device/include/mcs51/at89x51.h,
2020         * device/include/mcs51/at89x52.h,
2021         * device/include/mcs51/mcs51reg.h,
2022         * device/include/mcs51/reg51.h,
2023         * device/include/mcs51/reg764.h,
2024         * device/include/mcs51/regc515c.h,
2025         * device/include/mcs51/sab80515.h: and added them here
2026
2027 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2028
2029         * device/include/stdarg.h: changed SDCC specific keywords to double
2030           underlined form.
2031         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2032           mcs51 and ds390.
2033         * device/include/hc08/mc68hc908gp32.h,
2034         * device/include/hc08/mc68hc908jb8.h,
2035         * device/include/hc08/mc68hc908jkjl.h,
2036         * device/include/hc08/mc68hc908qy.h: fixed comments
2037         * device/include/mcs51/README: updated
2038         * device/include/mcs51/c8051f120.h: added PINRSF
2039         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2040         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2041           amidst code. Also inline is not supported.
2042
2043 2005-04-06 Raphael Neider <rneider AT web.de>
2044
2045         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2046         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2047           callers stack/frame pointers
2048
2049 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2050
2051         * device/include/pic16/usart.h: added, missing in previous commit,
2052         * device/include/pic16/adc.h: fixed typo,
2053         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2054         commit,
2055         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2056         <p18fxxx.inc>
2057         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2058         uninitialized because a bug appears with gplink
2059         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2060         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2061         complains for unrecognised option
2062
2063 2005-04-05 Raphael Neider <rneider AT web.de>
2064
2065         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2066           structs as well (using memcpy)
2067         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2068           on ISRs (GOTO has no label)
2069         * src/pic16/device.h: added OF_OPTIMIZE_DF
2070         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2071           new data flow analysis/optimization
2072         * src/pic16/pcode.c: added (prototypes for and implementation of)
2073           dataflow analysis functions, fixed pCodeInstructions' inCond and
2074           outCond values, made RCALL a branch instruction
2075         * (pic16_unlinkpCode): keep C line if possible
2076         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2077           C line moved if possible
2078         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2079         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2080           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2081         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2082           new flow)
2083         * (pic16_getJumptabpCode): NEW, needed in...
2084         * (LinkFlow): fixed handling of jumptables, calls and conditional
2085           branches
2086         * (pic16_InsertCommentAfter): NEW
2087         * (pic16_pCodeReplace): made verbose and flow preserving
2088         * (AnalyzeFlow): added call to data flow analysis
2089         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2090         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2091         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2092
2093 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2094
2095         * src/SDCCast.c (decorateType): fixed bug #1105626
2096
2097 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2098
2099         * device/include/asm/pic16/features.h,
2100         * pic18f*.h headers,
2101         * device/include/pic16/adc.h,
2102         * device/include/pic16/delay.h,
2103         * device/include/pic16/i2c.h,
2104         * device/include/pic16/malloc.h,
2105         * device/include/pic16/stdio.h,
2106         * device/include/pic16/stdlib.h,
2107         * device/include/pic16/string.h,
2108         * device/lib/pic16/libc/stdio/printf_tiny.c,
2109         * device/lib/pic16/libc/stdio/printf_small.c,
2110         * device/lib/pic16/libc/stdio/strmgpsim.c,
2111         * device/lib/pic16/libc/stdio/strmmssp.c,
2112         * device/lib/pic16/libc/stdio/strmusart.c,
2113         * device/lib/pic16/libc/stdio/vfprintf.c,
2114         * device/lib/pic16/libc/stdlib/ltoa.c,
2115         * device/lib/pic16/libc/stdlib/putchar.c,
2116         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2117         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2118         * device/lib/pic16/libc/stdlib/memchrram.c,
2119         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2120         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2121         * device/lib/pic16/libio/adc/adcbusy.c,
2122         * device/lib/pic16/libio/adc/adcread.c,
2123         * device/lib/pic16/libio/adc/adcsetch.c,
2124         * device/lib/pic16/libio/usart/ubaud.c,
2125         * device/lib/pic16/libio/usart/ubusy.c,
2126         * device/lib/pic16/libio/usart/udrdy.c,
2127         * device/lib/pic16/libio/usart/uopen.c,
2128         * device/lib/pic16/libio/usart/uputc.c,
2129         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2130         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2131         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2132         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2133         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2134         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2135         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2136         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2137         specific keywords to double underlined form,
2138         * device/lib/pic16/libc/Makefile.rules,
2139         * device/lib/pic16/libsdcc/Makefile.rules,
2140         * device/lib/pic16/libm/Makefile,
2141         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2142         to compile with C standard set in Makefile.common
2143         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2144         rand.c and crc.c in compilation process,
2145         * device/lib/pic16/libsdcc/int/divuint.c,
2146         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2147         `c' from signed to unsigned,
2148         * device/lib/pic16/startup/crt0.c,
2149         * device/lib/pic16/startup/crt0i.c,
2150         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2151         keywords to double underlined form, bug fixes in _do_cinit function
2152         which prevented the correct initialization of the .idata segment,
2153         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2154         core to enter a infinite loop
2155         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2156
2157 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2158
2159         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2160
2161 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2162
2163         * device/include/Makefile.in: add support for hc08 subdirectory
2164         * device/include/hc08/: new subdirectory
2165         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2166         Lucas Loizaga, thanks!
2167         * device/include/hc08/mc68hc908qy.h,
2168         * device/include/hc08/mc68hc908gp32.h,
2169         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2170         their own directory. Changed internal macro names to use the compiler
2171         reserved namespace. Changed SDCC specific keywords to double
2172         underlined form.
2173         * device/include/math.h,
2174         * device/include/malloc.h,
2175         * device/include/stdarg.h,
2176         * device/include/stdbool.h
2177         * device/include/string.h,
2178         * device/include/tinibios.h,
2179         * device/include/ds400rom.h,
2180         * device/include/8051.h,
2181         * device/include/8052.h,
2182         * device/include/80c51xa.h,
2183         * device/include/at89c55.h,
2184         * device/include/at89S8252.h,
2185         * device/include/at89x51.h,
2186         * device/include/at89x52.h,
2187         * device/include/ds80c390.h,
2188         * device/include/reg764.h,
2189         * device/include/regc515c.h,
2190         * device/include/sab80515.h,
2191         * device/include/mcs51/c8051f000.h,
2192         * device/include/mcs51/c8051f018.h,
2193         * device/include/mcs51/c8051f020.h,
2194         * device/include/mcs51/c8051f040.h,
2195         * device/include/mcs51/c8051f060.h,
2196         * device/include/mcs51/c8051f120.h,
2197         * device/include/mcs51/c8051f300.h,
2198         * device/include/mcs51/c8051f310.h,
2199         * device/include/mcs51/c8051f320.h,
2200         * device/include/mcs51/c8051f330.h,
2201         * device/include/mcs51/c8051f350.h,
2202         * device/include/z180.h: Changed SDCC specific keywords to double
2203         underlined form.
2204
2205 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2206
2207         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2208         18F4455,
2209         * (pic16_assignConfigWordValue): disable testing of configuration
2210         register value with config mask,
2211         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2212         function with port->fun_prefix,
2213         * (genFunction): when generating a naked interrupt function never
2214         create an absolute segment placed in interrupt vector address, place
2215         the actual interrupt function at IVA instead, when an interrupt
2216         function is generated with unspecified interrupt then do not create
2217         the absolute section,
2218         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2219         code for generating a call to generic pointer get/put function with
2220         a call to function pic16_callGenericPointer(),
2221         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2222         the call to the generic pointer get/put functions with prefixing the
2223         function name with port->fun_prefix,
2224         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2225         * src/pic16/main.c (_process_pragma): prefix function with
2226         port->fun_prefix,
2227         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2228         calling assembler, old 18Fxxxx macro is deprecated,
2229         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2230         PC_ASMDIR in while condition,
2231         * (findInstruction): add PC_ASMDIR in while condition,
2232         * (buildCallTree): prefix main with port->fun_prefix,
2233         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2234         identifier for variable with banked access in instructions BTFSS,
2235         BTFSC, BCF, BSF, BTG
2236         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2237         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2238         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2239         perform optimization when enviroment variable NO_REG_OPT is set,
2240         * (insideLRBlock): NEW, return 1 if register is inside an
2241         INF_LOCALREGS block,
2242         * (RemoveRegFromLRBlock): remove a register that is completely
2243         eliminated by register optimization, but it is still left in local
2244         register store/restore in/from stack block,
2245         * (Remove2pcodes): after removing register, check to see if it
2246         should be removed from local register store/restore in/from stack
2247         block,
2248         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2249         DUMMY_READ_VOLATILE,
2250
2251         * device/include/pic16/adc.h: minor prototype modifications and
2252         update,
2253         * device/include/pic16/malloc.h: added GPL notice various
2254         modifications,
2255         * device/include/pic16/stdint.h: NEW, standard header for ints
2256         * device/include/pic16/delay.h: NEW, header for delay functions,
2257         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2258         delay1mtcy,
2259         * device/include/pic16/signal.h: NEW, header providing helper macros
2260         for implementing signal handlers,
2261         * device/include/pic16/stdio.h: added prototypes for functions,
2262         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2263         prototypes for stdin and stdout, added macro PUTCHAR to
2264         automatically implement putchar function prototype,
2265         * device/include/pic16/usart.h: modified and updated USART library,
2266         * device/lib/pic16/libio/adc/,
2267         * device/lib/pic16/libio/i2c: some modifications to improve library
2268         performance,
2269         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2270         family of functions,
2271         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2272         family of functions and other sources,
2273         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2274         of the PIC18Fxx[28] devices,
2275         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2276         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2277         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2278         _do_cinit function, because the previous failed when local variables
2279         where not placed in the same memory bank,
2280         * device/lib/pic16/libsdcc/char/: various modifications to improve
2281         library performance,
2282         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2283         information on the new functions of the c library and more...
2284
2285 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2286
2287         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2288
2289 2005-03-26 Raphael Neider <rneider AT web.de>
2290
2291         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2292           if condition == CARRY)
2293         * (genCmp): adapted to new genSkipc semantics
2294         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2295           on rIfx (genCmp was broken)
2296
2297 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2298
2299         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2300         * src/z80/main.c (_keywords[]),
2301         * src/SDCCglobal.h (struct options),
2302         * src/SDCC.y,
2303         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2304         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2305         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2306         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2307         always available in leading double underscore form. The C99 support is
2308         mostly missing, but it's a start.
2309         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2310         reserved identifier "__data".
2311
2312 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2313
2314         * src/mcs51/peeph.def: fixed bug 1170013
2315
2316 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2317
2318         * device/include/mcs51reg.h: fixed bug 842007
2319
2320 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2321
2322         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2323         last time.
2324
2325 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2326
2327         * src/port.h (struct PORT),
2328         * src/avr/ralloc.c (avr_assignRegisters),
2329         * src/avr/main.c,
2330         * src/ds390/ralloc.c (ds390_assignRegisters),
2331         * src/ds390/main.c,
2332         * src/hc08/ralloc.c (hc08_assignRegisters),
2333         * src/hc08/main.c,
2334         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2335         * src/mcs51/main.c,
2336         * src/pic/ralloc.c (pic14_assignRegisters),
2337         * src/pic/main.c,
2338         * src/pic16/ralloc.c (pic16_assignRegisters),
2339         * src/pic16/main.c,
2340         * src/xa51/ralloc.c (xa51_assignRegisters),
2341         * src/xa51/main.c,
2342         * src/z80/ralloc.c (z80_assignRegisters),
2343         * src/z80/ralloc.h,
2344         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2345         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2346         * src/SDCCcse.h,
2347         * src/SDCCdflow.c (computeDataFlow),
2348         * src/SDCCdflow.h,
2349         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2350         * src/SDCCloop.h,
2351         * src/SDCCcflow.c (*),
2352         * src/SDCCcflow.h,
2353         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2354         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2355         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2356         immedDom() returning wrong block; probably fixes bug #1160833)
2357
2358 2005-03-20 Borut Razem <borut.razem AT siol.net>
2359
2360         * support/scripts/inc2h.pl: WIN32 port
2361
2362 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2363
2364         * device/lib/makefile.in: added abs.c and labs.c
2365
2366 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2367
2368         * device/include/stdint.h: added
2369         * device/lib/abs.c: added
2370         * device/lib/labs.c: added
2371         * device/include/stdlib.h: added abs() and labs() prototypes
2372         * device/lib/libsdcc.lib: added abs and labs
2373         * device/include/float.h,
2374         * device/lib/_fsmul.c,
2375         * device/lib/printf_fast.c,
2376         * device/lib/printf_tiny.c: updated comments
2377
2378 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2379
2380         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2381         bug #1164313
2382
2383 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2384
2385         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2386         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2387
2388 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2389
2390         * device/lib/printf_large.c: removed inline assembly for portability and
2391           readability. Use printf_fast if speed or size are more important.
2392         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2393         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2394
2395 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2396
2397         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2398         prevent compiler warning
2399
2400 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2401
2402         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2403         moved to level 0 and declared as static. Also they are explicit
2404         placed in access bank. This was necessery because some times they
2405         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2406         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2407         optimizations. Currently only compare to unsigned char is implemented,
2408         * src/pic16/gen.c: added fReturnIdx array,
2409         * (struct resolvedIfx) is moved to gen.h and made public,
2410         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2411         * (aopForSym): added an optimization to directly store in stack of
2412         the operand of a SEND iCode,
2413         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2414         but as registers instead (AOP_REG) using the fReturnIdx array,
2415         * (pic16_freeAsmop): remove the freed register from the
2416         _G.sregsAlloc field,
2417         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2418         a compare of 'WREG',
2419         * (pic16_popGetTempRegCond): changed function prototype, now
2420         function takes also a bitVector argument v which holds the current
2421         set of registers that are allocated for stack access by aopForSym,
2422         registers allocated in aopForSym for accessing stack symbols are not
2423         any more part of the functions usedRegs field,
2424         * (genCall): some times aopOp is called for a stack variable to be
2425         send, aopForSym might perform the push, if this is true make sure
2426         that genCall doesn't push the variable twice by testing _G.resDirect,
2427         * (genFunction): changed testing for unspecified interrupt number
2428         from 256 to INTNO_UNSPEC,
2429         * modified selection scheme of frame pointer generation. Previously
2430         if function did use local registers a frame pointer was generated,
2431         now a frame pointer is generated only if function has arguments
2432         (that need PLUSW2 register access), or has stack arguments, or the
2433         compiler is not instructed to omit the frame pointer,
2434         * (genEndFunction): before restoring local registers that were saved
2435         in the function preamble, also restore the registers that *might*
2436         have been allocated for stack access,
2437         * (genRet): removed some old comments,
2438         * (genCmp, the active (RN's) version): added a call to the
2439         pic16_genCmp_special function to perform the compare with a more
2440         robust and optimized way,
2441         * (genInline): a feature has been added in inline code generation,
2442         which allows a wildcard variable substitution when writing inline
2443         assembly. Code is incomplete and experimental therefore undocumented,
2444         * (genCast): changed order of aopOp for result and right to allow
2445         aopForSym to directly load the result if possible,
2446         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2447         perform an optimized compare on some selected special occasions,
2448         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2449         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2450         generate an IVT any more,
2451         * src/pic16/main.c (pic16_optionsTable): added command line option
2452         --optimize-cmp,
2453         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2454         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2455         macros,
2456         * src/pic16/NOTES: Raphael Neider added in list of active developers
2457         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2458         jumptable_end to prevent bug #,
2459         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2460         inCond and outCond fields,
2461         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2462         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2463         turn off register spilling,
2464         * (packRegsForOneUse): synced with other ports' versions although it
2465         is not used currently,
2466         * (pic16_packRegisters): added an optimization while reading
2467         structure bitfields, some registers may be saved (malloc code is
2468         decreased by 80 bytes)
2469
2470 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2471
2472         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2473         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2474         this can be optimized more?
2475
2476 2005-03-10 Raphael Neider <rneider AT web.de>
2477
2478         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2479           genNearPointerGet): (hopefully) fixed access to bitfields via
2480           pointers (p->bitN = x; and x = p->bitN; failed)
2481
2482 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2483
2484         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2485
2486 2005-03-09 Raphael Neider <rneider AT web.de>
2487
2488         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2489
2490 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2491
2492         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2493         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2494           (regTypeNum): set REG_BIT type if necessary
2495         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2496         * support/regression/tests/critical.c: check bug 1144613
2497
2498 2005-03-02 Raphael Neider <rneider AT web.de>
2499
2500         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2501
2502 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2503
2504         * src/avr/ralloc.c (serialRegAssign),
2505         * src/ds390/ralloc.c (serialRegAssign),
2506         * src/hc08/ralloc.c (serialRegAssign),
2507         * src/mcs51/ralloc.c (serialRegAssign),
2508         * src/pic/ralloc.c (serialRegAssign),
2509         * src/pic16/ralloc.c (serialRegAssign),
2510         * src/xa51/ralloc.c (serialRegAssign),
2511         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2512
2513 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2514
2515         * src/SDCCast.c (decorateType): fixed bug 1124787
2516
2517 2005-02-20 Hubert Sack <sack AT digiplan.de>
2518         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2519
2520         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2521         patch #1121755
2522
2523 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2524
2525         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2526         to keep the correct label reference count when adding/removing references
2527         to labels. A peephole file using this is appended to patch #1144962.
2528
2529 2005-02-14 Raphael Neider <rneider AT web.de>
2530
2531         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2532         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2533         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2534           retrievals of result operand's value on assignment
2535
2536 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2537
2538         * device/include/pic16/string.h: modified prototype for memccpy()
2539         to memccpy(void *, void *, char, size_t)
2540         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2541         check whether to omit frame pointer or not,
2542         * (genInline): convert all occurences of "\n" to LF in inline
2543         assembler blocks, this helps formatting the inline text,
2544         * (pic16_loadFSR0): modified prototype,
2545         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2546         removed some 8051 legacy code,
2547         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2548         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2549         before allocating temporary registers in functions,
2550
2551 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2552
2553         * support/regression/tests/bitvars.c: corrected the "fix"
2554
2555 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2556
2557         * support/regression/tests/bitvars.c,
2558         * support/regression/tests/bitwise.c,
2559         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2560
2561 2005-02-10 Raphael Neider <rneider AT web.de>
2562
2563         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2564           different size for Alpha
2565         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2566
2567 2005-02-09 Raphael Neider <rneider AT web.de>
2568
2569         * src/SDCC.lex(doPragma) : save and restore warning options as well
2570           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2571         * have #pragma less_pedantic set the errorlevel to WARNING
2572           (fixes #1117001)
2573         * (cloneOptimize) : fixed wrong malloc's size
2574         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2575           facilitate correct handling of #pragma (save|restore)
2576
2577 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2578
2579         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2580
2581 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2582
2583         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2584
2585 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2586
2587         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2588
2589 2005-02-02 Raphael Neider <rneider AT web.de>
2590
2591         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2592         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2593         * (pic16_storeForReturn): fixed to allow returning function pointers
2594         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2595         * device/include/pic16/{stddef.h,stdbool.h}: added
2596
2597 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2598
2599         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2600
2601 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2602
2603         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2604         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2605          appeared to be required
2606
2607 2005-01-31 Borut Razem <borut.razem AT siol.net>
2608
2609         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2610           include/mcs51 and include/z80 directories to the package
2611
2612 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2613
2614         * src/hc08/gen.c (genFunction): fixed bug #1112752
2615
2616 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2617
2618         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2619
2620 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2621
2622         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2623
2624 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2625
2626         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2627
2628 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2629
2630         * device/include/c8051fxxx.h: removed these 6 files
2631         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2632
2633 2005-01-26 Raphael Neider <rneider AT web.de>
2634
2635         * src/pic16/gen.c (genAssign): fixed assignment from longs
2636           in codespace (were cut to three bytes)
2637         * (genDummyRead): implemented (except for CODESPACE...),
2638           fixed bug #1108575
2639         * src/pic16/glue.c (emitStatistics): beautified
2640         * device/lib/pic16/libm/Makefile: added include path
2641
2642 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2643
2644         * src/z80/gen.c (aopPut): fixed bug #1103902
2645
2646 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2647
2648         * device/lib/expf.c: fixed bug #1095792
2649
2650 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2651
2652         * device/lib/pic16/libm: added Math library sources
2653
2654 2005-01-24 Raphael Neider <rneider AT web.de>
2655
2656         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2657           to enable upcast to pCodeOpReg2 (there is no type tag to
2658           differenciate the two and pic16_popGet2p cast into PCOR2)
2659         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2660           (sizeof(sectNames) changed to sizeof(sectName))
2661           Both patches fix segfaults under MinGW.
2662
2663 2005-01-23 Raphael Neider <rneider AT web.de>
2664
2665         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2666           Safe_[mc]?alloc()'ed variables
2667         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2668           of (byte sized) temporaries (assign them to WREG for now)
2669         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2670           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2671           this might fix SIGSEGVs on MinGW...
2672         * src/SDCCopt.c (killDeadCode): restored original behaviour
2673           (volatile operands might get thrown away though)
2674
2675 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2676
2677         * src/pic16/gen.c: fixed bug #1106975,
2678         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2679         pointer update, INTCON is saved, global interrupts are disabled and
2680         restored after updateing TOS.
2681         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2682         * added function attribute 'shadowregs' to take advantage of shadow
2683         registers,
2684         * added function attribute 'wparam' as an alternative to the wparam
2685         pragma,
2686         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2687         user declares a non-ISR function as 'shadowregs',
2688         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2689
2690 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2691
2692         * .version: bumped version number to 2.4.8
2693         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2694         pic16 port,
2695         * device/lib/pic16/libio/i2c/: I2C module support library,
2696         * device/include/pic16/i2c.h: I2C support library header,
2697         * device/lib/pic16/libc/stdio/: standard IO support sources,
2698         * (printf_small.c): printf_small() source, supports float print,
2699         * (printf_tiny.c): printf_tiny() source, does not support floats,
2700         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2701         enable global optimizations for entire library source, other
2702         Makefiles in the source tree are also modified to reflect this,
2703         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2704         function,
2705         * doc/sdccman.lyx: updated to reflect new changes,
2706         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2707         sym->onStack if-case,
2708         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2709         sbit, idata, _idata, xdata, _xdata,
2710         * added pragma library, to link an external library, (see doc),
2711         * removed command line options, --pomit-config-words, --pomit-ivt,
2712         --pleave-reset-vector,
2713         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2714         when calling assembler to reflect memory model used, also define
2715         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2716         reflect stack model used,
2717         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2718         on stack return NULL,
2719
2720 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2721
2722         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2723           of the operands is volatile. Fixes #1020220
2724
2725 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2726
2727         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2728         * (OptimizeRegUsage): make sure that there is really no other flow where
2729           the first pCode is used
2730
2731 2005-01-22 Raphael Neider <rneider AT web.de>
2732
2733         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2734           to fix #1106967 (pCode->seq are not set up correctly)
2735
2736 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2737
2738         * src/SDCCglue.c (glue): make sure code area is declared before the
2739         static initialization area.
2740
2741 2005-01-21 Raphael Neider <rneider AT web.de>
2742
2743         * device/lib/Makefile.in: fixed test for pic16 install dir
2744         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2745           optimizations
2746         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2747           added --optimize-goto compiler switch and pragma wparam documentation
2748         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2749         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2750           and PRODH closing bug #1071770 (peephole optimizer)
2751
2752 2005-01-19 Raphael Neider <rneider AT web.de>
2753
2754         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2755           cmdLine buffers (used when calling sdcpp...) are large enough
2756           (MAX_PATH=256 truncates arguments leading to system halts when
2757           used in MinGW...)
2758         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2759         * (genUminus): rewritten to for efficiency
2760         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2761           used uninitialized in some cases)
2762         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2763           copy the third byte from the int -- now assumes 0x80 (data memory)
2764         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2765           operands (genAddLit expects the iCode's operands to swapped as
2766           well), fixed leftover bytes (crashed for short left operands)
2767         * (pic16_genMinusDec): performance improvements, removed false
2768           PIC14 emitSKPNCs
2769         * (pic16_genMinus): fixed to cope with differently sized operands
2770         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2771           for --obanksel > 1
2772         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2773         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2774           new banksel optimization
2775         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2776           analysis for temporary registers (segfaults...)
2777         * src/pic16/peeph.def: added rule
2778
2779 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2780
2781         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2782         which converts a float number to its ASCII representation
2783         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2784         functions to convert the fractional and integer part of a float to ASCII,
2785         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2786         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2787         ram
2788         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2789         _STATMEM macros,
2790         * device/include/pic16/adc.h: added GPL info,
2791         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2792         a pCodeOp as tested operand,
2793         * (genNearPointerGet): optimized bit testing, does not use
2794         intermediate register for bit value, test directly instead with
2795         BTFSS, BTFSC, works only for single bits,
2796         * (genpic16Code): dump the name of the iCode in the asm,
2797         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2798         renamed to pic16_decodeOp,
2799         * (serialRegAssign): do not allocate a temporary register for iCode
2800         sequences that test a single bit for 1/0
2801
2802 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2803
2804         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2805         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2806         access stack and frame pointers. They are initially assigned to
2807         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2808         accessing SFRs. Updated all occurences of modification of stack or
2809         frame pointer in gen.c and pcode.c,
2810         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2811         assigning of a literal value to pointers,
2812         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2813         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2814         selected
2815
2816 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2817
2818         * doc/sdccman.lyx: update documentation about stack pragma, added
2819         some info for stack memory models
2820
2821 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2822
2823         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2824
2825 2005-01-08 Raphael Neider <rneider AT web.de>
2826
2827         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2828           udata sections to fix bug #1097823
2829
2830 2005-01-05 Raphael Neider <rneider AT web.de>
2831
2832         * src/pic16/gen.c (genGenericShift): added handling of differently
2833           sized left operand and result
2834
2835 2005-01-04 Raphael Neider <rneider AT web.de>
2836
2837         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2838         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2839           to hold the condition bit)
2840         * added new version of genCmp (old code available via #define)
2841         * added new version of genShiftLeft/genShiftRight in a generic
2842           way, now supports shifting by negative values
2843         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2844           shiftCount (expected by genGenericShift)
2845         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2846         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2847           dump
2848         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2849           is an invalid literal too...)
2850
2851 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2852
2853         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2854         from Raphael Neider,
2855         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2856         for 8-bit literals. This fixes some literal operands which are sign
2857         extended to 16-bits ints when instruction needs only 8-bits.
2858
2859 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2860
2861         * device/lib/logf.c: added mcs51 assembly version
2862         * device/lib/expf.c: added mcs51 assembly version
2863         * device/lib/_logexpf.c: new shared asm code for expf and logf
2864         * device/include/math.h: add defines for assembly math library
2865         * device/lib/Makefile.in: build new _logexpf.c
2866         * device/lib/libfloat.lib: use new _logexpf.c
2867
2868 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2869
2870         * src/pic/device.c
2871         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2872           device types which have less than 0x7f registers.
2873
2874 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2875
2876         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2877
2878 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2879
2880         * device/lib/printf_fast.c: only build on supported arch.
2881         * device/lib/printf_tiny.c: only build on supported arch.
2882         * device/lib/printf_fast_f.c: only build if asm float lib
2883         * device/lib/_fsget1arg.c: only build if asm float lib
2884         * device/lib/_fsget2args.c: only build if asm float lib
2885         * device/lib/_fsnormalize.c: only build if asm float lib
2886         * device/lib/_fsreturnval.c: only build if asm float lib
2887         * device/lib/_fsrshift.c: only build if asm float lib
2888         * device/lib/_fsswapargs.c: only build if asm float lib
2889         * device/include/stdio.h: don't provide print_fast,
2890           print_fast_f, print_tiny prototypes if --xstack used
2891
2892 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2893
2894         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2895         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2896           to the SOURCES
2897
2898 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2899
2900         * device/lib/printf_fast_f.c: same as printf_fast, but
2901           with floating point enabled
2902         * device/lib/printf_fast.c: minor tweaks
2903         * device/include/stdio.h: add printf_fast_f
2904
2905 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2906
2907         * src/SDCCmain.c: make --float-reent default for mcs51
2908         * device/lib/_fsadd.c: added mcs51 assembly version
2909         * device/lib/_fssub.c: added mcs51 assembly version
2910         * device/lib/_fsmul.c: added mcs51 assembly version
2911         * device/lib/_fsdiv.c: added mcs51 assembly version
2912         * device/lib/_fseq.c: added mcs51 assembly version
2913         * device/lib/_fsneq.c: added mcs51 assembly version
2914         * device/lib/_fsgt.c: added mcs51 assembly version
2915         * device/lib/_fslt.c: added mcs51 assembly version
2916         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2917         * device/lib/Makefile.in: add _fscmp to build
2918         * device/lib/libfloat.lib: add _fscmp to build
2919
2920 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2921
2922         * device/lib/_fs2slong.c: added mcs51 assembly version
2923         * device/lib/_fs2sint.c: added mcs51 assembly version
2924         * device/lib/_fs2schar.c: added mcs51 assembly version
2925         * device/lib/_fs2ulong.c: added mcs51 assembly version
2926         * device/lib/_fs2uint.c: added mcs51 assembly version
2927         * device/lib/_fs2uchar.c: added mcs51 assembly version
2928         * device/lib/_slong2fs.c: added mcs51 assembly version
2929         * device/lib/_sint2fs.c: added mcs51 assembly version
2930         * device/lib/_schar2fs.c: added mcs51 assembly version
2931         * device/lib/_ulong2fs.c: added mcs51 assembly version
2932         * device/lib/_uint2fs.c: added mcs51 assembly version
2933         * device/lib/_uchar2fs.c: added mcs51 assembly version
2934         * device/include/float.h: added #define to select asm vs c
2935
2936 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2937
2938         * device/lib/printf_fast.c: improvements to float output
2939         * device/include/float.h: add defines for assembly float library
2940         * device/lib/_fsget1arg.c: receive 1 float arg
2941         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2942         * device/lib/_fsnormalize.c: normalize a float
2943         * device/lib/_fsreturnval.c: return float, various helper routines
2944         * device/lib/_fsrshift.c: right shift a float's mantissa
2945         * device/lib/_fsswapargs.c: swap 2 floats
2946         * device/lib/Makefile.in: build these 6 new files for mcs51
2947         * device/lib/libfloat.lib: add these 6 files to the library
2948
2949 2004-12-26 Borut Razem <borut.razem AT siol.net>
2950
2951         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2952           built by gcc 3.4.2
2953
2954 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2955
2956         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2957           and fully reentrant and register bank neutral.
2958         * device/lib/printf_fast.c: added float (not enabled by default),
2959           added compact/slower integer (also not enabled by default),
2960           improved size/speed of fast integer code, other minor changes
2961         * device/include/stdio.h, device/lib/Makefile.in,
2962           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2963
2964 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2965
2966         * src/pic16/pcode.c: declaring variables other than at the start of a
2967           block is not supported in C by VC6.
2968
2969 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2970
2971         * applied a previous patch from Raphael Neider that wasn't included
2972         in the previous commits, which fixes infinite loops within jumptable
2973         improvements,
2974         * made some fixes that previous patches introduced
2975
2976 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2977
2978         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2979         that fixes an issue with AOP_PCODE asmop's offset,
2980         * (pic16_popCopyReg): update instance field too,
2981         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2982         function of pic port,
2983         * (genCmp, genAnd, genAssign),
2984         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2985
2986 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2987
2988         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2989         variables initial values to idata section,
2990         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2991         variables in some functions. This utilizes parmBytes field of iCode
2992         structure to hold the offset of the variable in stack. (might be
2993         able to use the stack field too?)
2994         * applied patch from Raphael Neider # ### , # ###
2995         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2996         variable initial values in idata section,
2997         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2998         for static variables with initial value
2999         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3000         applied fix in while loop from Raphael Neider.
3001
3002 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3003
3004         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3005         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3006         * src/ds390/ralloc.c (serialRegAssign): spill bits
3007         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3008         * support/Util/SDCCerr.c,
3009         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3010         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3011         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3012
3013 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3014
3015         * device/include/sdcc-lib.h: inserted LGPL, added includes
3016           asm/ds390/features.h and asm/mcs51/features.h
3017         * device/include/asm/default/features.h,
3018         * device/include/asm/gbz80/features.h,
3019         * device/include/asm/z80/features.h: added empty _AUTOMEM
3020           and _STATMEM
3021         * device/include/asm/ds390/features.h,
3022         * device/include/asm/mcs51/features.h: added files with defines for
3023           _AUTOMEM and _STATMEM indicating automatic and static storage class
3024         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3025         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3026         * src/SDCCicode.c (geniCodeCast),
3027         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3028         * src/SDCCloop.c (loopInduction): removed unused variable lr
3029         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3030           to convertToFcall to include char modulo (RFE 1065037), added check
3031           if left operand is unsigned and use abs of literal value
3032         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3033           as it doesn't work after conversion from peephole.def to peephole.rul
3034         * src/mcs51/gen.c (toBoolean): added check for size,
3035           (genModOneByte): optimized code for signed char modulo a literal
3036           power of 2 (thanks to Hubert Sack),
3037           (genRRC): removed unnecessary "clr c",
3038           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3039         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3040           jump optimization,
3041           swapped rules 256.c and 256.d,
3042           extended 256.d by using new multiple checks (thanks Erik),
3043           added rules 256.e and 256.f,
3044           updated rule 261.a and 261.b to new generated code
3045         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3046
3047 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3048
3049         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3050           induction related bugs, including first part of bug #1074377
3051
3052 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3053
3054         * applied patch from bug-report #1076292,
3055         * applied patches for genAnd and Goto-optimizations for Raphael
3056         Neider,
3057         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3058         dump a less iCode information,
3059         * src/pic16/device.h (pic16_options_t): added field debgen,
3060         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3061         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3062         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3063         puclic,
3064         * (various functions): added macros FENTRY and FENTRY2 to functions,
3065         to emit function prologue,
3066         * (various functions): fixed indentation,
3067         * (genNearPointerGet): fixed loading of FSR0,
3068         * (genPackBits): applied patch from Raphael Neider to fix updating
3069         of FSR0 and touching only the modified bits,
3070         * src/pic16/genarith.c (various functions): added macros FENTRY to
3071         emit function prologue in comments,
3072         * src/pic16/pcode.h: added functions debugf2, debugf3,
3073         * src/pic16/ralloc.c: partial fix for packForPush caused
3074         segmentation fault,
3075
3076 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3077
3078         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3079           <stsp AT users.sourceforge.net> with reversed byte order
3080         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3081
3082 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3083
3084         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3085           bug #1074377
3086         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3087         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3088
3089 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3090
3091         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3092
3093 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3094
3095         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3096           conditions,
3097           (setFromConditionArgs): friendly operand parser for peephole rules,
3098           (operandBaseName, operandsNotRelated): new peephole condition
3099           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3100           architecture specific register naming into account, handles n-way
3101           comparisons, and supports quoted literals
3102         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3103
3104 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3105
3106         * src/mcs51/peeph.def: fixed bug #1076940
3107
3108 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3109
3110         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3111
3112 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3113
3114         Adding support for replacing ljmps with sjmps in jumptables
3115         generated for switch statements. For now you need to set the
3116         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3117         Now 4 algorithms for mcs51 jumptable generation are used:
3118         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3119         addresses loaded pc-relative for up to 112 cases and stack-pushing
3120         target addresses loaded with offset from dptr for up to 256 cases.
3121
3122         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3123         * src/mcs51/main.c: adapted constants for switch table generation
3124         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3125
3126 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3127
3128         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3129         * support/regression/tests/bug1057979.c: added test for bug 1073386
3130
3131 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3132
3133         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3134         compilers
3135
3136 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3137
3138         * src/pic16/device.h,
3139         * src/pic16/genarith.c,
3140         * src/pic16/glue.c,
3141         * src/pic16/main.c,
3142         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3143
3144 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3145
3146         Large cummulative patch for pic16 port.
3147         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3148         to call when a stack overflow occurs,
3149         * (malloc.h): added CVS Id tag,
3150         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3151         variable,
3152         * added libc directory. The current version of LibC contains string
3153         functions, ctype functions and macros and some functions of the
3154         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3155         be extensively tested in the future. Standard disclaimer here.
3156         Library is not automatically build yet. But one can build it by
3157         invoking 'make' inside the libc directory.
3158         * added ADC library under libio. Preliminary version yet.
3159
3160         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3161         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3162         aopForRemat() now and not by pic16_aopOp(),
3163         * (pic16_popGetTempReg): removed warning messgae when allocating
3164         temporary registers, its a buggy feature and will be removed,
3165         * (pic16_popGet): set register instance field in AOP_CRY,
3166         * (pic16_outBitC): fixed for results in size greater than 1,
3167         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3168         * (pic16_storeForReturn): optimized return of 0,
3169         * (genCmp): experimental code for new genCmp which uses PIC18's
3170         special compare&skip instructions. Initial tests fail some times
3171         with variables grater than 1 byte in size, so new code is disabled,
3172         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3173         a single bit,
3174         * (genCast): began a fix to optimize the casting of a bit to another
3175         bit, now assigning a bitfield to another bitfield will fail, sorry,
3176         * src/pic16/main.c: disabled the use of lr-support feature,
3177         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3178         * added some function prototypes, added function _debugf prototype,
3179         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3180         bits with offset (case PO_GPR_BIT),
3181         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3182         command line,
3183         * (isBankInstruction): modified to return 0 for no banking instruction,
3184         and 1 for banking instruction,
3185         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3186         caused stop processing pCodes after a inline assembly block,
3187         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3188         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3189         registers when it shouldn't,
3190         * src/pic16/ralloc.c (allocReg): add preliminary support for
3191         supporting a limited set of temporary registers,
3192
3193 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3194
3195         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3196           genDataPointerSet): ensure assignments always copy in MSB to LSB
3197           order,
3198           (loadRegFromAop): recognize CLRH optimization,
3199           (genFunction): optimize RECEIVE iCodes in reentrant functions
3200
3201 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3202
3203         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3204           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3205           selected.
3206         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3207         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3208           contiguous with data
3209
3210 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3211
3212         * device/lib/_gptrget.c (_gptrget),
3213         * device/lib/_gptrgetc.c (_gptrgetc),
3214         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3215           instead of sjmp to ret
3216         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3217           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3218
3219 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3220
3221         * .version: bumped version to 2.4.7
3222         * device/lib/_gptrget.c (_gptrget): is now _naked
3223         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3224         * device/lib/_gptrput.c (_gptrput): is now _naked
3225         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3226           (createFunction): fixed xstack
3227         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3228         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3229           or bit either,
3230           (geniCodeCritical): store original interrupt state in an iTemp bit
3231           var unless stack-auto
3232         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3233         * src/SDCCmain.c (setIncludePath): added include/target to search path
3234         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3235         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3236           prototype,
3237           (processFuncArgs): put bit vars in bit area
3238         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3239           unsaveRBank): fixed xstack,
3240           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3241           (genFunction, genEndFunction): fixed xstack,
3242           (genAssign): optimization don't walk backwards through mem
3243         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3244         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3245         * support/regression/Makefile: also make library (for stack-auto) when
3246           making "all" and added "test-mcs51-xstack-auto"
3247         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3248         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3249         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3250         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3251         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3252           make-library by MAKE_LIBRARY
3253         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3254           regression tests for xstack
3255         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3256         * support/regression/tests/critical.c: test for critical on mcs51
3257
3258 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3259
3260         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3261           built version of sdcc instead of installed version
3262
3263 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3264
3265         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3266         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3267           vprintf.c now
3268         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3269         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3270           WARNING: remove device/lib/build/z80/printf.o by hand when
3271           updating from previous build!
3272         * device/lib/z80/printf.c: updated comment
3273         * support/regression/tests/bug1057979.c: test all ports now
3274         * support/regression/tests/bug1065458.c: file added
3275
3276 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3277
3278         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3279           *_start and *_end symbols for static functions
3280
3281 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3282
3283         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3284           and search crt0.o in all library paths,
3285           (setIncludePath): proper handling of --nostdinc,
3286           (setLibPath): proper handling of --nostdlib
3287         * support/regression/Makefile,
3288         * support/regression/ports/ds390/spec.mk,
3289         * support/regression/ports/gbz80/spec.mk,
3290         * support/regression/ports/hc08/spec.mk,
3291         * support/regression/ports/mcs51/spec.mk,
3292         * support/regression/ports/mcs51-large/spec.mk,
3293         * support/regression/ports/mcs51-stack-auto/spec.mk,
3294         * support/regression/ports/z80/spec.mk: use include and lib files from
3295           built version of sdcc instead of installed version
3296         * doc/sdccman.lyx: fixed typo in --nostdinc
3297
3298 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3299
3300         * src/pic/pcode.c,
3301         * src/pic/device.c,
3302         * src/pic/ralloc.c,
3303         * src/pic/gen.c : added support to generate code for struct bit fields.
3304
3305 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3306
3307         * as/xa51/xa_version.h,
3308         * device/include/errno.h,
3309         * device/include/regc515c.h,
3310         * device/lib/_itoa.c,
3311         * device/lib/_ltoa.c,
3312         * device/lib/ser_ir_cts_rts.c,
3313         * sim/ucsim/xa.src/glob.cc,
3314         * sim/ucsim/xa.src/inst_gen.cc,
3315         * sim/ucsim/xa.src/xa_bit.cc,
3316         * sim/ucsim/xa.src/xa_sfr.cc,
3317         * sim/ucsim/z80.src/inst_dd.cc,
3318         * sim/ucsim/z80.src/inst_fdcb.cc,
3319         * support/scripts/keil2sdcc.pl,
3320         * src/pic16/pic16.dsp,
3321         * src/pic16/pic16a.dsp: corrected cvs line endings
3322         * device/lib/printf_large.c: fixed bug 1057979
3323         * src/pic16/gen.c: fixed non-C standard code
3324         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3325         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3326         * support/regression/ports/mcs51/support.c: reload T1 asap
3327         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3328           pdata use and clear idata startup behaviour
3329         * support/regression/tests/bug1057979.c: added
3330
3331 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3332
3333         * device/examples/ds390/ow390/ad26.h,
3334         * device/examples/ds390/ow390/cnt1d.h,
3335         * device/examples/ds390/ow390/crcutil.c,
3336         * device/examples/ds390/ow390/ownet.h,
3337         * device/examples/ds390/ow390/owsesu.c,
3338         * device/examples/ds390/ow390/swt12.h,
3339         * device/examples/ds390/ow390/swtoper.c,
3340         * device/examples/ds390/ow390/temp10.h,
3341         * device/examples/ds390/ow390/thermodl.c,
3342         * device/examples/ds390/tinitalk/tinitalk.dsp,
3343         * device/examples/ds390/tinitalk/tinitalk.dsw,
3344         * device/examples/mcs51/clock/hw.h,
3345         * device/examples/mcs51/simple2/go.bat,
3346         * device/examples/serialcomm/windows/serial.h,
3347         * device/examples/xa51/dummy.c,
3348         * device/examples/xa51/hello.c,
3349         * device/include/80c51xa.h,
3350         * device/include/at89x051.h: corrected cvs line endings
3351
3352 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3353
3354         * src/pic16/main.c (options): added command line --gstack, to trace
3355         stack over/under flows,
3356         * added pragma 'wparam' to allow passing first byte of function
3357         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3358         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3359         call to __gstack_test function and sets up the symbol as extern,
3360         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3361         * popaop): added call to pic16_testStackOverflow,
3362         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3363         wparamList list,
3364         * (genCall, genPcall): now all parameters are passed via stack
3365         except in functions that are pass to wparam pragma in which WREG is
3366         used too,
3367         * (genPcall): REENTRANT flag is checked to see if variable prototype
3368         contains reentrant keyword, don't call a non-reentrant function, via
3369         a reentrant function pointer or vice versa, functions are never
3370         passed via WREG,
3371         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3372         D.Winkler,
3373         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3374         SIGSEGV when accessing a NULL register stucture,
3375         * (pic16_printGPointerType): modified to handle UPPER modifier for
3376         function initializers, changed prototype of function to simpler one,
3377         * (pic16_printIvalFuncPtr): check to see if function is already
3378         added in externs list,
3379         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3380         optimized a move from W to SFR with a move to the same register
3381         later after a CALL,
3382         * device/lib/pic16/debug: NEW directory, contains debug features
3383         which are enabled when linking with libdebug.lib, currently command
3384         line option --gstack enables stack pointer tracing for over/under
3385         flow, corresponding sources are in debug/gstack
3386
3387 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3388
3389         * doc/sdccman.lyx: updated SDCC version,
3390         * (PIC16 port): update list of command line options,
3391         * src/pic16/device.h (structure pic16_options_t): added field gstack
3392         to enable stack overflow tracing on push/pops,
3393         * src/pic16/device.c (statistics structure): added statistics
3394         structure,
3395         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3396         pic16_dump_int_registers): increase statistics counters for each
3397         * variable which is encountered
3398         * (pic16_dump_usection): emit each .udata variable to its own udata
3399         section,
3400         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3401         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3402         parameters via stack, otherwise use old scheme,
3403         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3404         assembler output file,
3405         * src/pic16/main.c: added command line options --gstack to enable
3406         push/pop tracing for stack overflow,
3407         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3408         instructions): added size of each instruction,
3409         * (pic16_countInstruction): estimate size of instructions in
3410         the_pFile list, inline assembly blocks are not counted,
3411         * (pic16_FixRegisterBanking): trace previous register usage, when
3412         banksel optimizations is greater than 0, don't emit a redudant
3413         banksel directive,
3414
3415 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3416
3417         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3418         * src/pic16/ralloc.c : applied same fix for pic16.
3419         * src/pic/gen.c : tidied it up a little.
3420
3421 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3422
3423         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3424         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3425
3426 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3427
3428         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3429
3430 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3431
3432         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3433         non-reentrant function __modsint in the interrupt function (thus
3434         corrupting math operations during serial I/O)
3435         * device/lib/ser_ir.c: as above, changed buffersize
3436         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3437         256.c,d for zeroing
3438         * doc/Makefile: added option -t for rsync
3439
3440 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3441
3442         * src/SDCCast.h (struct ast),
3443         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3444
3445 2004-10-20 Borut Razem <borut.razem AT siol.net>
3446
3447         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3448         package
3449
3450 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3451
3452         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3453         makefile targets,
3454         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3455         support functions to replace long sequences of MOVFF's from access
3456         bank registers to stack and vice versa,
3457         * src/pic16/device.h: added new field opt_flags, where optimization
3458         flags can be set to enable certain features,
3459         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3460         * pBlock, (genFunction, genEndFunction): surroung loop for
3461         saving/loading used registers in stack with PC_INFO pCodes,
3462         INF_LREGS. Code in between can then be optimized by pCode optimizer
3463         to support function calls,
3464         * (genDataPointerSet): fixed bug which loaded float fields in
3465         structures with corrupt data,
3466         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3467         in a standard way debug info on stderr. Feature used for developing
3468         and debugging only,
3469         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3470         obsolete chunks of code,
3471         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3472         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3473         * pic16/src/pcode.c (pic16_newpCodeInfo,
3474         * (pic16_newpCodeOpLocalRegs),
3475         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3476         feature,
3477         * (pic16_pCodeConstString): printing of the initial value of a
3478         symbol as a comment is inhibited since parsing was already done by
3479         copyStr and output is corrupt,
3480         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3481
3482 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3483
3484         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3485
3486 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3487
3488         * as/mcs51/lkarea.c: removed old K&R style,
3489           (lnksect): changed check on boundary error,
3490           (lnksect2): changed check on boundary error,
3491           (lnksect2): extend XSTK to end of page if size = 1
3492         * as/mcs51/lkmain.c: removed old K&R style,
3493           (Areas51): create l_IRAM symbol
3494         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3495         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3496           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3497         * device/lib/_mullong.c: added version to be compiled with xstack
3498         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3499         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3500         * device/lib/mcs51/crtxstack.asm: fixed comment
3501         * src/SDCCglue.c: maxInterrupts defaults to 0,
3502           (emitMaps): added pdata,
3503           (createInterruptVect): (re)moved default,
3504           (glue): added pdata,
3505           (glue): moved __start__xstack to XSTK with default size 1
3506         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3507           and options.float_rent when options.stackAuto is set,
3508           (linkEdit): only write XDATA_NAME if provided on command line
3509         * src/SDCCmem.h,
3510         * src/SDCCmem.c: added pdata
3511         * src/port.h: added pdata_name to PORT
3512         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3513           (saveRegisters, unsaveRegisters): removed usage of B,
3514           (genMinus): fixed accumulator clash,
3515           (genJumpTab): added comment, this needs another look
3516         * src/mcs51/gen.c: added check for "B in use" paranoia,
3517           added pushB() and popB()
3518         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3519           chance
3520         * src/avr/main.c,
3521         * src/ds390/main.c,
3522         * src/hc08/main.c,
3523         * src/mcs51/main.c,
3524         * src/pic/main.c,
3525         * src/pic16/main.c,
3526         * src/xa51/main.c,
3527         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3528           added PSEG (PAG,XDATA) or NULL to port specifier
3529         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3530         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3531           (_mcs51_genInitStartup): removed __start__xstack equ,
3532           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3533         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3534         * src/z80/gen.c (_rleAppend): fixed warnings
3535         * support/regression/tests/zeropad.c: added pdata test
3536         * .version: bumped to 2.4.6
3537
3538 2004-10-17 Borut Razem <borut.razem AT siol.net>
3539
3540         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3541         as a part of nightly build
3542
3543 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3544
3545         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3546         WREG holds the first byte function parameters,
3547         * (aopForSym): take special case for symbols which are in FARSPACE
3548         but in CODESPACE too,
3549         * (assignResultValue): modified to take into account _G.useWreg,
3550         * (genCall): don't use wreg for parameter passing when function is
3551         declared as reentrant, too, added optimization INCF to stack
3552         pointer when stack parameter count is 1,
3553         * (genFunction, genEndFunction): refurnished and fixed to not using
3554         wreg for passing parameters when function has varargs or is
3555         reentrant, fixed bug with symbol name compare for generating
3556         functions in absolute address,
3557         * (pic16_storeForReturn): refurnished,
3558         * (genCmp): began writing a new version of the function, not ready
3559         yet, therefore it is disabled,
3560         * (genAssign): do not read code memory when assigning a function to
3561         a pointer function,
3562         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3563         array of characters, not pointer,
3564         * (pic16initialComments): in debug mode emit an .ident directive for
3565         the assembler,
3566         * (_process_pragma): emit a new warning type (internal to pic16)
3567         when setting stack to default length, emit a similar warning when
3568         placing a function at absolute address and address is not word aligned
3569         * (_pic16_parseOptions): added 'return TRUE' statement,
3570         * (_pic16_linkEdit): if compiling a source, then add the source's
3571         file object, first in the list of objects to link,
3572
3573 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3574
3575         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3576         * src/pic/main.c : removed VC warning.
3577         * src/pic/gen.c : changed comment.
3578
3579 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3580
3581         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3582         reference to a deprecated symbol _GPTRREG was causing failure to
3583         link. Thanks G. M. Gallant for the info.
3584
3585 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3586
3587         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3588         comments for Bugs item #954788.
3589
3590 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3591
3592         * src/pic16/device.c (pic16_dump_gsection,
3593         * pic16_groupRegistersInSection): handle symbols declared to be in
3594         access bank differently,
3595         * src/pic16/gen.c (struct _G): added field resDirect,
3596         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3597         send values read from stack directly to result and don't allocate
3598         temporary values,
3599         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3600         same registers,
3601         * (pic16_sameRegsOfs): NEW,
3602         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3603         free because they were not allocated from temporary pool,
3604         * pic16_popRegFromString): workaround to fix a problem with
3605         allocating variables twice or never,
3606         * (genGenPointerGet): using PRODL instead of FSR0H,
3607         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3608         instead of FSR0H,
3609         * (genAssign): take advantage of the _G.resDirect flag,
3610         * (genCast): around line 11844, use mov2f instead of directly
3611         MOVFF'ing between operands to account for literal values,
3612         * src/pic16/genutils.c: some new debug functions for gpsim have been
3613         added,
3614         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3615         float with integer part only,
3616         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3617         place variables in access bank
3618         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3619         updated sources to reflect recent changes in gen.c
3620
3621 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3622
3623         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3624         sources that searched for headers in installation path, now the
3625         device/include/pic16 is used,
3626         * src/pic16/glue.c (pic16glue),
3627         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3628         .line directives if not in debug mode, this suppresses assembler's
3629         warnings for ignored directives
3630
3631 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3632
3633         * src/port.h: made reset_regparms prototype void parameter explicit.
3634         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3635         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3636         * doc/sdccman.lyx: documented warning disabling and how to use
3637           printf_large to make it print floats.
3638         * device/include/stdbool.h: NEW
3639         * device/lib/_atof.c,
3640         * device/lib/_divuint.c,
3641         * device/lib/_divulong.c,
3642         * device/lib/expf.c,
3643         * device/lib/printf_large.c,
3644         * device/lib/sincosf.c,
3645         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3646         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3647           a completely reentrant lib.
3648
3649 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3650
3651         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3652         * device/include/pic16/stdio.h: fixed bug with colon
3653
3654 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3655
3656         * device/include/pic16/stdio.h,
3657         * device/include/pic16/stdlib.h,
3658         * device/include/pic16/math.h: NEW
3659         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3660         declared as _naked to reduce overhead
3661         * device/lib/Makefile.in (target port-specific-objects-pic16):
3662         changed * to *.* so to ignore the CVS directory,
3663         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3664         stacked variables back in stack,
3665         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3666         corruption
3667
3668 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3669
3670         * .version: bumped version number to 2.4.5
3671         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3672         * support/Util/SDCCerr.c (messages structure): added entry for
3673         W_POSSBUG2
3674
3675         Large cumulative patch for pic16 port and libraries.
3676         * device/include/pic16/sdcc-lib.h,
3677         * device/include/pic16/stdarg.h,
3678         * device/include/asm/pic16/features.h,
3679         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3680         * device/include/pic16/float.h: changes reentrant keyword with
3681         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3682         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3683         updated target build-libraries to include objects from gptr,
3684         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3685         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3686         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3687         all function headings,
3688         * src/SDCCmain.c: added global parameter userIncDirsSet,
3689         * (parseCmdLine): when option -I is encountered add directory to
3690         userIncDirsSet too,
3691         * src/version.awk: added space between control and long,
3692         * src/pic16/NOTES: added some notes for the port,
3693         * src/pic16/gen.c: added prototype for mov2fp function,
3694         * (fReturnpic16[]): properly named return value registers,
3695         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3696         * (aopForSym): added code to handle symbols with onStack flag set,
3697         symbols onStack are allocated PTRSIZE bytes,
3698         * (aopFreeAsmop): handles special case where asmops are stack objects,
3699         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3700         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3701         added argument lock to trace flaws in allocating temporary registers
3702         when developing port,
3703         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3704         * (pic16_popRegFromString): reenabled allocating a direct register
3705         from string,
3706         * (assignResultValue): various beautifications,
3707         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3708         referenced function argument,
3709         * (genIpush): reenabled to allow stacked arguments, handles only
3710         ic->parmPush iCodes,
3711         * (genCall, genPcall): major changes to allow for variable argument
3712         functions, fixed a bug with falsely restoring stack pointer after
3713         returning from call,
3714         * (genFunction): pending code for critical function,
3715         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3716         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3717         * (genNearPointerGet): fixed bug with indirect reading, was always
3718         reading from INDF0
3719         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3720         pointers,
3721         * (genAddrOf): rewrote code to take address of a stacked function parameter
3722         * (genCast): fixed casting to generic pointer type,
3723         * src/pic16/gen.h: added AOP_STA,
3724         * (struct asmop): added field stk,
3725         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3726         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3727         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3728         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3729         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3730         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3731         generic pointers,
3732         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3733         and library paths,
3734         * (pic16_port structure): generic pointer size is set to 3,
3735         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3736         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3737         compiler warning,
3738         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3739         operand is an iTemp,
3740
3741 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3742
3743         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3744         * debugger/mcs51/simi.c: addapt new syntax of s51
3745
3746 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3747
3748         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3749         * src/pic16/pcode.c: commented out some calls to free() in order to
3750         fix bug #989576,
3751
3752 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3753
3754         * src/SDCCicode.h,
3755         * src/SDCCicode.c (isiCodeInFunctionCall),
3756         * src/avr/ralloc.c (selectSpil),
3757         * src/pic/ralloc.c (selectSpil),
3758         * src/pic16/ralloc.c (selectSpil),
3759         * src/ds390/ralloc.c (selectSpil),
3760         * src/hc08/ralloc.c (selectSpil),
3761         * src/xa51/ralloc.c (selectSpil),
3762         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3763         stack in the middle of a function call sequence (fixes bug #1020268)
3764         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3765         costs associated with the minimum switch case.
3766
3767 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3768
3769         * src/SDCC.lex: fixed bug #1030549
3770
3771 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3772
3773         * src/SDCCcse.h (struct cseDef),
3774         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3775         over a function call if the CSE is derived from a symbol whose
3776         address has been taken (fixes bug #1029883)
3777         * support/regression/tests/bug-1029883: a new regression test for
3778         this bug
3779
3780 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3781
3782         * src/hc08/gen.c (emitinline): fixed bug #1029778
3783         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3784         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3785         and starts toward RFE #905167)
3786
3787 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3788
3789         * src/pic16/gen.c (mov2f): New function to move an operand to
3790         another without considering if it is a literal or a register,
3791         * (pic16_sameRegs): don't check if they are both AOP_REG,
3792         * (AccRsh): removed andmask=0 lines,
3793         * (genLeftShift): duplicated to be improved in future versions,
3794         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3795         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3796         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3797         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3798         * (insertBankSwitch): fixed inserting banksel directives algorithm
3799         for instructions that follow a skip instruction, this fixes a report
3800         for broken subtraction code generation,
3801         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3802         iCode is a left op, just in case result and right share the same
3803         registers
3804
3805 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3806
3807         * src/hc08/main.c,
3808         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3809         preservation of HX
3810         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3811         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3812         on 2004-09-12; it was buggy
3813
3814 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3815
3816         * src/SDCCsymt.h: removed RESULT_CHECK
3817         * src/SDCCast.c,
3818         * src/SDCCglue.c,
3819         * src/SDCCval.c,
3820         * src/pic/glue.c,
3821         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3822
3823 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3824
3825         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3826         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3827         configuration values no more rejected by compiler, they are assigned
3828         to configuration registers with a warning message instead,
3829         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3830         the for-loop so last conf register is emitted too,
3831         * (_pic16_initPaths): link library libsdcc.lib by default,
3832         * (_hasNativeMulFor): modified test for multiplication according to
3833         Raphael Neider's remarks. Integer multiplication is also done with
3834         support functions,
3835         * device/include/pic16/pic18fregs.h: corrected type error in while
3836         testing and including 18f6720 header file
3837
3838 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3839
3840         * src/pic16/device.h (pic16_options): removed field use_crt,
3841         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3842         until an optimization to handle single bits is added,
3843         * (pic16_loadFSR0): moved before genUnpackBits,
3844         * (genAnd): some white lines removed,
3845         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3846         leave_reset flags in pic16_options when using crt modules,
3847
3848 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3849
3850         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3851           for bugs 898889 & 979599. Also used some safer print instructions.
3852
3853 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3854
3855         * src/pic16/device.h (pic16_options_t): added field use_crt,
3856         crt_name, no_crt,
3857         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3858         catch a probable future bug,
3859         * src/pic16/gen.c: aopIdx function commented out,
3860         * (genAssign): commented out old code which used aopIdx,
3861         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3862         code, added if conditionals to take into account the --use-crt
3863         command line options,
3864         * src/pic16/main.c (pic16_optionsTable): added new command line
3865         options, --use-crt= and --no-crt,
3866         * (_pic16_linkEdit): now the proper crt object is added in the
3867         linker command line except than when --no-crt is specified,
3868         * src/pic16/pcode.c,
3869         * src/pic16/pcode.h: added some structures and functions for a new
3870         optimization scheme to compansate for instruction overhead between
3871         same iCodes, this scheme is currently under development and is not
3872         working in any way,
3873         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3874         to && operator,
3875         * device/lib/pic16/startup/crt0i.c,
3876         * device/lib/pic16/startup/crt0iz.c: added global char variable
3877         __uflags to force the generation of an idata section
3878
3879 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3880
3881         * doc/Makefile,
3882         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3883         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3884
3885 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3886
3887         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3888         Frieder) and clarified the default code optimization mode
3889
3890 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3891
3892         * src/SDCC.lex (doPragma, process_pragma),
3893         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3894         "opt_code_size", and "opt_code_balanced"
3895         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3896         regrouped options by category, added support for category headers
3897         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3898         and "--opt-code-size"
3899         * doc/sdccman.lyx: documented these new options and pragmas
3900         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3901         preference into account
3902
3903 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3904
3905         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3906           geniCodePreDec): Fixed bug 904237 by generating a warning
3907         * src/SDCCerr.h,
3908         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3909
3910 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3911
3912         * src/pic/device.c : When no max ram set validate full memory range.
3913         * src/pic/pcode.c,
3914         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3915
3916 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3917
3918         * device/lib/_gptrget.c,
3919         * device/lib/_gptrput.c: updated comment
3920         * device/lib/calloc.c,
3921         * device/lib/free.c,
3922         * device/lib/malloc.c,
3923         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3924         * src/SDCCcse.c (cseBBlock),
3925         * src/SDCCicode.c (printOperand, geniCodeArray),
3926         * src/SDCCicode.h (struct operand): fixed bug 868103
3927         * support/regression/tests/bug-868103.c: added
3928         * src/SDCCast.c (searchLitOp),
3929         * src/SDCCcse.h (struct cseDef),
3930         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3931         * src/SDCCicode.h (struct operand),
3932         * src/SDCCsymt.h (struct sym_link),
3933         * src/avr/gen.c (hasInc),
3934         * src/ds390/gen.c (hasInc),
3935         * src/hc08/gen.c (genPlusIncr, hasInc),
3936         * src/mcs51/gen.c (hasInc),
3937         * src/pic16/glue.c (pic16_printIvalChar),
3938         * src/pic16/ralloc.c (regWithIdx),
3939         * src/xa51/gen.c (hasInc) : removed warnings
3940         * src/SDCCast.c (createBlock): added comment ???
3941         * src/hc08/ralloc.c: updated comments
3942
3943 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3944
3945         * doc/sdccman.lyx: updated section on switch statements, added
3946         section about semaphore locking
3947         * doc/Makefile: added option -info for latex2html
3948         * device/lib/_gptrget.c,
3949         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3950
3951 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3952
3953         * src/pic/device.h,
3954         * src/pic/device.c,
3955         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3956          maxram is less than 0x100.
3957
3958 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3959
3960         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3961
3962 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3963
3964         * src/port.h,
3965         * src/mcs51/main.c,
3966         * src/ds390/main.c,
3967         * src/z80/main.c,
3968         * src/hc08/main.c,
3969         * src/pic/main.c,
3970         * src/pic16/main.c,
3971         * src/avr/main.c,
3972         * src/xa51/main.c
3973         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3974         a jump table is the best form for a switch statement, including
3975         automatic insertion of missing cases to make the case range
3976         continuous. Developed in collaboration with Frieder Ferlemann.
3977
3978 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3979
3980         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3981         accumulator result if it needs sign extension
3982
3983 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3984
3985         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3986
3987 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3988
3989         * device/lib/gbz80/printf.c,
3990         * device/lib/z80/printf.c: removed define for NULL
3991
3992 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3993
3994         * as/xa51/xa_link.c,
3995         * device/examples/ds390/ow390/ad26.c,
3996         * device/examples/ds390/ow390/cnt1d.c,
3997         * device/examples/ds390/ow390/counter.c,
3998         * device/examples/ds390/ow390/ds2480.h,
3999         * device/examples/ds390/ow390/ds2480ut.c,
4000         * device/examples/ds390/ow390/findtype.c,
4001         * device/examples/ds390/ow390/gethumd.c,
4002         * device/examples/ds390/ow390/owllu.c,
4003         * device/examples/ds390/ow390/ownetu.c,
4004         * device/examples/ds390/ow390/swt12.c,
4005         * device/examples/ds390/ow390/swtloop.c,
4006         * device/examples/ds390/ow390/temp.c,
4007         * device/examples/ds390/ow390/temp10.c,
4008         * device/examples/ds390/ow390/thermo21.c,
4009         * device/examples/ds390/ow390/tinilnk.c,
4010         * device/examples/ds390/ow390/tstfind.c,
4011         * device/examples/serialcomm/windows/serial.cpp,
4012         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4013         * device/include/reg51.h: fixed line endings for cvs
4014
4015 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4016
4017         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4018         packRegsForAccUse, packRegisters): new accumulator register
4019         packing algorithm
4020         * support/regression/ports/hc08/support.c (_putchar): suppress
4021         warning of unused variable
4022         * src/SDCCicode.c: added SWAP entry to codeTable
4023
4024 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4025
4026         * device/lib/sprintf.c: forgot to add this file before previous commit
4027
4028 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4029
4030         * src/pic16/gen.c (genPackBits): added operand right in function
4031         parameters, load result directly if p_type is POINTER (that is
4032         called by genNearPointerSet)
4033         * (genUnPackBits): added operand left in function parameters,
4034         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4035         FSR0 if accessing bitfields,
4036
4037 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4038
4039         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4040           _print_format; updated printf, sprintf, vsprintf
4041         * device/include/asm/default/features.h: corrected comment/define
4042         * device/lib/Makefile.in: added sprintf.c
4043         * device/lib/libsdcc.lib: added sprintf module
4044         * device/lib/printf_large.c,
4045         * device/lib/vprintf.c,
4046         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4047           into these 3 files
4048         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4049         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4050         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4051           hc08 test
4052         * support/regression/tests/zeropad.c: define idata as data for hc08
4053
4054 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4055
4056         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4057         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4058         labels are referenced at least once (even if a reference is not found)
4059         * src/hc08/gen.c (emitcode): set isComment flag for comments
4060         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4061         loads), rules 6a..6b (optimize jumps to return)
4062
4063 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4064
4065         * device/lib/acosf.c (acosf),
4066         * device/lib/asinf.c (asinf),
4067         * device/lib/atanf.c (atanf),
4068         * device/lib/ceilf.c (ceilf),
4069         * device/lib/cosf.c (cosf),
4070         * device/lib/coshf.c (coshf),
4071         * device/lib/cotf.c (cotf),
4072         * device/lib/fabsf.c (fabsf),
4073         * device/lib/floorf.c (floorf),
4074         * device/lib/log10f.c (log10f),
4075         * device/lib/logf.c (logf),
4076         * device/lib/sinf.c (sinf),
4077         * device/lib/sinhf.c (sinhf),
4078         * device/lib/sqrtf.c (sqrtf),
4079         * device/lib/tanf.c (tanf),
4080         * device/lib/tanhf.c (tanhf),
4081         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4082         replaced all instances of "reentrant" in the library functions
4083         defined in math.h with this macro.
4084         * support/regression/tests/float_trans.c: reenabled test for hc08
4085
4086 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4087
4088         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4089         erroneously deleted
4090
4091 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4092
4093         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4094         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4095         multi-byte volatile operands are used
4096         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4097         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4098         initialization to area GSINIT0 so that it would always precede
4099         any static initializers in GSINIT
4100         * support/regression/tests/zeropad.c: fixed idata define for hc08
4101         * support/regression/tests/bug-927659.c,
4102         * support/regression/tests/float_trans.c: disabled tests for hc08
4103         pending missing library routines
4104         * .version: increased version number to 2.4.4 - hc08 port now passes
4105         regression tests
4106
4107
4108 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4109
4110         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4111         * Makefile.common.in,
4112         * as/Makefile,
4113         * as/hc08/Makefile.in,
4114         * as/mcs51/Makefile.in,
4115         * as/z80/Makefile.in,
4116         * debugger/mcs51/Makefile.in,
4117         * device/include/Makefile.in,
4118         * device/lib/Makefile.in,
4119         * doc/Makefile,
4120         * link/Makefile,
4121         * link/z80/Makefile.in,
4122         * packihx/Makefile.in,
4123         * sim/ucsim/main_in.mk,
4124         * sim/ucsim/avr.src/Makefile.in,
4125         * sim/ucsim/doc/Makefile.in,
4126         * sim/ucsim/gui.src/serio.src/Makefile.in,
4127         * sim/ucsim/hc08.src/Makefile.in,
4128         * sim/ucsim/s51.src/Makefile.in,
4129         * sim/ucsim/xa.src/Makefile.in,
4130         * sim/ucsim/z80.src/Makefile.in,
4131         * src/Makefile.in,
4132         * support/cpp2/Makefile.in,
4133         * support/librarian/Makefile,
4134         * support/makebin/Makefile: added DESTDIR to the install path proposed
4135         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4136         * doc/sdccman.lyx: added DESTDIR documentation
4137
4138 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4139
4140         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4141         instruction for interrupt handlers, use fast returns when returning
4142         from high priority interrupts
4143
4144 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4145
4146         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4147         code generation
4148         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4149         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4150         bugs, ported much of Bernhard's code from mcs51
4151         * src/mcs51/gen.c (genSend),
4152         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4153         than one when calling a reentrant function
4154         * device/lib/_mullong.c: defined an alternate struct layout for big
4155         endian ports (hc08)
4156
4157 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4158
4159         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4160         test
4161
4162 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4165         are sane and complete before asking the port its prefered parameter
4166         passing method (fixes bug #1017633)
4167         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4168         and _ret3
4169
4170 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4171
4172         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4173         problem in bitfields >= 8 bits.
4174
4175 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4176
4177         * src/SDCCsymt.c: undid changes that were not meant to be committed
4178
4179 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4180
4181         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4182
4183 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4184
4185         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4186           copied and wrong bit got inverted
4187
4188 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4189
4190         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4191         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4192         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4193         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4194         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4195         assignments to bitfields at known addresses
4196         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4197         reads from bitfields at known addresses
4198         * src/hc08/ralloc.c (packRegisters),
4199         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4200         genhc08Code): optimize pointer get values used as conditionals
4201         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4202         and branch
4203
4204 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4205
4206         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4207         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4208         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4209         as conditionals
4210
4211 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4212
4213         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4214
4215 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4216
4217         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4218         related problems
4219
4220 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4221
4222         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4223
4224 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4225
4226         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4227         mcs51 port
4228
4229 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4230
4231         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4232
4233 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4234
4235         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4236         cases use more compact code.
4237
4238 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4239
4240         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4241
4242 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4243
4244         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4245
4246 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4247
4248         * src/SDCCsymt.h,
4249         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4250         parameter of changePointer() from symbol* to sym_link*
4251         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4252         * src/SDCCsymt.c (compareType): void* type is castable to other
4253         pointers, but not necesarily an exact match.
4254         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4255         is no longer blindly treated as an exact match.
4256         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4257
4258 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4259
4260         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4261
4262 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4263
4264         * src/pic/gen.c,
4265         * src/pic/pcode.c,
4266         * src/pic/ralloc.h,
4267         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4268
4269 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4270
4271         * src/pic/device.c,
4272         * src/pic/device.h,
4273         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4274
4275 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4276
4277         * src/mcs51/gen.c (emitcode): fixed bug #992819
4278
4279 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4280
4281         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4282           there's no need to make it worse
4283
4284 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/mcs51/ralloc.c (deassignLR),
4287         * src/ds390/ralloc.c (deassignLR),
4288         * src/hc08/ralloc.c (deassignLR),
4289         * src/z80/ralloc.c (deassignLR),
4290         * src/pic/ralloc.c (deassignLR),
4291         * src/pic16/ralloc.c (deassignLR),
4292         * src/avr/ralloc.c (deassignLR),
4293         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4294         rlivePoint): fixed another part of bug #971834
4295
4296 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/z80/main.c: enabled "critical" keyword
4299         * src/z80/mappings.i,
4300         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4301         functions (fixes bug #979646)
4302         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4303
4304 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4305
4306         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4307           such as c:\mydir.
4308
4309 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4310
4311         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4312           doesn't disable too much optimizations
4313
4314 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4315
4316         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4317
4318 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4319
4320         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4321
4322 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4323
4324         * src/pic/gen.c tidied up tabs
4325         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4326         * src/pic/main.c tidied up tabs
4327         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4328         * src/pic/pcoderegs.c tidied up tabs
4329         * src/pic/ralloc.c tidied up tabs
4330
4331 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4332
4333         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4334         to S_FIXED for pic16 port and when symbol is not in level 0,
4335         allocate for S_REGISTER storage class and pic16 port, too,
4336         * src/pic16/device.h: prototype for checkSym,
4337         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4338         * (pic16_assignConfigWordValue): test the value and the mask to
4339         validate that the value is suitable for the configuration word,
4340         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4341         collect extern declared symbols, don't emit symbol twice, check
4342         first if symbol is in publics set first,
4343         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4344         * added command line '--fstack' which enables an experimental
4345         feature for stack access, too buggy to be used yet...
4346         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4347         * (pic16_allocDirReg): when register has storage class S_REGISTER
4348         allocate in pic16_dynAccessRegs,
4349         * device/include/pic16/pic18f????.h: modified configuration word
4350         naming convention, words started as CONFIG0H but should be CONFIG1H
4351
4352 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4353
4354         * device/include/mcs51reg.h: fixed bug 970993
4355
4356 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4357
4358         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4359         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4360         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4361         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4362         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4363         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4364           error/warning numbers,
4365           added function setWarningDisabled()
4366         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4367         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4368           _memcmp.c _memmove.c calloc.c realloc.c free.c
4369         * support/regression/tests/malloc.c: added tests for new functionality
4370         * support/regression/tests/zeropad.c: added tests for truncated initializers
4371           and initialized char arrays starting with '\x0'
4372         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4373
4374 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4375
4376         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4377
4378 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4379
4380         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4381         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4382         peephole 177.e. Thanks to anonymous
4383
4384 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4385
4386         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4387         function isn't used in the source but referenced as a
4388         variable initializer then declare it as extern in .asm file
4389
4390 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4391
4392         * .version: increased version number to 2.4.3
4393
4394         Adding version extension according to ChangeLog CVS revision
4395         * src/Makefile.in (target all): added dependency 'version.h'
4396         * (rule version.h): added rule to create version.h from ChangeLog,
4397         * (rule dep): added dependency version.h,
4398         * src/version.awk: AWK script to create version.h
4399         * src/SDCCdwarf2.c (dwWriteModule),
4400         * src/SDCCglue.c (initialComments),
4401         * src/SDCCmain.c (printVersionInfo): modified to write after
4402         version string the version extension number,
4403         * src/SDCCutil.c: included "version.h"
4404         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4405         number,
4406         * src/SDCCutil.h: added prototype for getBuildNumber
4407
4408         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4409         includeDirsSet, too,
4410         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4411         const char [] is found in function prototype...
4412
4413         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4414         moving to WREG with source is already in WREG,
4415         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4416         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4417         * (aopForSym): stack'ed symbols are partially supported, added
4418         if-clause to support symbols in FARSPACE,
4419         * (sameRegs): added test for AOP_ACC to see if registers are same,
4420         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4421         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4422         * (pic16_popRegFromString): will not allocate a new register if it
4423         doesn't find one by name, bug may have introduced...
4424         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4425         * (genIpush): revived to use pic16 port's stack,
4426         * (genAddrOf): added incomplete case for stack'ed operand,
4427         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4428         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4429         can handle multibyte operands,
4430         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4431         * (pic16initialComments): added message for MPLAB compatibility
4432         mode enabled,
4433         * src/pic16/main.h: prototype for pic16_mplab_comp,
4434         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4435         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4436         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4437         because of increased complexity of procedure,
4438         * (_process_pragma): stack pragma changed to format 'stack pos len',
4439         emit symbol '_stack_end' to conform with gplink,
4440         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4441         to search for register,
4442         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4443         PO_GPR_REGISTER,
4444         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4445         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4446         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4447         case for PO_GPR_REGISTER,
4448         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4449         dies, the new era is ahead !...
4450         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4451         pic16_dynInternalRegs,
4452         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4453         * (pic16_allocDirReg): minor optimizations and bug fixes,
4454         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4455
4456         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4457         load stack and frame pointer with address of 'stack_end' symbol
4458
4459 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4460
4461         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4462         without source code but only variable initializers
4463
4464 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4465
4466         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4467         external are not declared as extern to reduce overhead while linking
4468
4469 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4470
4471         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4472
4473 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4474
4475         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4476           Yee Keat for the patch
4477         * src/SDCCast.c (decorateType): fixed bug #979599
4478         * src/ds390/gen.h: removed local fReturnSizeDS390
4479         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4480         * src/ds390/gen.c (genAnd, genOr, genXor),
4481         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4482
4483 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4484
4485         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4486         add relFilesSet to $3, manipulate $2 to handle linking of object
4487         files without source files in command line,
4488         * device/include/pic16 (all headers): added ID location macros,
4489         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4490         entries for ID location bytes,
4491         * (pic16_assignIdByteValue): NEW,
4492         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4493         added field dumpcalltree to pic16_options_t,
4494         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4495         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4496         emitting rFalseIfx label after check_carry label,
4497         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4498         pic16_emitDIRegs), NEW
4499         * (pic16glue): dump .calltree file when option --calltree found,
4500         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4501         * (_pic16_genAssemblerPreamble): emit ID locations after
4502         configuration registers,
4503         * (pic16_linkCmd): modifications of the link command,
4504         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4505         * (pic16_pCodeInitRegisters): don't init stack registers,
4506         * (pic16_findPrevInstruction): fixed bug,
4507         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4508         bug with immediate registers,
4509         * (buildCallTree): traces stack push and pop,
4510         * (pct2): dump also stack usage for each function,
4511         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4512         * (pic16_allocDirReg): various modifications,
4513         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4514         fixed to 1,
4515
4516 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4517
4518         * src/pic16/pcode.c: removed buggy double colon
4519
4520 2004-07-01 Borut Razem <borut.razem AT siol.net>
4521
4522         * support/scripts/sdcc.nsi: added include/pic16 to setup
4523
4524 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4525
4526         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4527         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4528         target 'clean',
4529         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4530         specific command line arguments. Also added sample lkr script
4531         for placing a variable at a specific memory bank.
4532         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4533         at a specific memory bank,
4534         * (pic16_dump_isection): fixed bug which caused string literals to
4535         be omitted when dumping idata section,
4536         * (pic16_groupRegistersInSection): added code to handle registers
4537         in specific memory banks,
4538         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4539         public, all references are renamed too,
4540         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4541         AOP_DPTR2,
4542         * (pic16_storeForReturn): added case to handle when dest is WREG,
4543         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4544         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4545         pic16_rel_udata, check to see if that register is marked as being
4546         a member of a specific memory bank,
4547         * (pic16_printIvalCharPtr): added code to add string literals either
4548         to code or the idata sections,
4549         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4550         also accept the 'udata' pragma,
4551         * src/pic16/main.h: new structure types sectName and sectSym
4552         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4553         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4554         * (pic16_findPrevInstruction): fixed, it returned nothing,
4555         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4556         instruction combinations,
4557         * (pic16_FixRegisterBanking): heavily reorganised,
4558         * (pic16_AnalyzeBanking): if generating banksel directives is
4559         disabled, then don't call FixRegisterBanking at all,
4560         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4561         completely removed,
4562         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4563
4564 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4565
4566         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4567         Phuah Yee Keat <yk.phuah AT nestac.com>
4568
4569 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4570
4571         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4572         correctly the IVT even if it is relocated to some other location
4573
4574 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4575
4576         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4577         * device/include/pic16/pic18f2220.h: NEW,
4578         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4579         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4580         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4581         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4582         nodefaultlibs, ivt_loc is the location of the interrupt vector
4583         table, and nodefaultlibs signs that default libraries should not be
4584         linked in link stage,
4585         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4586         according to --ivt-loc argument,
4587         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4588         when pragma stack is found,
4589
4590 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4591
4592         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4593         256 (range check), 257 (do while), 258.a-f (bit banging
4594         f.e. on 3-wire SPI bus)
4595
4596 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4599         variables used exclusively within a loop
4600
4601 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4602
4603         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4604
4605 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4606
4607         * src/SDCClrange.c (computeClash): fixed bug #971834
4608
4609 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4610
4611         * src/mcs51/gen.c (genCmp): fixed bug #975903
4612         * src/hc08/gen.c (operandsEqu),
4613         * src/ds390/gen.c (operandsEqu),
4614         * src/z80/gen.c (operandsEqu),
4615         * src/pic/gen.c (operandsEqu),
4616         * src/pic16/gen.c (operandsEqu),
4617         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4618         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4619
4620 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4621
4622         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4623
4624 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4625
4626         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4627         default case in switch statement,
4628         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4629         to eliminate problem with initialisation of pointers, but problem
4630         still exists,
4631         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4632         * (emitStaticSegment): removed various lines emitting debug info,
4633         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4634         added processor registers for utilizing EEPROM,
4635         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4636         configurable and set 8
4637
4638 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4639
4640         * .version: increased version number to 2.4.2,
4641
4642         Cumulative patch for pic16 port
4643         * src/pic16/device.c: changed scheme to dump initial values for
4644         variables in idata segment, all print_idata* functions were removed,
4645         now the pic16_printIval* will be called,
4646         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4647         * _pic16_printPointerType, pic16_printPointerType,
4648         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4649         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4650         NEW, similar to the respective functions in SDCCglue.c,
4651         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4652         way, emitting hex bytes,
4653         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4654
4655 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/avr/ralloc.c (serialRegAssign),
4658         * src/xa51/ralloc.c (serialRegAssign),
4659         * src/pic/ralloc.c (serialRegAssign),
4660         * src/pic16/ralloc.c (serialRegAssign),
4661         * src/hc08/ralloc.c (serialRegAssign),
4662         * src/z80/ralloc.c (serialRegAssign),
4663         * src/ds390/ralloc.c (serialRegAssign),
4664         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4665
4666 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4667
4668         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4669         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4670
4671 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4672
4673         Cumulative patch for pic16 port:
4674         * src/pic16/device.h (typedef PIC16_device) modified fields for
4675         defining microcontrollers,
4676         * src/pic16/device.c: added new info for all devices in Pics16 array,
4677         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4678         to be optimised out by the pCode optimiser,
4679         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4680         specially, bug reported by G.M. Gallant,
4681         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4682         as force'd so that cannot be optimised out by pCode optimiser,
4683         * src/pic16/pcode.c,
4684         * src/pic16/pcodepeeph.c,
4685         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4686         they are disabled by default, but can be enabled explicit with
4687         command argument --denable-peeps, for testing,
4688         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4689         --pomit-ivt in COMPILE_FLAGS
4690
4691 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4692
4693         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4694           compilation on MSVC
4695
4696 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4697
4698         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4699
4700 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4701
4702         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4703         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4704
4705 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4706
4707         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4708         would only assign 0x300001 register.
4709
4710 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4711
4712         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4713         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4714
4715 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4716
4717         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4718         for ds80c400
4719         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4720         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4721         added peephole 254 (left shift), 255 (jump table)
4722
4723 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4724
4725         * device/lib/Makefile.in: removed comment line with model-pic16,
4726         * (target port-specific-objects-pic16): the libraries and objects
4727         are copied to the build directory form the device/lib/pic16/bin
4728         directory
4729
4730         Cumulative patch concerning pic16 port:
4731         * library directory has been re-organized,
4732         * added support for PIC18F1220,
4733         * added headers and library sources for chips 18f1220,18f6520,
4734         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4735
4736         * configuration registers setting has changed, now each supported
4737         device has a complete description of the registers it uses,
4738         * all initialisations are moved to idata sections, these section
4739         can be absolute or relocatable,
4740         * fixed initialisation of codespace variables,
4741         * fixed warning about PCLATU and gpsim,
4742         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4743         * (genAssign): use table reads when assigning from variables in codespace,
4744         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4745         char/int variables placed in codespace,
4746         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4747         registers set in .asm file, no need for --pomit-config-words anymore,
4748         * (pic16glue): some 8051 legacy segments are commented out
4749         (to be removed completely),
4750         * added support for alternative assembler and linker with --asm=
4751         and --link= command line arguments,
4752         * peepholes are disabled automatically in the port, no need to
4753         specify on command line,
4754         * port supports natively char/int/long multiplication, but converts
4755         all divisions to support functions,
4756         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4757         to the file set in variable $2,
4758         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4759         strings in ASCII format and not in hex,
4760         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4761         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4762         allocate proper register if iCodes aren't temporary,
4763
4764 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4765
4766         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4767
4768 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4769
4770         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4771         is commented out
4772
4773 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4774
4775         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4776         computed address is reused
4777         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4778         multi-byte bitfields
4779
4780 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4781
4782         * src/z80/gen.c: (genArrayInit): must check for pointers too
4783
4784 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4785
4786         * support/regression/tests/zeropad.c: never meant to commit the
4787           nestedstruct test: removed, added check for GCC version
4788
4789 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4790
4791         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4792         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4793         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4794           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4795           bugs 928906 and 954082 half-empty initializers
4796         * src/SDCCsymt.h,
4797         * src/SDCCsymt.c (getAllocSize): added for above fix
4798         * src/z80/gen.c (genArrayInit): fixed bug 741044
4799         * support/regression/tests/zeropad.c: added tests
4800
4801 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4802
4803         * src/pic16/device.c (pic16_dump_section): corrected bug which
4804         caused some symbols of the libraries to be misplaced
4805
4806 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4807
4808         * src/pic16/glue.c,
4809         * src/pic16/ralloc.h,
4810         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4811         to fix conflict with pic port
4812
4813 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4814
4815         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4816         externs configuration variables,
4817         * src/pic16/ralloc.h,
4818         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4819         prototype in header, commented out some debug messages
4820
4821 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4822
4823         * src/pic16/glue.c,
4824         * src/pic16/main.c,
4825         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4826         for gpasm COFF object generation. Thanks to D. Hawkins for
4827         his patch info
4828
4829 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4830
4831         * src/ds390/main.c,
4832         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4833         Brock for spotting this)
4834         * src/ds390/gen.c (genEndFunction),
4835         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4836         interrupt handler and critical. Disable push/pop optimizations when
4837         peephole optimizations disabled.
4838
4839 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4840
4841         Updated pic16 library sources and headers.
4842         * device/lib/pic16/pic18f*/ ,
4843         * device/include/pic16/*.h: modified to handle structured SFR
4844         definitions
4845
4846 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4847
4848         * src/port.h (PORT structure): added hook initPaths, now each
4849         port can declare its own default search paths,
4850         which can been seen with the --print-search-dirs option,
4851         see pic16 port for example,
4852         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4853         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4854         * (doPrintSearchDirs): NEW, replaces in a central manner the
4855         printing of search dirs which was split in set*Paths functions,
4856         * (main): added call to port->initPaths and doPrintSearchDirs,
4857         * src/avr/main.c,
4858         * src/ds390/main.c,
4859         * src/hc08/main.c,
4860         * src/izt/i186.c,
4861         * src/izt/tlcs900h.c,
4862         * src/mcs51/main.c,
4863         * src/pic/main.c,
4864         * src/pic16/main.c: modified port structures to reflect addition of
4865         initPaths hook,
4866
4867         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4868         * (pic16_dump_section): for registers in same address reserve memory once,
4869         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4870         to no_banksel,
4871         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4872         result is greater in size than right or left,
4873         * (pic16_genUMult8X8_8): there are some cases where the result can
4874         be 16 bits size, so handle these,
4875         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4876         * (pic16_outBitC): modified to emit pcodes,
4877         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4878         or not,
4879         * (genDivOneByte): implemented algorithm to divide 8-bits,
4880         * (genCmp): uncommented goto, but issues still exist,
4881         * (genAnd): fixed a bug with variables >8bits,
4882         * (genPackBits): optimization added that uses BCF/BSF to change a
4883         single bit,
4884         * (genAssign): fixed bug when assigning floating point literals,
4885         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4886         __sdcc_gsinit_startup label,
4887         * src/pic16/main.c (_pic16_init): removed search directory
4888         initialisations,
4889         * (_pic16_initPaths): NEW, used to initialise search directories,
4890         * (_hasNativeMulFor): support functions for all except char/int
4891         multiplication, and char division,
4892         * (PIC16_port struct): modified entry for native mul support,
4893         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4894         no_banksel option,
4895         * (buildCallTree): call to register_usage is ifdef'ed out,
4896
4897 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4898
4899         * device/include/string.h: applied Stas Sergeev's patch to make this
4900         header file compatible with the preprocessor -Wundef option
4901         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4902         failure (fixes bug #941458)
4903
4904 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4905
4906         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4907         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4908         that the variable, not the function, should be static
4909         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4910         to be consistent with non-literal case
4911
4912 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/SDCCast.c (isConformingBody): fixed bug #949967
4915         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4916         convilong): fixed bug #952086
4917
4918 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4919
4920         * src/SDCCmem.c (allocVariables): fixed bug #955321
4921
4922 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4923
4924         * src/hc08/main.c (_hc08_genAssemblerEnd),
4925         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4926         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4927         completely eliminated the use of a temporary file
4928         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4929         when more than one file linked
4930         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4931
4932 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4933
4934         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4935         which fixes bug #543481
4936         * support/regression/tests/bug-751703.c: fixed comments left from a
4937         cut and paste error
4938         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4939         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4940         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4941         scopes
4942         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4943         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4944         are now changed to underscores in moduleName
4945
4946 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4947
4948         * as/mcs51/lkmem.c: better fix for bug #954173
4949
4950 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4951         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4952
4953         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4954         * device/include/c8051f000.h,
4955         * device/include/c8051f120.h,
4956         * device/include/c8051f300.h,
4957         * device/include/c8051f310.h,
4958         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4959         PWM16) and detab'ed
4960
4961 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4962
4963         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4964         and mailing lists, doc'ed --no-peep-comments, removed reference
4965         to knoppix (newest version has no LyX/LaTeX), other minor changes
4966         * src/SDCCglue.c (glue): save 2 bytes stack space with
4967         option --main-return. The ljmp could probably be avoided too
4968
4969 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4970
4971         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4972
4973 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4976         * src/SDCCopt.c (isLocalWithoutDef),
4977         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4978         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4979         (credit to Maarten Brock for patch #949363, on which this is based)
4980         * support/regression/tests/bug-751703.c: some test cases of extern used
4981         within inner scopes.
4982
4983 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4984
4985         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4986         SPEC_STRUCT
4987         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4988         struct definitions
4989         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4990         dwWriteLabel): fix to create valid debugger symbols even when
4991         the module name has non-alphanumeric symbols in it
4992         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4993         when a variable's allocation has been optimized away
4994
4995
4996 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4997
4998         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4999         * src/hc08/main.c,
5000         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5001         * src/mcs51/main.c,
5002         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5003         * src/ds390/main.c,
5004         * src/z80/gen.c (z80_emitDebuggerSymbol),
5005         * src/z80/main.c,
5006         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5007         * src/pic/main.c,
5008         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5009         * src/pic16/main.c,
5010         * src/avr/gen.c (avr_emitDebuggerSymbol),
5011         * src/avr/main.c,
5012         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5013         * src/xa51/main.c,
5014         * src/SDCCdebug.c (emitDebuggerSymbol),
5015         * src/SDCCdebug.h,
5016         * src/port.h: added a debugger struct to the port struct. Added a
5017         callback for defining debugger symbols
5018
5019         * src/SDCCast.c (createLabel),
5020         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5021         with isitmp = 1
5022         * src/SDCCicode.h,
5023         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5024         iCode back to the ast for the function
5025
5026         * src/hc08/ralloc.c (hc08_assignRegisters),
5027         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5028         unneeded fields from the regs struct.
5029         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5030         pushReg() & pullReg() functions instead of emitcode()
5031
5032         * src/hc08/gen.c (genLabel, genhc08Code),
5033         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5034
5035         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5036         debugger hooks
5037
5038         * src/hc08/gen.c (genEndFunction, genhc08Code),
5039         * src/hc08/gen.h,
5040         * src/mcs51/gen.c (genEndFunction, gen51Code),
5041         * src/mcs51/gen.h,
5042         * src/ds390/gen.c (genEndFunction, gen390Code),
5043         * src/ds390/gen.h,
5044         * src/z80/gen.c (genEndFunction, genZ80Code),
5045         * src/z80/gen.h,
5046         * src/z80/z80.h,
5047         * src/pic/gen.c (genEndFunction, genpic14Code),
5048         * src/pic/gen.h,
5049         * src/pic16/gen.c (genEndFunction, genpic16Code),
5050         * src/pic16/gen.h,
5051         * src/avr/gen.c (genEndFunction, genAVRCode),
5052         * src/avr/gen.h,
5053         * src/xa51/gen.c (genEndFunction, genXA51Code),
5054         * src/xa51/gen.h,
5055         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5056         specific code to cdbFile.c and out of the backend code generators
5057
5058         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5059         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5060         starting address is now 0
5061
5062         * as/hc08/asm.h,
5063         * as/hc08/m08pst.c,
5064         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5065         assembler directive for DWARF support
5066         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5067
5068         * src/src.dsp,
5069         * src/Makefile.in,
5070         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5071
5072 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5073
5074         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5075         and inappropriate peephole optimization in jump tables
5076
5077 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5078
5079         * as/hc08/m08pst.c,
5080         * src/SDCCglue.c: sdccopt works for the hc08 port now
5081
5082 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5083
5084         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5085
5086 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5087
5088         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5089
5090 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5091
5092         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5093         rules
5094         * src/SDCCmain.c,
5095         * src/SDCCglobl.h,
5096         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5097         comments from the peephole optimizer replacement rules
5098         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5099         symbols
5100         * src/SDCCcse.c (updateSpillLocation),
5101         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5102         equivalents
5103         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5104         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5105         objects far pointers
5106
5107 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCCsymt.h: a missing part of my last change
5110         * src/pic/ralloc.c (regTypeNum),
5111         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5112
5113 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5114
5115         * src/SDCCicode.h,
5116         * src/SDCCicode.c (aggrToPtrDclType),
5117         * src/SDCCptropt.h,
5118         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5119         ptrPseudoSymConvert),
5120         * src/pic/ralloc.c (regTypeNum),
5121         * src/pic16/ralloc.c (regTypeNum),
5122         * src/hc08/ralloc.c (regTypeNum),
5123         * src/ds390/ralloc.c (regTypeNum),
5124         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5125         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5126
5127 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5128
5129         * link/z80/lkmain.c (afile),
5130         * as/hc08/lkmain.c (afile),
5131         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5132         prevent a pointer problem when a filename has no directory and
5133         no extension specified.
5134
5135 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * link/z80/lkmain.c (afile): allow periods in directory names
5138         * link/z80/lkmain.c (afile),
5139         * as/mcs51/lkmain.c (afile),
5140         * as/hc08/lkmain.c (afile): allow linker script file to have an
5141         extension other than ".lnk"
5142         * link/z80/lklex.c (getfid),
5143         * link/z80/lkmain.c (parse),
5144         * as/mcs51/lklex.c (getfid),
5145         * as/mcs51/lkmain.c (parse),
5146         * as/hc08/lklex.c (getfid),
5147         * as/hc08/lkmain.c (parse): Support comments in the linker script
5148         file on lines by themselves and after filenames
5149
5150 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5151
5152         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5153
5154 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5155
5156         * src/z80/peeph-z80.def: removed some peephole rules that don't
5157         work with multibyte arithmetic (fixed bug #937126)
5158         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5159         to registers and not global variables
5160         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5161         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5162         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5163         checking for assignments not internally generated (fixed bug #931895)
5164         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5165         structure member (fixed bug #930072)
5166
5167 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5168
5169         * src/SDCCmain.c (linkEdit),
5170         * src/hc08/main.c (_hc08_parseOptions),
5171         * as/hc08/Makefile.in,
5172         * as/hc08/aslink.h,
5173         * as/hc08/asm.h,
5174         * as/hc08/m08pst.c,
5175         * as/hc08/lkrloc.c (relr, rele),
5176         * as/hc08/lkarea.c (lnkarea)
5177         * as/hc08/lkmain.c (afile, parse),
5178         * as/hc08/lkelf.c: support for ELF output
5179         * as/hc08/lks19.c (s19),
5180         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5181
5182 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5183
5184         * as/mcs51/lkihx.c: Fixed bug #899105.
5185
5186 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5187
5188         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5189         .dsp files from Unix to DOS.
5190
5191 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5192
5193         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5194         function pointers; we have been compliant for several months now.
5195         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5196         change that was accidently commented out
5197         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5198         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5199         bug #922319
5200
5201 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5202
5203         * src/hc08/gen.c: output of all of the internal debugging information
5204         is now controlled by the D() macro; it is disabled by default
5205
5206 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5209         harder to keep the same registers during a CAST iCode
5210         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5211         long via int can be done in a single cast, if the signedness is
5212         correct.
5213         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5214         putchar() in tinibios.c in ds390's library
5215
5216 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5217
5218         * src/SDCCast.c (decorateType): fixed bug #898889,
5219         cast result of a literal complement too
5220         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5221         fixed check for bitfields
5222
5223 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5224
5225         * src/SDCCicode.c (geniCodeLogic): made it static,
5226         (geniCodeLogicAndOr): added in order to fix bug #905492,
5227         (ast2iCode): fixed bug #905492
5228         * support/regression/tests/bug-905492.c: added
5229         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5230         (processParms): fixed bug #927659: don't copy parms, this will clear
5231         decorated flag
5232         * support/regression/tests/bug-927659.c: added
5233
5234 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5235
5236         * src/SDCCast.c (addCast): don't cast float to char
5237         * device/lib/libsdcc.lib: added _memmove
5238
5239 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5240
5241         * device/lib/large/Makefile: fixed parallel execution by
5242         replacing `make` by `$(MAKE)`
5243
5244 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5245
5246         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5247         offsets (fixes bug #923936)
5248
5249 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5250
5251         * device/lib/small/Makefile: fixed parallel execution by
5252         replacing `make` by `$(MAKE)`
5253
5254 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5255
5256         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5257
5258 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5259
5260         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5261         * src/regression/Makefile: Regression test was not running.
5262
5263 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5264
5265         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5266         complement if possible
5267         * src/SDCCval.c (valComplement),
5268         * src/SDCCicode.c (operandOperation): fixed complement of literal
5269         * support/regression/tests/onebyte.c (testComplement): added
5270
5271 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5272
5273         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5274         return an optimized tree; actually replace actParm with the new tree
5275         * src/SDCCast.h: added some parantheses to remove side effects
5276         * support/regression/tests/bug-920866.c
5277
5278 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5279         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5280         Bit operands were not being handled properly in the pic14 port.
5281         (now src/regression/add.c passes again).
5282
5283 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5284
5285         * src/SDCC.y (labeled_statement): case and default no longer require
5286         a following statement (RFE #893037)
5287
5288 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5289
5290         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5291         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5292         disabled (fixes bug #916294)
5293         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5294         "mov a,acc"; patch provided by Lenny Story
5295         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5296
5297 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5298
5299         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5300         functions
5301         * src/ds390/gen.c (genFunction, genEndFunction),
5302         * src/ds390/ralloc.c (ds390_assignRegisters),
5303         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5304         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5305         pushed if there are parameters passed on the stack. Also, a cleaner
5306         way to decide if r0/r1 should be pushed/popped. (Together they fix
5307         bug #918693)
5308
5309 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5310
5311         * doc/sdccman.lyx,
5312         * device/lib/mcs51/crtpagesfr.asm,
5313         * device/lib/mcs51/crtxinit.asm,
5314         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5315         to avoid confusion with Si Lab's SFRPAGE register.
5316
5317 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5318
5319         * src/SDCCglue.c (emitMaps): allow public sfr variables
5320         * src/SDCCglue.c (initialComments): include compiler build date
5321         with compiler version and put the timestamp of the generated
5322         assembly file on a serperate line to be less confusing.
5323         * src/port.h: added genInitStartup hook
5324         * src/avr/main.c,
5325         * src/ds390/main.c,
5326         * src/hc08/main.c,
5327         * src/pic/main.c,
5328         * src/pic16/main.c,
5329         * src/xa51/main.c,
5330         * src/z80/main.c: genInitStartup initialize as NULL (default to
5331         historical behaviour)
5332         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5333         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5334         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5335         library instead of hard coding it into the compiler.
5336         * support/regression/ports/mcs51-stack-auto/spec.mk,
5337         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5338         * device/lib/mcs51/Makefile,
5339         * device/lib/small/Makefile,
5340         * device/lib/large/Makefile,
5341         * device/lib/mcs51/crtpagesfr.asm,
5342         * device/lib/mcs51/crtstart.asm,
5343         * device/lib/mcs51/crtxclear.asm,
5344         * device/lib/mcs51/crtxinit.asm,
5345         * device/lib/mcs51/crtclear.asm,
5346         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5347         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5348         and into user configurable files.
5349         * device/lib/clean.mk: clean mcs51 directory too
5350         * support/regression/tests/longlit.c: added static to T1 declaration
5351         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5352         accesses in the initialization code
5353
5354 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5355
5356         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5357         OSCTRIMVAL as noted in bug #916008
5358
5359 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5360
5361         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5362         in loops with multiple exits (reported as incorrect registers
5363         used by Martin Helmling in Sdcc-user list)
5364
5365 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5366
5367         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5368         made ds390 register extensions look less like error messages
5369
5370 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5373         reported by Adam Wozniak in Sdcc-user list
5374
5375 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5376
5377         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5378         arithmetic optimizations, added debug output
5379
5380 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5381
5382         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5383         * sdcc.spec: updated and split sdcc into 3 rpms
5384         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5385         needed for literals of LEFT_OP and '+'
5386         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5387         introduced RESULT_TYPE_NOPROM
5388         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5389         left shift
5390         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5391         limited promotion to int only for '*'
5392         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5393
5394 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5395
5396         * src/pic16/gen.c (genSkip),
5397         (genc16bit2lit), (gencjneshort): commented out
5398         (is_LitOp): new helper function, checks operand type
5399         (genCmpEq): rewritten
5400
5401 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5402
5403         * support/regression/tests/bug-908454.c: added
5404
5405 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5406
5407         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5408         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5409         (geniCodeCast): cosmetic, don't preserve bit storage class
5410         (geniCodeLeftShift): added promotion
5411         (geniCodeLogic): fixed regression
5412         * src/SDCCsymt.c (computeTypeOr): accept bits too
5413         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5414
5415 2004-03-07  Borut Razem <borut.razem AT siol.net>
5416
5417         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5418
5419 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5420
5421         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5422         version of pic16_genPackRegisters which does not check if ic is a
5423         CAST operator,
5424         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5425         function cause string1.c regression test fails
5426
5427 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5428
5429         * sim/ucsim/configure.in,
5430         * sim/ucsim/configure,
5431         * sim/ucsim/doc/Makefile.in: use docdir
5432         * src/SDCC.y: fixed sbit atrributes
5433         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5434         * src/SDCCast.c (decorateType): |^& need special promotion handling
5435         * src/SDCCast.h,
5436         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5437         * src/SDCCsymt.h (computeType),
5438         * src/SDCCicode.c: computeType() needs op
5439         * src/SDCCsymt.c (checkTypeSanity),
5440         * doc/sddman.lyx: "plain" bitfields are unsigned
5441         * src/SDCCsymt.c (computeTypeOr): added
5442         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5443         |^& ops
5444         * src/SDCCval.c (val*): computeType() needs op
5445         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5446         * support/regression/tests/onebyte.c: added tests for |^&
5447
5448 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5449
5450         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5451         for writing icode into asm output.
5452
5453 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5454
5455         * src/pic16/device.c: added some debug lines enabled
5456         with macro DEBUG_CHECK,
5457         * src/pic16/genarith.c: more debug in genPlus,
5458         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5459         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5460         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5461         * (aopForSym): onStack symbols are re-placed in data memspace,
5462         and onStack flag is cleared,
5463         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5464         copy temporary pcodeop,
5465         * (genPcall): added warning for not updating PCLATU,
5466         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5467         always true for pic16 port,
5468         * (genMultOneWord): NEW, supports integer multiplication,
5469         * (genMult): modified to call genMultOneWord,
5470         * (ifxForOp): added warning when return NULL,
5471         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5472         flag is set before call to operandFromSymbol for implicit
5473         added structures,
5474         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5475         options.intlong_rent are set by default,
5476         * (_hasNativeMulFor): modified to allow port generation of integer
5477         multiplication,
5478         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5479         set regtype to REG_SFR for all registers, restricting seting the
5480         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5481
5482 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5483
5484         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5485         more than 500 times in the regression tests
5486
5487 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * support/Util/SDCCerr.h,
5490         * support/Util/SDCCerr.c,
5491         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5492         enumerator_list),
5493         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5494         for symbol conflicts.
5495         * support/valdiags/tests/enum.c,
5496         * support/valdiags/tests/tentdecl.c,
5497         * support/valdiags/tests/struct.c: expect possible error messages
5498         referring to original symbol definitions.
5499         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5500         * src/SDCCsymt.h,
5501         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5502
5503 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5504
5505         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5506
5507 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5508
5509         * src/pic16/ralloc.c (newReg): fixed bug #908929
5510
5511 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5512
5513         * src/ds390/gen.c: added missing #include "main.h"
5514
5515 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5516
5517         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5518         checking if symbol is already in set,
5519         * src/pic16/device.h: prototype for checkAddSym,
5520         * src/pic16/gen.c: (_G): added entry interruptvector,
5521         * (assignResultValue): removed some commented out lines,
5522         * (genFunction): check for ISR via sym->type, absolute section for
5523         interrupt code is created via a new pBlock, the goto instruction is
5524         placed now correctly at the interrupt vector position, changed all
5525         references from ivec to _G.interruptvector,
5526         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5527         is the interrupt is a high priority one, same for return from ISR,
5528         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5529         externs to calls of checkAddSym,
5530         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5531         pic16_pcode_verbose flag is set,
5532         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5533         * src/pic16/pcoderegs.c: message about how many registers are saved
5534         will only be emitted if pic16_pcode_verbose flag is set,
5535
5536 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5537
5538         * src/ds390/ralloc.h,
5539         * src/ds390/ralloc.c (ds390_regWithIdx),
5540         * src/ds390/gen.c (emitcode),
5541         * src/ds390/main.h,
5542         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5543         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5544         ds390operandCompare, getRegsRead, getRegsWritten,
5545         initializeAsmLineNode): customized instruction size calculation for
5546         ds390, started basis for some register optimizations
5547         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5548         corresponding assembly output
5549         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5550         missing push/pop of r0/r1. Optimized push/pops
5551
5552 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5553
5554         * src/mcs51/main.c (instructionSize): fixed ACALL size
5555         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5556
5557 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5558
5559         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5560         the sorting of rlist with NULL elements
5561         * (print_idataType, print_idata): NEW to create idata sections
5562         * src/pic16/device.h: idataSymSet new variable
5563         * src/pic16/gen.c (genFunction): fixed some bugs in string
5564         comparing, improved the absolute section creation for ISRs,
5565         added FSR0L/FSR0H in registers that are saved in an ISR,
5566         * (genInline): fixed the processing of inline snippets,
5567         now they undergo no process by the peephole optimizer
5568         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5569         are placed in idataSymSet,
5570         * (pic16emitStaticSeg): extern symbols are added in externs,
5571         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5572         switching when aboslute variables are placed in access bank memory
5573         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5574         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5575         commented out with #if,
5576         * (pic16_packRegisters): reintroduce the check for CAST because some
5577         symbols are not correctly handled,
5578         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5579         pCodeInstruction instead of pCode,
5580         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5581         pCodeAsmDir definition,
5582         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5583         directive, then the argument directive is emitted without the leading
5584         tab, hack for inline labels which must be in the first column,
5585         * (compareLabel,pic16_findNextInstruction),
5586         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5587         * (insertBankSwitch): modified for the new pCodeAsmDir,
5588
5589 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5590         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5591
5592         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5593         instance,
5594         * (pushSide): commented out with #if,
5595         * (assignResultValue): fixed some typos in saving
5596         registers,
5597         * (genPcall): FIXED and sync'ed with genCall,
5598         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5599         * (genNearPointerGet): fixed to handle some more cases,
5600         implementation scheme via table reads,
5601         * (genConstPointerGet): modified to access code memory correct,
5602         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5603         and improved to handle some cases
5604         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5605         instead of "RETLW" for init data
5606         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5607         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5608         variables are placed in access bank memory (<0x80 and >=0xf80),
5609         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5610         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5611         TBLWT_POSTDEC,TBLWT_PREINC
5612         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5613         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5614         directives
5615         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5616         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5617         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5618         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5619
5620 2004-02-29  Borut Razem <borut.razem AT siol.net>
5621
5622         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5623         support/Util/findme.h, support/Util/system.h: enhance binary relative
5624         search for lib and include by using findProgramPath()
5625
5626 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * src/SDCCpeeph.h,
5629         * src/SDCCpeeph.c (pcDistance),
5630         * src/port.h,
5631         * src/mcs51/ralloc.h,
5632         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5633         * src/mcs51/main.h,
5634         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5635         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5636         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5637         size calculation port specific, started basis for some register
5638         optimizations
5639         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5640         missing push/pop of r0/r1. Optimized push/pops
5641         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5642         * device/lib/_modsint.c (_modsint),
5643         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5644         and stack version so regression tests pass
5645
5646 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5647
5648         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5649         * src/SDCCast.c (decorateType): catch another small optimization
5650         with '?' operator
5651         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5652         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5653         modified to finally use computeType() all over SDCC,
5654         see Feature Request #877103
5655         * src/SDCCval.h: cosmetic
5656         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5657         valCompare(); regression tested in muldiv.c
5658         * support/regression/tests/muldiv.c (testMod): mod sign follows
5659         dividend only
5660
5661 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5662
5663         * src/SDCCast.c (decorateType): fixed bug #902362
5664         * doc/INSTALL.txt: fixed install instructions for win32
5665
5666 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5667
5668         * device/include/Makefile.in (install): fixed by replacing spaces
5669         by tabs
5670         * doc/README.txt,
5671         * doc/INSTALL.txt: updated for release
5672         * doc/sdccman.lyx: added warning for --xstack being buggy
5673
5674 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5675
5676         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5677         to eliminate build warnings.
5678         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5679
5680 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5681            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5682
5683         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5684         removed -penable-stack, added comment for stack pragma, added
5685         warning for not initializing the stack/frame registers, removed
5686         comment at interrupts section
5687
5688         Stack is made permanent, there is no ability to disable stack usage.
5689         * src/pic16/device.h,
5690         * src/pic16/device.c: removed all references to USE_STACK macro,
5691         * src/pic16/device.c (pic16_dump_section): when no elements in
5692         rlist, free rlist before return,
5693         * (pic16_dump_int_registers): NEW, internal registers are a new set
5694         of general purpose registers reused by each function,
5695         * (checkAddReg): returns 1 if registers is added to set,
5696         * (pic16_groupRegistersInSection): when a registers is of type
5697         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5698         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5699         SRCASECMP macro is moved here from device.c
5700         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5701         PO_PCLATU, PO_PRODL, PO_PRODH,
5702         * (pic16_pCodeOpType, genMinus,
5703         changed compares to "a" register, with AOP_ACC,
5704         * (pic16_genPlus): fixed some bugs and indented properly,
5705         * (pic16_addSign): changed size to size+offset in the MOVWF
5706         instruction,
5707         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5708         multiply 8-bit operand by literal, result is 8-bit,
5709         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5710         multiply 2 8-bit operand, result is 8-bit,
5711         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5712         genUMult8X*_16,
5713         * src/pic16/gen.c: changed accUse to contain WREG only,
5714         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5715         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5716         true, do not use immediate addressing any more unless sym is a
5717         pointer in codespace,
5718         * (aopForRemat): do not use immediate addressing when symbol not in
5719         codespace and when symbol's address is requested,
5720         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5721         accUse size (= 1),
5722         * (aopGet): added case for AOP_ACC and don't return "accumulator
5723         bug" but WREG instead,
5724         * (popGetTempReg): pushes contents of temporary register in stack,
5725         * (popReleaseTempReg): pops contents of temporary register from
5726         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5727         * (pic16_popGet): separated case AOP_ACC to return register WREG
5728         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5729         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5730         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5731         the use of immediate pointers to certain cases only.
5732
5733         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5734         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5735         * (assignResultValue, genCall, genRet): modified to use the new
5736         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5737         genPcall is still broken,
5738         * (genFunction): added code to create 'A' type pBlocks when
5739         interrupt functions are generated, code not extensively tested yet,
5740         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5741         * (genEndFunction): modified so ISRs pop stored registers from stack,
5742         * (genMultOneByte): cleanup,
5743         * (AccRsh): added flag andmask, to and result with appropriate mask,
5744         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5745         * (genDataPointerGet): fixed and reenabled its use,
5746         * (genNearDataPointerGet): bugs fixed,
5747         * (genDataPointerSet): bugs fixed,
5748         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5749         pic16_DumpSymbol, pic16_DumpOp,
5750         * src/pic16/genutils.h: function prototypes for the above functions,
5751         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5752         pointers,
5753         * (pic16emitRegularMap): many many many improvements, but needs a
5754         major cleanup,
5755         * src/pic16/main.c: enable_stack in pic16_options is removed,
5756         * (_pic16_parseOptions): removed command line options -penable-stack,
5757         * (_process_pragma): emit stack symbol only when stack pragma is
5758         processed,
5759         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5760         redirected to FSR0L/FSR0H pair,
5761         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5762         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5763         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5764         for immediates,
5765         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5766         * (dumpPicOptype): NEW,
5767         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5768         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5769         with movff instruction,
5770         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5771         added pic16_int_regs, some packRegsFor* functions are commented out,
5772         because produce errors,
5773         * src/pic16/NOTES: minor modifications
5774
5775 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5776
5777         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5778         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5779         --pack-iram.
5780         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5781         * as/mcs51/lkaomf51.c: fixed bug #895763
5782
5783 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5784
5785         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5786
5787 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5788
5789         * doc/sdccman.lyx: added details about the HC08 storage classes and
5790         interrupts, fixed the register usage info for z80 & gbz80
5791
5792 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5793
5794         * doc/sdccman.lyx: added more pic16 port documentation
5795         * device/include/pic16/: added header pic18fregs.h
5796
5797 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5798
5799         * doc/sdccman.lyx: added Vangelis' contribution
5800
5801 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5802
5803         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5804         extend to the next CALL or PCALL, not just to the next CALL.
5805
5806 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5807
5808         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5809
5810 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5811
5812         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5813         bug #895752 and a better fix for bug #716790
5814
5815 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5816
5817         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5818
5819 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5820
5821         * doc/sdccman.lyx: minor changes, minor changed
5822
5823 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5824
5825         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5826         which can't handle SDCC_NEWONEBYTEOPS,
5827         (geniCodeMultiply): removed conversion from mult to shift for pic14
5828         and pic16
5829
5830 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5831
5832         * src/hc08/gen.h,
5833         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5834         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5835         thus fixing bug #895406
5836
5837 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5838
5839         * device/lib/_modsint.c,
5840         * device/lib/_modslong.c: sign follows divisor only
5841         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5842         signs or signedness can be ignored
5843         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5844         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5845         added optimization for IFX,
5846         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5847         arguments;
5848         reenabled optimization for IFX, which was removed on 2004-01-11
5849         * src/SDCCast.h: added return type IFX
5850         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5851         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5852         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5853         SDCC_OLDONEBYTEOPS selects the old behaviour
5854         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5855         changed again and commented promotion rule
5856         * src/SDCCval.c (valDiv): promotion no longer necessary
5857         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5858         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5859         rewritten
5860         * support/regression/tests/onebyte.c: added
5861
5862 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5863
5864         * gen.c (genInline): reverted to old code for assemnling inline
5865         code because of bug reported James Chadd
5866
5867 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5868
5869         * ralloc.h: missing declarations from previous patch,
5870         seems that patch for ralloc.h was never applied, fixed
5871
5872 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5873            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5874
5875         * pcode.c,
5876         * pcode.h,
5877         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5878         indirect addressing. Marked FSR0 as deprecated
5879         * gen.c (pointerCode): commented out, not needed now
5880         (pic16_popGet2p): new MOVFF helper function
5881         (genGenPointerGet),
5882         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5883         (shiftRLong): removed duplicate debugging info
5884
5885 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         * src/ds390/gen.c (genNearPointerGet),
5888         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5889         optimization with bits, but not bitfields.
5890         * src/ds390/ralloc.c (packRegisters),
5891         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5892
5893 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5894
5895         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5896
5897 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5898
5899         * src/SDCCsymt.h,
5900         * src/SDCCicode.c (operandFromSymbol),
5901         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5902         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5903         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5904         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5905         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5906         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5907         bug #892038
5908         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5909         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5910         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5911         * src/SDCCsymt.c (newSymbol),
5912         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5913         enumerator_list),
5914         * src/SDCCval.h,
5915         * src/SDCCval.c (newiList): fixed bug #885705
5916
5917 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5918
5919         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5920         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5921
5922 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5923
5924         * device/include/c8051f120.h,
5925         * device/include/c8051f300.h,
5926         * device/include/c8051f310.h: added/updated header files for Silicon
5927         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5928         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5929         in new section Submitting patches
5930
5931 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5932
5933         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5934         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5935         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5936         genGenPointerSet),
5937         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5938         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5939         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5940         genGenPointerSet),
5941         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5942         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5943         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5944         genGenPointerSet),
5945         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5946         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5947         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5948         genGenPointerSet): fixed bug #892400
5949         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5950         to eliminate build warnings.
5951         * src/SDCCast.c (processParms),
5952         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5953         fixed bug 751859
5954         * support/valdiag/valdiag.py: added GCC to the list of defines active
5955         when compiling with gcc
5956
5957 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5958
5959         * support/Util/SDCCerr.h,
5960         * support/Util/SDCCerr.c,
5961         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5962         with an incomplete type (fixed bug #883734)
5963         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5964
5965 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5966
5967         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5968
5969 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/SDCCast.c (decorateType),
5972         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5973         function pointer implementation
5974         * support/regression/tests/funptrs.c: added tests to verify both forms
5975         of function pointers work correctly. Added tests to verify parameters
5976         are passed in the correct order.
5977
5978 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5979
5980         * device.c (regCompare): registers are sorted by ascending
5981         address and increasing size,
5982         * main.c (_pic16_finaliseOptions): removed the declaration
5983         of compiler macro MCU. Now a macro of the format pic18fxxxx
5984         will be defined from the command line
5985
5986 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5987             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5988
5989         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5990         PCOP_RLCF was overwritten!
5991         * gen.c (genSkip): commented out calls to pic16_emitcode,
5992         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5993         * (genlshTwo),
5994         * (genRRC): added debugging info,
5995         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5996         overwritten while shifting,
5997         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5998         overwritten while shifting,
5999         * (AccLsh),
6000         * (AccRsh),
6001         * (shiftLLeftOrResult),
6002         * (shiftRLeftOrResult),
6003         * (shiftRLong),
6004         * (shiftLLong): Implemented with pic16_emitpcode
6005         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6006         * (genLeftShift): Fixed bug, operand for shift by variable always
6007         was "and"ed with 0x0f,
6008         * (genLeftShiftLiteral),
6009         * (genrshTwo),
6010         * (genRightShiftLiteral): added debugging info,
6011         * (genrshFour): added comment,
6012         * (genRightShift): determined signedness from operand "left"
6013         instead of "result"
6014
6015 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * src/SDCCicode.c (geniCodeParms),
6018         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6019         function pointers, fixed function pointer bugs #861242 and #861896
6020
6021 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6022
6023         * device/include/c8051f000.h,
6024         * device/include/c8051f120.h,
6025         * device/include/c8051f300.h: added header files for Silicon
6026         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6027
6028 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6029
6030         * src/SDCCast.c (processParams): added new type flow and restructured
6031         (gatherAutoInit): added new type flow
6032         (addCast): cosmetic changes
6033         (getLeftResultType): added new type flow for array indices, patch
6034         provided by Stas, see FR #877103
6035         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6036         array index patch by Stas
6037         * src/SDCCast.h: added prototype getResultTypeFromType()
6038         * src/SDCCval.h,
6039         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6040         * src/pic/glue.c (pic14emitStaticSeg),
6041         * src/pic16/glue.c (pic16emitStaticSeg),
6042         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6043         for initialization of symbols
6044         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6045         * support/Util/SDCCerr.h:
6046         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6047         * .version: bumped version number to 2.3.8
6048         * device/include/Makefile.in (install),
6049         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6050         avoid warnings
6051
6052 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6053
6054         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6055         Slade Rich fixed an optimization bug
6056         * src/pic/pcodepeep.c,
6057         * src/pic/pcoderegs.c
6058         * doc/Makefile (install): added test for directory
6059
6060 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6061
6062         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6063         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6064         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6065         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6066         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6067         * as/mcs51/asexpr.c (term),
6068         * as/hc08/asexpr.c (term): fixed bug #887146
6069
6070 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6071
6072         * src/z80/gen.c (genMult): handle single byte result product
6073         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6074         DUMMY_READ_VOLATILE (fixed bug #886367)
6075
6076 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6077
6078         * support/regression/tests/libmullong.c: fixed logic, on little endian
6079         hosts we ended without a mullong_wrapper()
6080
6081 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6082
6083         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6084         virus/worm forged address usage.
6085
6086 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6087
6088         Fixed promotion, it should be done on AST level:
6089         * src/SDCCast.c (addCast): added promotion to int
6090         (decorateType): updated call to upCast()
6091         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6092         usualUnaryConversions()
6093
6094 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6095
6096         * support/regression/tests/literalop.c (mulWrapper): Added a
6097         wrapper to remove integer overflow warnings.
6098
6099         * support/regression/tests/float_trans.c: Made work on host.
6100
6101         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6102         location of sz80.
6103
6104         * support/regression/generate-cases.py (main): Changed from inline
6105         to a main method.
6106
6107         * doc/Makefile (install): Changed to depth first to get rid of
6108         missing directory install warning.
6109
6110         * as/Makefile (install-doc): Made work on Mac.
6111
6112 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6113
6114         * src/SDCCast.c: added an additional type flow in decorateType() of
6115         opposite direction, see feature request #860006; it's enabled at runtime
6116         by setting the environment variable SDCC_NEWTYPEFLOW
6117         * src/SDCCast.h: changed prototype of decorateType()
6118         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6119         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6120         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6121         see feature request #877103
6122         * src/SDCCval.c: updated call of decorateType()
6123         (valBitwise): fixed bug #882876
6124         (valMinus): added promotion
6125         (valLogicAndOr): result is unsigned
6126         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6127         * src/SDCCsymt.c (computeType),
6128         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6129         must not cause an unsigned operation
6130         * src/pic/glue (pic14emitRegularMap),
6131         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6132
6133 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6134
6135         * src/pic/pcode.c (PCodeID): commented out left over debug code
6136
6137 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6138
6139         * support/valdiag/tests/overflow.c: added shift tests
6140         * src/pic/device.c,
6141         * src/pic/gen.c,
6142         * src/pic/gen.h,
6143         * src/pic/glue.c,
6144         * src/pic/main.c,
6145         * src/pic/pcode.c,
6146         * src/pic/pcode.h,
6147         * src/pic/pcodepeep.c,
6148         * src/pic/pcoderegs.c,
6149         * src/pic/ralloc.c,
6150         * src/pic/ralloc.h: applied patch from Slade Rich;
6151         added support for multiple code pages and multiple RAM banks on the
6152         PIC 14 port. The ASM files now no longer simply assume all the
6153         code / RAM are in the same page / bank. This means the linker can
6154         safely allocate code/RAM of separate ASM files to different pages/banks.
6155         * doc/sdccman.lyx: added Slade's tips
6156         * src/mcs51/peeph.def: fixed bug #880768
6157
6158 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6161         * src/SDCCast.c (decorateType): fixed bug #880197
6162
6163 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6164
6165         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6166         getopt.h.
6167
6168         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6169         strtof is not part of C89 and isn't included with Mac OS X.
6170
6171 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6172
6173         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6174         shiftL2Left2Result): fixed bug #879326
6175         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6176         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6177         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6178         address fetch for clr instruction
6179         * device/lib/hc08/_mulint.c: created optimized assembly version
6180         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6181
6182 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6183
6184         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6185         proposed in FR #877103
6186
6187 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6188
6189         * src/SDCCval.c (cheapestVal): added missing checks
6190         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6191         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6192
6193 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6194
6195         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6196         equal operands
6197
6198 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6199
6200         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6201         loaded with the linker search paths (-L arguments) and the libraries
6202         to be linked with the current source (-l arguments). Changes
6203         currently will affect only the pic16 port.
6204         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6205         include path the port specific paths and port specific libraries,
6206         * gplink command now contains the $3 argument,
6207         * src/pic16/device.h,
6208         * src/pic16/device.c,: structure PIC_device is made public and
6209         renamed to PIC16_device, the same for variable Pics which is renamed
6210         to Pics16. Updated all references to them.
6211         * src/pic16/glue.c (pic16glue): corrected bug with code
6212         initialization which bypassed the variable initializations block.
6213
6214         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6215         COMPILE_FLAGS and added the --nostdinc option
6216
6217 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6218
6219         * device/include/mc68hc908jb8.h: Register defs for another member
6220         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6221
6222 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6223
6224         Documenting changes from previous commits.
6225         * configure.in (version 1.56),
6226         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6227         when generating output files to configure the pic16 library,
6228         but now I've commented it out, since gputils aren't installed in the
6229         SF compile farm, so library won't compile
6230
6231         * device/lib/Makefile.in (version 1.56): initially I've added in
6232         target 'all' the prerequestive 'model-pic16' so it compiled the
6233         pic16 library, but now I've commented it out for the same reasons
6234         above,
6235         * added targets 'model-pic16' and 'objects-pic16' to compile the
6236         library
6237         * added target 'port-specific-objects-pic16' to handle the
6238         generated libraries and copy them into the build/ directory
6239         * added target 'clean-intermediate-pic16' to clean intermediate
6240         files into pic16 directory
6241         * in target 'installdirs' added line to create directory pic16 in
6242         the installation path
6243
6244         * device/include/Makefile.in (version 1.11): in target 'install'
6245         added lines to copy all header files to installation path,
6246         * in target 'installdirs' added line create directory for pic16
6247         headers in the installation path
6248
6249 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6250
6251         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6252          a function call
6253
6254 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6255
6256         * configure,
6257         * device/lib/configure.in,
6258         * device/lib/configure: fixed for autoconf 2.57
6259
6260 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6261
6262         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6263         option so that it actually works. Made it specific to the z80, since
6264         the gbz80 doesn't have these kinds of I/O ports.
6265
6266 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6267
6268         * device/include/z180.h,
6269         * device/lib/_memcpy.c,
6270         * device/lib/_memmove.c,
6271         * device/lib/_mulint.c,
6272         * device/lib/ser_ir.c,
6273         * device/lib/ser_ir_cts_rts.c,
6274         * device/lib/_strcmp.c,
6275         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6276         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6277         portmode; added deprecation warning for bank= and protmode= forms.
6278         Also, guard against buffer overflow.
6279         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6280
6281 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6282
6283         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6284         changed interrupt vector table generation to only emit declared vectors.
6285         * device/include/Makefile.in: added missing backslash
6286         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6287
6288 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6289
6290         Mainly changes to support compilation of the device libraries
6291         * src/pic16/device.c: stack is allocated via symbol and not
6292         via literal number. The symbol is placed in the corresponding
6293         position of the data ram
6294         * (pic16_dump_section): relocatable and absolute uninitialized
6295         data are now emitted in sorted order to reduce section naming,
6296         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6297         weren't marked as being in the access bank,
6298
6299 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6300
6301         Added portion of GNU PIC Library under the directory
6302         device/include/pic16 and device/lib/pic16. These files
6303         contain the declarations of SFRs for the PIC18Fxx2 devices.
6304         The directory is initialized via configure from toplevel.
6305
6306 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6307
6308         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6309         the spilllocations to be compared correctly
6310
6311 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * src/SDCCast.c (decorateType): fixed bug introduced today
6314
6315 2004-01-12  Borut Razem <borut.razem AT siol.net>
6316
6317         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6318         doc/sdccman.lyx: upper case pragmas are deprecated
6319
6320 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6321
6322         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6323         in simpler and even better code
6324
6325 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6326
6327         * src/SDCCicode.c (operandOperation): fixed bug #874819
6328         * src/SDCCast.c (decorateType): fixed
6329         char foo (unsigned long ul) { return ul > 0; }
6330
6331 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6332
6333         * doc/sdccman.lyx: Moved and added some sections, small changes
6334         all over. Telling LaTeX to be less strict with word spacing
6335         to better keep the right margin. Changed some notes about
6336         maintainance of the ports in section 3.2.1 - is it OK like this?
6337
6338 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6339
6340         SDCC source changes:
6341         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6342         convilong): modified to inform the pic16 port that builtin functions
6343         are external
6344
6345         PIC16 PORT specific changes:
6346         * src/pic16/device.c pic16_dump_equates() added,
6347         processor registers declared internally by the port are emitted in
6348         the translation as equates,
6349         * src/pic16/gen.c: inline code is passed unprocessed to the
6350         translation,
6351         * (pic16_popGetLit2): fnuction modified to take second operand as
6352         pCodeOp pointer and not as literal,
6353         * (popRegFromIdx): prefixed with pic16_,
6354         * (pic16_popCombine2): modified to receive already allocated pCode
6355         operands,
6356         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6357         * (genFunction): initializes local stack frame and pushes on stack
6358         all the registers used by this function,
6359         * (genEndFunction): restores all registers from stack and restores
6360         stack frame,
6361         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6362         improvements,
6363         * (pic16glue): changed the program startup sequence,
6364         * added new dbName code 'A' for functions placed in absolute section
6365         * src/pic16/main.c: added function attribute _naked,
6366         * added pragma 'code' to place a fnuction at an absolute address,
6367         * added command line arguments --debug-ralloc and --pcode-verbose,
6368         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6369         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6370         * (pic16_newpCodeOpLit2): modified to take the second operand as
6371         pCodeOp pointer,
6372         * (pic16_printpBlock): modified to emit each function in a separate
6373         section,
6374         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6375         UPPER for immediate operands,
6376         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6377         instruction,
6378         * src/pic16/peeph.def: all peepholes with movff are commented out,
6379         because there is a problem in the pcode peep optimizer,
6380         * src/pic16/ralloc.c: the register allocator can now reuse local
6381         function symbols for another function. This saves register usage.
6382         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6383
6384         Added file src/pic16/NOTES with information about program writing on
6385         the current port version.
6386
6387 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6388
6389         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6390         and peephole 252 (array access)
6391
6392 2004-01-09  Borut Razem <borut.razem AT siol.net>
6393
6394         * src/SDCCmain.c : fixed #872250: -l command line defined library
6395           files are scanned before standard library files
6396
6397 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6398
6399         * src/SDCCast.c (decorateType): fixed bug #874046
6400
6401 2004-01-09  Borut Razem <borut.razem AT siol.net>
6402
6403         * support/scripts/sdcc.nsi: remove previous installation
6404
6405 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6406
6407         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6408         bytes for last interrupt vector (mcs51)
6409         * sdcc.spec: fixed typo
6410
6411 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6412
6413         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6414         gen51Code): more efficient parameter receive for --model-large
6415         ("bug" #845294)
6416
6417 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * src/ds390/main.c,
6420         * src/z80/main.c: added missed needLinkerScript flags (more than
6421         one port structure defined in these file)
6422         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6423         bug #795325
6424
6425 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6426
6427         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6428         * src/port.h: added flag needLinkerScript in port->linker
6429         structure to inform whether to create a .lnk file or not,
6430         * src/avr/main.c,
6431         * src/ds390/main.c,
6432         * src/hc08/main.c,
6433         * src/mcs51/main.c,
6434         * src/pic/main.c,
6435         * src/pic16/main.c,
6436         * src/xa51/main.c,
6437         * src/z80/main.c: changed appropriately to configure
6438         needLinkerScript flag
6439         * src/pic/gen.c,
6440         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6441         * src/pic/glue.c: added variable udata_section_name to
6442         override default uninitialized data segment definition for
6443         devices only with SHAREBANK memory (reported from Erik Epetrich)
6444         * (pic14emitOverlay): modified to emit a commented overlay segment
6445         directive when no overlay data exist
6446         * (picglue): modified to emit uninitialized data segment
6447         according to udata_section_name
6448         * src/pic/main.c (_pic14_parseOptions): added command line
6449         options --udata-section-name=[name] to override default
6450         udata definition name
6451         * modified _linkCmd and _asmCmd to include compiler passed
6452         arguments via -W option
6453         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6454         object file from '.rel' to '.o' in port->linker structure,
6455         changed size of fptr from 2 to 3 in port structure
6456
6457 2004-01-07  Borut Razem <borut.razem AT siol.net>
6458
6459         * support/scripts/sdcc.nsi: update PATH
6460         * support/scripts/sdcc.ico: craeted
6461
6462 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * device/include/Makefile.in: fix install
6465         * doc/Makefile: fix install
6466
6467 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6468
6469         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6470         in bug #860505
6471         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6472         how the function variable allocation summary is displayed; also
6473         include information about variables allocated to the overlay
6474         segment
6475
6476 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6477
6478         * as/mcs51/lkmain.c: Help about -Y option
6479         * as/mcs51/lkarea.c: Fixed gcc warnings
6480
6481 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6482
6483         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6484         fixed warning
6485         * support/valdiag/tests/overflow.c: added
6486         * src/SDCCast.c (decorateType),
6487         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6488         LEFT_OP (left shift)
6489
6490 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6491
6492         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6493         (default behaviour).
6494
6495 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6496
6497         A python script to validate compiler diagnostic messages. It can be
6498         used to verify that sdcc complains about bad c source code and
6499         gives a good location of the error.
6500         * support/valdiag/Makefile,
6501         * support/valdiag/valdiag.py,
6502         * support/valdiag/tests/*
6503
6504 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6507         * src/SDCCsymt.c (newEnumType),
6508         * src/SDCCsymt.h
6509         * support/Util/SDCCerr.c,
6510         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6511         enum related bugs.
6512         * support/regression/tests/enum.c: added test for enum values that
6513         require at least 2 bytes of storage.
6514
6515 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6516
6517         * src/common.h: added ifndef/define/endif macros
6518         around the header file.
6519         Bug reported from Jesus Calvino-Fraga
6520
6521 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6522
6523         * sdcc.spec: updated
6524         * device/include/Makefile.in: don't install CVS directories
6525         * device/lib/Makefile.in: added removal of CVS directories after install
6526         * doc/Makefile: fixed install, added local_icons
6527         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6528         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6529         * src/ds390/gen.c (genRightShift): fixed bug #870788
6530         * src/SDCCast.c (decorateType): fixed bug #870781
6531
6532 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6533
6534         PIC16 port related changes:
6535         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6536         added variable stackPos,
6537
6538         * gen.c: genCall, assignResultValue: added support for
6539         pushing/retrieving function parameters to/from stack,
6540         genFunction,genEndFunction: setup stack frame for the
6541         generated function,
6542         genAddrOf: will be changed according to bug 863624
6543
6544         * added files genutils.c and genutils.h which contain gen*
6545         debugged and optimised functions extracted from gen.c
6546
6547         * glue.c: added variable 'externs' which holds extern symbols,
6548         pic16emitRegularMap: is modified to properly handle relocatable
6549          symbols under the new scheme,
6550         pic16createInterruptVect: is modified
6551         pic16printPublics: is modified to emit 'global' assembler directives,
6552         added pic16_printExterns to print extern symbols,
6553         pic16glue: initializes stack/frame pointer in the beginning of
6554         the assembly output. Temporary hack, will be corrected later,
6555         because gplink yet does not support stack and SDCC does not
6556         yet support a type of crt0.o object to create the final binary.
6557
6558         * Removed many lines that contain 8051 legacy code.
6559         * The code is finally placed under a 'code' directive.
6560         * Added port specific options.
6561
6562         * _process_pragma: simplified since now we do not need *special*
6563         include file to define SFR registers. But a separate header
6564         will be needed. This will be developed later.
6565         * _pic16_parseOptions: added, parses port specific options:
6566         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6567         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6568         --preplace-udata-with=
6569
6570         * _pic16_setDefaultOptions: modified to initialize section names,
6571         but hack is temporarly out of order since it needs improvement.
6572         * _pic16_genAssemblerPreamble: configuration words are emitted by
6573         their address instead of their name. This part is incomplete and
6574         supports only the 18Fxx2 devices. Other devices will emit an error
6575         during assembly since they do not contain the same set of config
6576         registers
6577         * _pic16_genIVT: is modified,
6578
6579         * pcode.c: added definitions for some hardware registers that are needed
6580         for stack support
6581         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6582         All PCI entries are updated. Now LFSR is supported.
6583         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6584         * added pic16_newpCodeOpLit2 to support instructions with
6585         two literal arguments
6586         * pic16_pCode2str: corrected code that emits assembler instructions
6587         with two literal operands and those that have an access bit modifier
6588         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6589         this fixes a bug which caused some labels to be lost, when an
6590         assembler directive was added, i.e. banksel,
6591         * pic16_FixRegisterBanking: improved logic that causes the insertion
6592         of bank switching,
6593         * InlineFunction: functions that are called once, are not any more
6594         inlined. This can be a port option in the future,
6595
6596         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6597
6598         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6599         hold the corresponding uninitialized symbols,
6600         * pic16_allocProcessorRegister: registers have explicit marked the
6601         accessBank field,
6602         * pic16_allocInternalRegister: registers are explicit marked as
6603         not used,
6604         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6605         processing list, so bit registers were lost,
6606         *
6607
6608         * ralloc.h: added field 'accessBank' and original symbol operand
6609         in register definition,
6610         * removed the field isMapped from register definition,
6611
6612         ** Several functions have been removed from various sources:
6613         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6614         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6615         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6616         pic16_assignRelocatableRegisters
6617
6618         ** others have been introduced:
6619         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6620         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6621
6622 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6623
6624         * support/scripts/inc2h.pl: changed definition of BIT_AT
6625         to emit 'sbit at' instead of 'bit at'. This was a request.
6626
6627         PIC16 port related preliminary changes:
6628         * gen.c: prefixed function popRegFromString with
6629         pic16_ and all references to it corrected
6630         * pcode.c: all pic16_pc_* hardware registers prefixed
6631         with underscore (_),
6632         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6633         * ralloc.c: newReg(): when register is REG_SFR then
6634         set address to rIdx,
6635         pic16_allocProcessorRegister(): marks register wasUsed=0
6636         pic16_writeUsedRegs(): added a call to assign processor
6637         registers via pic16_assignFixedRegisters
6638
6639 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6640
6641         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6642         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6643         variables in unused register banks.  Also the SSEG is placed
6644         wherever there is enough space for it, and IDATA can be anywhere
6645         in internal RAM.  For now compile using -Wl-Y[stack_size].
6646         The mem file is different for this option as well, since it
6647         makes no sense of talking about DSEG lenght.
6648
6649 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6650
6651         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6652         in certain cases, e.g. when ROM assignment, patch provided
6653         from Albert den Haan.
6654
6655 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6656
6657         Many signedness and type propagation fixes:
6658         * src/SDCCicode.c: made geniCodeCast() static
6659         replaced SPEC_ by IS_ (cosmetic)
6660         (operandOperation): fixed div and mod operation
6661         (usualBinaryConversions): added support for promotion of char
6662         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6663         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6664         (geniCodeAdd): an array index will stay unsigned, even if promoted
6665         from char to int
6666         (geniCodeArray): ditto
6667         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6668         * src/SDCCsymt.c (computeType): added more support for char;
6669         promotion of char is selectable by promoteCharToInt, fixed signedness
6670         for all cases
6671         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6672         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6673         * src/SDCCval (val*): replaced signedness calculation by
6674         computeType()
6675         rearranged if-branches (cosmetic)
6676         (valShift): added warning W_SHIFT_CHANGED
6677         (valCompare): fixed problem with different types
6678         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6679         * support/regression/tests/literalop.c: added many cases
6680         * support/regression/tests/ast_constant_folding.c: changed finally to
6681         'unsigned int'
6682         * .version: new year, new version: 2.3.7
6683         * src/SDCCmain.c (main): applied patch #866468
6684         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6685         provided by Scott Bronson
6686         * doc/sdccman.lyx: updated documentation for sdcdb
6687         updated and added chapter tips
6688
6689 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6690
6691         * src/SDCCsymt.h: missing from yesterday's commits
6692
6693 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6694
6695         * src/SDCC.y (struct_or_union_specifier),
6696         * support/Util/SDCCerr.c,
6697         * support/Util/SDCCerr.h: verify that struct & union tags are used
6698         as declared.
6699
6700 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/SDCCglobl.h: missing from yesterday's commits
6703
6704 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6707         sft_attributes, struct_declaration, parameter_declaration,
6708         type_name, start_block, declaration_list),
6709         * src/SDCC.lex (check_type): support redefinition of typedef names
6710
6711 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6712
6713         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6714         aligned xdata arrays. Erik helped me with the if clause.
6715
6716 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6717
6718         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6719         warning
6720
6721 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * src/SDCCast.h,
6724         * src/SDCCast.c (newAst_),
6725         * src/SDCCicode.h,
6726         * src/SDCCicode.c (ast2iCode, newiCode),
6727         * src/SDCCglobl.h,
6728         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6729         expr, statement, expression_statement, selection_statement,
6730         iteration_statement, expr_opt, jump_statement): foundation for tracking
6731         sequence points
6732         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6733         point code too)
6734
6735 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         * support/Util/SDCCerr.c,
6738         * src/SDCCast.h,
6739         * src/SDCCast.c (createCase, createDefault, decorateType),
6740         * src/SDCClabel.c (labelUnreach),
6741         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6742         to error messages.
6743         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6744         (with thanks to Stas Sergeev)
6745         * device/include/time.h,
6746         * device/lib/time.c (CheckTime): suppress unreachable code warning
6747
6748 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6749
6750         * src/SDCCast.c (createIvalCharPtr),
6751         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6752         bug #753752)
6753         * support/regression/tests/nullstring.c: tests for these two bugs
6754
6755 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6756
6757         * support/Util/SDCCerr.h,
6758         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6759         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6760         about storage class and 'at' used inside struct or union
6761         * src/SDCCBBlock.c (iCodeFromeBBlock),
6762         * src/SDCCcse.c (ifxOptimize),
6763         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6764         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6765         printIval, emitStaticSeg, emitOverlay),
6766         * src/SDCClabel.c (deleteIfx),
6767         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6768         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6769         gatherAutoInit, processParms),
6770         * support/Util/SDCCerr.h,
6771         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6772         reporting for post-parse errors.
6773
6774 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6775
6776         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6777         implicit casts via union; they don't work on big endian systems
6778         (possible fix for bug #861138)
6779
6780 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6781
6782         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6783         * src/mcs51/main.c: fixed the fix for bug #737001
6784
6785 2003-12-15  Borut Razem <borut.razem AT siol.net>
6786
6787         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6788
6789 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6790
6791         * support/makebin/makebin.c: put output in binary mode
6792
6793 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6794
6795         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6796         xdata and data memory on startup. Set the environment variable
6797         SDCC_NOGENRAMCLEAR to disable this.
6798         * src/mcs51/peephole.def,
6799         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6800         (allows non-interrupt and interrupt code to safely compete for a resource
6801         without the non-interrupt code having to disable interrupts)
6802
6803 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6804
6805         * src/SDCCicode.c (geniCodeAdd),
6806         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6807         with valFromType if type might be a pointer and host is big endian).
6808         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6809         types, not just integer types.
6810         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6811         multiply defined with mismatching "at" address.
6812
6813 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6814
6815         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6816         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6817         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6818         with embedded nulls (fixed bug #753752)
6819
6820 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6821
6822         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6823         Apparently this did not see much testing (endless loop)
6824
6825 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6826
6827         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6828
6829 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6832         gracefully handle NULL memmap pointers
6833
6834 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6837         instead of deleting the iCode when an operand is volatile
6838         * src/z80/gen.c (genDummyRead),
6839         * src/mcs51/gen.c (genDummyRead),
6840         * src/ds390/gen.c (genDummyRead),
6841         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6842         not just IC_RIGHT
6843         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6844         * src/SDCC.y: fixed bug #850420
6845
6846 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         Applied z80 i/o port patch from Peter Townson and fixed some operators
6849         to better handle operands in A register.
6850         * device/include/z180.h
6851         * src/SDCC.y
6852         * src/SDCCglue.c
6853         * src/z80/gen.c
6854         * src/z80/gen.h
6855         * src/z80/main.c
6856         * src/z80/peeph-z80.def
6857         * src/z80/peeph.def
6858         * src/z80/z80.h
6859
6860 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6861
6862         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6863
6864 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6865
6866         * device/lib/hc08/_mullong.c: Removed extra #endif
6867
6868 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         * sim/ucsim/hc08.src/inst.cc,
6871         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6872         carries from x to h
6873         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6874         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6875         * device/include/stdarg.h: fixed varargs for hc08
6876         * device/lib/Makefile.in,
6877         * device/lib/hc08/Makefile,
6878         * device/lib/hc08/_mulint.c,
6879         * device/lib/hc08/_mullong.c: fixed some endian problems
6880
6881 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6882
6883         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6884         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6885         * device/lib/_gptrget.c,
6886         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6887
6888 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6889
6890         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6891         * src/SDCCast.c (astErrors): fixed bug #846007
6892         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6893
6894 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6895
6896         * src/SDCCast.c (decorateType): disabled a transformation I added in
6897         revision 1.188 (access to fields of a structure at an absolute address);
6898         it breaks with bitfields, extern declarations, and gcse analysis.
6899         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6900         could be assigned through a pointer, so don't complain.
6901         * src/SDCCast.c (astErrors),
6902         * src/SDCCast.h,
6903         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6904
6905 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6906
6907         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6908         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6909         output of __config directives, since gpasm now supports them
6910         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6911         pre-processor macro, i.e. -DMCU=p18f452
6912         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6913         and modified to handle 'cast' icode similarly to '=' icode
6914         * src/pic16/device.h (typedef struct PIC_device): added field
6915         'extMIface' to indicate that chip has external memory interface
6916         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6917         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6918         18F8720
6919
6920 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6921
6922         * src/SDCC.y (pointer): fixed bug #846006
6923         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6924         * src/SDCCast.c (decorateType): fixed bug #846009
6925         * src/ds390/peeph.def,
6926         * src/ds390/gen.c (genAnd, genOr),
6927         * src/mcs51/peeph.def,
6928         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6929
6930 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6931
6932         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6933         * src/SDCCdflow.c
6934         * src/SDCCcse.c
6935         * src/SDCCcse.h
6936         * src/SDCCBBlock.h
6937         * src/SDCCBBlock.c
6938
6939 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6940
6941         fixed bug #845089
6942         * src/SDCCbitv.h,
6943         * src/SDCCbitv.c: added function to free a bitvector
6944         * src/SDCClrange.h,
6945         * src/SDCClrange.c: added function to recompute the liveranges
6946         * src/avr/ralloc.c,
6947         * src/ds390/ralloc.c,
6948         * src/hc08/ralloc.c,
6949         * src/mcs51/ralloc.c,
6950         * src/pic/ralloc.c,
6951         * src/pic16/ralloc.c,
6952         * src/xa51/ralloc.c,
6953         * src/z80/ralloc.c: recompute the liveranges after register packing
6954
6955 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6956
6957         * src/SDCCloop.c (newInduction): fixed bug #845630
6958
6959 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6960
6961         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6962         inadvertantly left behind from my 2003-11-12 change
6963
6964 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6965
6966         Updated headers I neglected to commit yesterday.
6967         * src/SDCClrange.h,
6968         * src/SDCCicode.h
6969
6970 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6971
6972         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6973         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6974         * src/SDCCopt.c (eBBlockFromiCode),
6975         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6976         the creation of the key hash table from the sequencing so it can be used
6977         earlier (for some GCSE bug fixes still pending)
6978
6979 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6980
6981         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6982         * support/regression/tests/addsub.c: testing genPlus shortcut
6983
6984 2003-11-15  Borut Razem <borut.razem AT siol.net>
6985
6986         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6987
6988 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6989
6990         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6991         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6992         ordering is immaterial.
6993         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6994
6995 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6996
6997         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6998         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6999         (SIGSEV) of bug #840381
7000         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7001         unlink new file before rename if new and old filenames are the same)
7002
7003 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7004
7005         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7006         uninitialized variables) for the mcs51. Set environment variable
7007         SDCC_GENRAMCLEAR to test.
7008         xdata initialization slightly shorter
7009
7010 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7011
7012         * src/SDCCsymt.h,
7013         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7014         #838241 & 780691 (basicly the same bug)
7015         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7016         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7017
7018 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7019
7020         * src/SDCCmain.c (linkEdit): "fix" #834252
7021
7022 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7023
7024         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7025         * src/SDCCast.h,
7026         * src/SDCC.y: fixed bug #819403
7027
7028 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7031         the reentrant attribute.
7032         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7033         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7034         simulation
7035         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7036         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7037         erroneously reduced to a literal.
7038         * src/hc08/ralloc.c (packRegisters, rematStr),
7039         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7040         some cases
7041
7042 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7043
7044         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7045         * doc/sdccman.lyx: changed from 'article' to 'book'
7046         * doc/Makefile: readded test_suite_spec and cdbfileformat
7047
7048 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * device/include/stdlib.h: include malloc.h to comply with ANSI
7051         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7052
7053 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7054
7055         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7056         * doc/clean.mk: also remove *.out files
7057         * doc/sdccman.lyx: some additions, larger top/bottom margins
7058
7059 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7060
7061         * src/SDCC.y: fixed bug #837365
7062         * support/regression/tests/bitopcse.c
7063         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7064         a symbol (might be valop instead)
7065         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7066         * device/lib/clean.mk: added hc08 to the cleaning list
7067
7068 2003-11-04  Borut Razem <borut.razem AT siol.net>
7069
7070         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7071           made 2003-11-04
7072         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7073           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7074           malloc is declared in standard stdlib.h
7075
7076 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7077
7078         * device/lib/hc08/Makefile: need to clean .rel not .o files
7079         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7080
7081 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7082
7083         * src/port.h,
7084         * src/hc08/main.c,
7085         * src/mcs51/main.c,
7086         * src/ds390/main.c,
7087         * src/z80/main.c,
7088         * src/avr/main.c,
7089         * src/pic/main.c,
7090         * src/pic16/main.c,
7091         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7092         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7093         tests (which uses the port's oclsExpense function)
7094         * src/SDCC.y,
7095         * src/SDCCast.c,
7096         * src/SDCCicode.c,
7097         * src/hc08/gen.c,
7098         * src/ds390/gen.c,
7099         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7100
7101 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7102
7103         * src/SDCCcse.c (ifxOptimize),
7104         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7105         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7106         deleting the IFX iCode.
7107         * src/hc08/ralloc.c: reduced unneeded slocs
7108         * src/hc08/gen.c: fixed bug in asmopToBoolean
7109
7110 2003-11-04  Borut Razem <borut.razem AT siol.net>
7111
7112         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7113           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7114           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7115           transferred to configure
7116
7117 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7118
7119         Use headers defined in the C[++] standards:
7120         * sim/ucsim/gui.src/serio.src/fileio.cc
7121         * sim/ucsim/gui.src/serio.src/frontend.cc
7122         * sim/ucsim/gui.src/serio.src/main.cc
7123         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7124         * support/Util/NewAlloc.c
7125         * as/hc08/lklibr.c
7126         * as/mcs51/lklibr.c
7127         * as/z80/aslist.c
7128         * as/z80/assym.c
7129
7130 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7131
7132         * Added MSVC projects for hc08 assembler and linker:
7133         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7134         /as/hc08/link_hc08.dsp
7135
7136 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7137
7138         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7139
7140 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7141
7142         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7143
7144 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7145
7146         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7147
7148 2003-10-31  Borut Razem <borut.razem AT siol.net>
7149
7150         * support/cpp2/cpplib.h,
7151           support/cpp2/cpplib.c,
7152           support/cpp2/cpplex.c,
7153           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7154           to switch _asm block preprocessing on / off. Default is
7155           #pragma preproc_asm +
7156
7157 2003-10-31  Borut Razem <borut.razem AT siol.net>
7158
7159         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7160           when outputting comment blocks (when executed with -C option) and
7161           _asm (SDCPP specific) blocks
7162
7163 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7164
7165         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7166
7167 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7168
7169         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7170
7171 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7172
7173         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7174         * src/SDCCast.c (decorateType): fixed bug #832664
7175
7176 2003-10-31  Borut Razem <borut.razem AT siol.net>
7177
7178         * support\cpp2\cpplex.c: fixed for SDCPP:
7179           comments(when executed with -C option) and _asm blocks
7180           were included even if they where in skipped #if block.
7181           Applied solution from GCC cpp 3.3.2
7182
7183 2003-10-31  Borut Razem <borut.razem AT siol.net>
7184
7185         * src/SDCC.lex: sdcc now understands both formats:
7186           '# <line_number> <file_name>' and
7187           '#line <line_number> <file_name>'
7188         * support/cpp2/cppmain.c: sdcpp now generates the standard
7189           '# <line_number> <file_name>' instead of former
7190           '#line <line_number> <file_name>'
7191
7192 2003-10-30  Borut Razem <borut.razem AT siol.net>
7193
7194         * support/cpp2/cpphash.h,
7195         * support/cpp2/cpplib.h
7196         * support/cpp2/cpplex.c,
7197         * support/cpp2/cppmain.c,
7198         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7199
7200 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         Fixed a number of problems revealed by bug #827883.
7203         * src/SDCCloop.c (loopInvariants): Spill location of the
7204         result operand should be recomputed if extracted from
7205         a loop. Also, don't extract assignments of an iTemp
7206         from a literal.
7207         * src/SDCCast.c (isConformingBody): loop reversal should
7208         not occur if the control variable is involved with a
7209         relational operator.
7210
7211 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7212
7213         * .version: bumped to 2.3.6 to reflect the big improvements
7214         made by Erik and Klaus. Thanks!
7215
7216 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7217
7218         Replaced the livrange code.
7219         * src/SDCClrange.c: added new LR code
7220         * src/SDCCloop.c,
7221         * src/SDCCBBlock.h: removed remainig parts from old LR code
7222         * src/ds390/ralloc.c,
7223         * src/ds390/gen.c: minor fixes to make it work with new code
7224
7225 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7226
7227         * as/hc08/asm.h,
7228         * as/hc08/lkrloc.c,
7229         * src/hc08/gen.c,
7230         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7231         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7232         (tweaked fix for bug #818696)
7233
7234 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7235
7236         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7237
7238 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7239
7240         * src/SDCCmain.c,
7241         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7242         * src/mcs51/gen.c (gencjneshort),
7243         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7244         more efficient (per Scott Bronson's suggestion)
7245
7246 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7247
7248         Extended the semantics of the critical keyword to include
7249         individual statements. See RFE #827755 and #799831
7250         * src/SDCC.y
7251         * src/SDCCicode.c
7252         * src/SDCCopt.c
7253         * src/SDCCast.c
7254         * support/Util/SDCCerr.c
7255         * support/Util/SDCCerr.h
7256         * src/mcs51/gen.c
7257         * src/ds390/gen.c
7258         * src/hc08/gen.c
7259
7260 2003-10-19  Borut Razem <borut.razem AT siol.net>
7261
7262         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7263
7264 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7265
7266         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7267         Fixed bug #818696
7268         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7269         and predecrement operand is displayed
7270
7271 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7272
7273         * src/SDCCval.c (valMinus): fixed bug #826041
7274
7275 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7276
7277         Some hc08 related updates that I missed earlier
7278         * sim/ucsim/stypes.h
7279         * support/regression/ports/hc08/spec.mk
7280
7281 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7282
7283         New target "hc08" for the Motorola 68hc08 family of micros
7284
7285         * configure
7286         * configure.in
7287         * Makefile
7288         * src/hc08/*
7289         * src/SDCCmain.c
7290         * src/port.h
7291         * sim/ucsim/hc08.src/*
7292         * sim/ucsim/configure.in
7293         * src/ucsim/configure
7294         * sim/ucsim/packages_in.mk
7295         * as/hc08/*
7296         * as/Makefile
7297         * device/include/mc68hc908qy.h
7298         * device/lib/hc08/*
7299         * device/lib/Makefile.in
7300         * support/regression/ports/hc08/*
7301         * support/regression/Makefile
7302
7303 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7304
7305         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7306         regression test
7307         * src/ds390/gen.c (genCast): fixed bug #821957
7308
7309 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * device/lib/logf.c: "fixed" overlay bug
7312         * support/regression/ports/host/spec.mk: added m library
7313         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7314         * support/regression/tests/float_trans: added (for Eric)
7315
7316 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7317
7318         * src/mcs51/gen.c (genCpl): fixed bug
7319         http://sf.net/mailarchive/message.php?msg_id=6263915
7320
7321 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7322
7323         * src/SDCCast.c (decorateType): added extended constant folding
7324         * src/SDCCsymt.c (computeType): cleanup
7325         * src/SDCCval.c (valShift): minor optimization
7326         * support/regression/tests/ast_constant_folding.c: added
7327
7328 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7329
7330         * src/SDCCmain.c: removed some unintended changes
7331
7332 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7333
7334         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7335         * src/z80/gen.c: fixed part of bug #817589
7336         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7337
7338 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7339
7340         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7341         * src/SDCCcflow.c
7342         * src/SDCCcse.c
7343         * src/SDCCdflow.c
7344         * src/SDCClabel.c
7345         * src/SDCClrange.c
7346         * src/SDCCmem.c
7347         * src/SDCCopt.c
7348         * src/SDCCpeeph.c
7349         * src/SDCCset.c
7350         * src/avr/ralloc.c
7351         * src/ds390/ralloc.c
7352         * src/izt/ralloc.c
7353         * src/mcs51/ralloc.c
7354         * src/pic/ralloc.c
7355         * src/pic16/ralloc.c
7356         * src/xa51/ralloc.c
7357         * src/z80/ralloc.c
7358         * src/z80/gen.c: removed unused label "release:"
7359
7360 2003-10-06  Borut Razem <borut.razem AT siol.net>
7361
7362         * src/SDCC.lex: removed definition of unused variables
7363           save_optimize and save_options
7364
7365 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7366
7367         * clean.mk: removed '=' in "-maxdepth=1"
7368         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7369         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7370
7371 2003-10-06  Borut Razem <borut.razem AT siol.net>
7372
7373         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7374           my_unput() replaced by unput()
7375
7376 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7377
7378         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7379         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7380         type-punned pointer will break strict-aliasing rules"
7381         Old LR behaviour is again default; Klaus' LR can be choosen by
7382         defining the environment variable LRKLAUS
7383         * src/SDCCBBlock.h
7384         * src/SDCCloop.c
7385         * src/SDCClrange.c
7386         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7387         * clean.mk: fixed removal of files in bin/CVS/
7388         * device/lib/clean.mk: fixed removal of directories small and large
7389         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7390         * src/SDCCicode.c,
7391         * src/SDCCval.c: removed superflous test for pedantic
7392
7393 2003-10-05  Borut Razem <borut.razem AT siol.net>
7394
7395         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7396           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7397           message "unmatched #pragma SAVE and #pragma RESTORE"
7398
7399 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7400
7401         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7402           assembly, critical functions, atomic, nojtbound)
7403
7404 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7405
7406         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7407         * src/SDCCBBlock.h
7408         * src/SDCCloop.c
7409         * src/SDCCloop.h
7410         * src/SDCClrange.c
7411
7412 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7413
7414         * src/z80/gen.h,
7415         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7416         * src/mcs51/gen.h
7417         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7418         * src/ds390/gen.h
7419         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7420         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7421         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7422
7423 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7424
7425         * src/z80/gen.c (genRet): fixed bug #524753
7426         * src/z80/gen.c (genCast): fixed internal error on cast from
7427         pointer to long
7428         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7429         fix for bug #477835 to the z80
7430         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7431         for tracking iCodes in the peephole optimizer for z80
7432
7433 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7434
7435         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7436         the other part of bug #814548
7437         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7438
7439 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7440
7441         * src/SDCCcse.c: fixed part of bug #814548
7442
7443 2003-09-28  Borut Razem <borut.razem AT siol.net>
7444
7445         * src/asm.c: rewrite of printILine() to use temporary file instead
7446           a pipe
7447         * src/xa51/main.c: commented out declaration of int rewinds
7448
7449 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7450
7451         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7452
7453 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7454
7455         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7456         * src/asm.c (printILine): Fixed bug #811015
7457
7458 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7459
7460         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7461         freeing.
7462
7463 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7464
7465         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7466         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7467         to correctly handle general case of AOP_PAIRPTR
7468         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7469
7470 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7471
7472         * src/mcs51/ralloc.c (fillGaps),
7473         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7474         register positioning bug)
7475
7476 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7477
7478         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7479
7480 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7481
7482         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7483         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7484         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7485         (ralloc doesn't intentionally do this now, but perhaps later)
7486         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7487         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7488         register positioning bugs (Fixed bug #762602 and #795325)
7489         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7490         (Fixed bug #808779)
7491         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7492         lines that --i-code-in-asm generates
7493
7494 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7495
7496         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7497         trying to fclose a FILE* that was already closed.
7498
7499 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7500
7501         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7502         of const struct should be treated as if const themselves)
7503
7504 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7507
7508 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7509
7510         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7511         Unix (/n) and DOS (/r/n) line terminations.
7512
7513 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7514
7515         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7516         bug #613775
7517
7518 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/mcs51/gen.c (genFunction, genEndFunction),
7521         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7522         and restore of EA so that stack offsets to parameters are
7523         correct when using both critical and reentrant/stack-auto.
7524         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7525         size (can be triggered in error if sloc is shared between
7526         different sized objects)
7527         * device/include/float.h: fixed macros to explicitly use
7528         unsigned long where needed
7529
7530 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7531
7532         Feature req. 799831: added code to allow nesting of critical functions
7533         * src/mcs51/gen.c (genFunction, genEndFunction)
7534         * src/ds390/gen.c (genFunction, genEndFunction)
7535
7536 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7537
7538         * src/SDCCsymt.c (sclsFromPtr),
7539         * src/SDCCsymt.h,
7540         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7541         support for standard C idiom of memory mapped variables; for
7542         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7543         to xdata int at 0x1234 tempvar = 1.
7544         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7545         provided by Akiya ISHIDA
7546
7547 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7548
7549         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7550         * src/SDCCval.c (constVal): added reduction from int to char
7551         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7552         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7553         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7554         to ignore the sign
7555         * support/regression/tests/shifts.c: fixed
7556
7557 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * src/z80/gen.c (genXor): Fixed bug #805445
7560
7561 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7562
7563         Fixed bug #621531 (const & volatile confusion in the type chain).
7564         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7565         refer to the const or volatile state of the pointer itself.
7566
7567         * src/SDCCast.c
7568         * src/SDCCglue.c
7569         * src/SDCCicode.c
7570         * src/SDCCsymt.c
7571         * src/SDCCval.c
7572         * src/SDCC.y
7573         * src/SDCCsymt.h
7574         * src/pic/gen.c
7575         * src/pic/ralloc.c
7576         * src/pic16/gen.c
7577         * src/pic16/ralloc.c
7578         * support/regression/tests/const.c
7579
7580 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7581
7582         When checking for duplicated modules, use absolute paths
7583         instead of relative paths.  Files changed:
7584
7585         * as/mcs51/lklib.c
7586         * link/z80/lklib.c
7587
7588 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7591
7592 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7593
7594         * device/include/string.h: added size_t typedef, changed
7595         prototypes to use size_t, eliminated separate reentrant and
7596         non-reentrant declarations, added _memmove declaration
7597         * device/lib/_memcpy.c: changed to use size_t instead of int,
7598         changed /4 to >>2 to avoid division library call
7599         * device/lib/_memcmp.c,
7600         * device/lib/_memset.c,
7601         * device/lib/_strncat.c,
7602         * device/lib/_strncpy.c,
7603         * device/lib/_strncmp.c: changed to use size_t instead of int
7604         * device/lib/_memmove.c: new file (fixed bug #772294)
7605         * device/lib/Makefile.in: added _memmove.c
7606         * device/lib/z80/asm_strings.s: fixed bug #772290
7607         * support/regression/tests/bitfields.c: attempt to fix host assertion
7608         failure on amd64-unknown-linux2.2
7609
7610 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7611
7612         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7613         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7614         * as/z80/asmain.c (main): fixed bug #801766
7615
7616 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7617
7618         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7619         compilers
7620
7621 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7622
7623         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7624         reported in bug #800609
7625
7626 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7627
7628         * Top header beautifications in src/pic16 directory:
7629           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7630           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7631           pcoderegs.h, ralloc.c, ralloc.h
7632         * main.c: added top header and GPL license notice
7633         * pcode.c: fixed the if-conditional warning
7634
7635 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7636
7637         * device/lib/_mullong.c: replaced int by short for gcc
7638
7639 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7640
7641         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7642         and JUMPTABLE iCodes properly now (worked by accident before)
7643         * src/mcs51/gen.c (leftRightUseAcc),
7644         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7645         iCode properly now. Use getSize instead of nRegs since a & b
7646         aren't part of the nRegs tally.
7647
7648 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7649
7650         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7651         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7652           before instructions that use the _STATUS register
7653
7654 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7657         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7658         fetching of the pointer
7659         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7660         copied from genNearPointerSet()
7661         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7662         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7663         If they pop r0/r1 they must be called in the opposite order than aopOp().
7664         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7665         (resp. --stack-auto), prepared for --xstack
7666
7667 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7668
7669         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7670
7671 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7672
7673         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7674         these ports have their own __sdcc_external_start()
7675
7676 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7677
7678         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7679         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7680         type for bits was changed. It resulted in bit variables becoming
7681         global, which is not permitted in PIC 14 assembly output.
7682
7683 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7684
7685         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7686
7687 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7688
7689         Z80 and MCS51 linkers complaint if a public symbol is defined
7690         in more than one library module:
7691
7692         * as/mcs51/lklib.c
7693         * link/z80/lklib.c
7694         * as/mcs51/Makefile.in
7695
7696 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         A few small changes that speed up the peephole optimizer.
7699
7700         * src/SDCCpeeph.c
7701
7702 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7703
7704         Try to make the peephole optimizer smarter by maintaining
7705         an association between the assembly source code and the
7706         iCodes that originated them. Put this information to use
7707         with a new peephole rule condition "notVolatile" so that
7708         the rules can be aggressive yet still safe.
7709
7710         * src/SDCCpeeph.c
7711         * src/SDCCpeeph.h
7712         * src/mcs51/gen.c
7713         * src/mcs51/peeph.def
7714
7715 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7716
7717         Fixed bug #741761
7718
7719         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7720         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7721         if the left or right operand symbols have the accuse flag set.
7722
7723 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7724
7725         Changed the type of the result of the ! (NOT) operator to char;
7726         previously it returned the same type as the source. This allows
7727         us to eliminate all the genFloatNot functions (all of its target
7728         implementations were very buggy) since !float can use the same
7729         code as !long now.
7730
7731         * src/SDCCicode.c (ast2iCode): ! returns char
7732         * src/mcs51/gen.c (genNot, genNotFloat),
7733         * src/ds390/gen.c (genNot, genNotFloat),
7734         * src/z80/gen.c (genNot, genNotFloat),
7735         * src/pic/gen.c (genNot, genNotFloat),
7736         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7737
7738 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7739
7740         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7741         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7742            during interrupts. Ensure WSAVE is located at a shared bank address.
7743         2. Fixed page selection in some places
7744         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7745            the registers name strings.
7746         4. Fixed "signed / unsigned compare" compiler warnings.
7747         5. The PIC port manages its own allocation of the general purpose
7748            registers, but makes no attempt to reuse them. As a result when
7749            compiling it soon runs out of general purpose registers. Some
7750            additional code was added to the files pcode.c and device.c to walk
7751            through the function call tree and rename the registers so that they
7752            get reused.
7753
7754         * src/pic/device.c
7755         * src/pic/gen.c
7756         * src/pic/glue.c
7757         * src/pic/pcode.c
7758         * src/pic/pcode.h
7759         * src/pic/ralloc.c
7760         * src/pic/ralloc.h
7761         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7762         genPlus() & genMinus() when the result is the same as left or right
7763
7764 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7765
7766         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7767
7768 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7769
7770         Made bitfield a distinct type from bit so that bitfields
7771         convert as per ANSI C and bits retain their traditional
7772         boolean style behaviour. Implemented bitfield support in
7773         the z80 port.
7774
7775         * src/SDCCsymt.h,
7776         * src/SDCCsymt.c,
7777         * src/SDCCast.c,
7778         * src/cdbFile.c,
7779         * src/mcs51/gen.c,
7780         * src/ds390/gen.c: bit v bitfield split
7781         * src/z80/gen.c: New support for bitfields
7782         * support/regression/tests/bitfields.c: reenabled z80,
7783         added more tests
7784
7785 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7786
7787         Rules 246.x, 247.x relate to bitfields, the others speed up
7788         access to xdata mapped I/O devices.
7789
7790         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7791
7792 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7793
7794         Cleaned up genPackBits and genUnpackBits and added two helper
7795         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7796         for literal assignments in genPackBits (thanks to Frieder for
7797         reminding me).
7798
7799         * src/mcs51/gen.c
7800         * src/ds390/gen.c
7801
7802 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7803
7804         Fixed bug #748310 (pointer to function type mishandled when the
7805         function name is omitted). Also fixed a SIGSEGV when a function
7806         attribute (reentrant, etc) is used on a non-function or on a
7807         function but misplaced before the parameter list.
7808
7809         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7810         bug #748310
7811         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7812         * support/Util/SDCCerr.h,
7813         * support/Util/SDCCerr.c: Added func attr misuse error msg
7814
7815 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7816
7817         Fixed bug #787649 by anonymous
7818         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7819         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7820
7821 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7822
7823         Fixed numerous bitfield problems.
7824
7825         * src/SDCC.y: More bitfield related error checking
7826         * src/SDCCsymt.h,
7827         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7828         * support/Util/SDCCerr.h,
7829         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7830         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7831         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7832         * support/regression/tests/bitfields.c: tests added
7833
7834 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7835
7836         Made the constant following the "interrupt" keyword optional. If
7837         omitted, the function will not automatically be given an entry
7838         in the interrupt vector table (similar to #pragma NOIV, but
7839         less syntacticly kludgy). The interrupt number is also now
7840         range checked. Also fixed a bug in the high order bit example
7841         in the manual.
7842
7843         * src/SDCC.y
7844         * src/SDCCmem.c
7845         * src/SDCCglue.c
7846         * src/SDCCsymt.h
7847         * support/Util/SDCCerr.c
7848         * support/Util/SDCCerr.h
7849         * doc/sdccman.lyx
7850
7851 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7854         * src/SDCCicode.c (operandOperation): rewritten some ops
7855         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7856         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7857         other type
7858         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7859         be re-activated by defining REDUCE_LITERALS)
7860         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7861         unsigned, but are signed by default
7862         * src/SDCCval.c (constVal): rearranged
7863         * src/SDCCval.c (valMod): preliminary fix
7864         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7865         * support/regression/literalop.c: added, work in progress
7866
7867 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7868
7869         Generate warnings for useless declarations like "char data;"
7870         that don't do what new users expect.
7871
7872         * src/SDCC.y
7873         * support/Util/SDCCerr.h
7874         * support/Util/SDCCerr.c
7875
7876 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7877
7878         * src/SDCCval.c (valMult): fix overflow detection of negative int
7879
7880 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7881
7882         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7883
7884         Changes to support big endian targets:
7885
7886         * src/ports.h
7887         * src/SDCCglue.c
7888         * src/avr/main.c
7889         * src/ds390/main.c
7890         * src/izt/i186.c
7891         * src/mcs51/main.c
7892         * src/pic/main.c
7893         * src/pic16/main.c
7894         * src/xa51/main.c
7895         * src/z80/main.c
7896
7897 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7898
7899         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7900         * device/lib/time.c: fixed warning "integer overflow in expression"
7901
7902 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7903
7904         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7905         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7906         constants are unsigned; added recognition of "u" flag for unsigned
7907         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7908         * src/SDCCval.c (valDiv, valMod): fixed signdness
7909         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7910         signedness of modulo, left and right shift
7911         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7912         * support/Util/SDCCerr.h: added warning W_INT_OVL
7913         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7914         * src/SDCCast.c (ast_print): improved output of constants
7915
7916 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7917
7918         Fixed some warnings when building with MSVC:
7919
7920         * as\mcs51\asdata.c
7921         * as\z80\asdata.c
7922         * as\mcs51\asm.h
7923         * as\z80\asm.h
7924         * link\z80\aslink.h
7925         * link\z80\lkdata.c
7926         * link\z80\lkeval.c
7927         * link\z80\lkgb.c
7928         * link\z80\lkihx.c
7929         * link\z80\lks19.c
7930         * link\z80\lksym.c
7931         * support\cpp2\cpplib.c
7932         * src\ds390\gen.c
7933         * src\mcs51\gen.c
7934
7935 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7936
7937         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7938
7939 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7940
7941         * support\librarian\clean.mk: Do not remove Makefile.
7942         * support\librarian\Makefile: added.
7943
7944 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7945
7946         Added librarian to MSVC build:
7947         * all.dsp
7948         * sdcc.dsw
7949         * support\librarian\librarian.dsp
7950
7951         'configure' not needed for librarian, removed:
7952         * support\librarian\configure
7953         * support\librarian\configure.in
7954         * support\librarian\config_in.h
7955         * support\librarian\Makefile.in
7956
7957         Hopefully these ones built the librarian and the rest of sdcc properly:
7958         * Makefile
7959         * Makefile.common.in
7960
7961         Messed up 'configure', so revert to previous version:
7962         * configure
7963         * configure.in
7964
7965 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7966
7967         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7968         there, while the mantissa of a double is "only" 53 bits wide.
7969
7970 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7971
7972         Adding sdcclib to the build.  MSVC project coming soon.
7973         Files added/changed:
7974
7975         * support\librarian\clean.mk
7976         * support\librarian\configure
7977         * support\librarian\configure.in
7978         * support\librarian\config_in.h
7979         * support\librarian\Makefile.bcc
7980         * support\librarian\Makefile.in
7981         * support\librarian\sdcclib.c
7982         * Makefile.bcc
7983         * Makefile
7984         * Makefile.common.in
7985         * configure
7986         * configure.in
7987
7988 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7989
7990         Linker now complaints if linked modules have conflicting options, for
7991         example, one compiled using --model-large and another one compiled with
7992         --model-small.  The following files were modified:
7993
7994         * as\mcs51\asdata.c
7995         * as\mcs51\aslink.h
7996         * as\mcs51\asm.h
7997         * as\mcs51\asmain.c
7998         * as\mcs51\asout.c
7999         * as\mcs51\i51pst.c
8000         * as\mcs51\lkdata.c
8001         * as\mcs51\lklibr.c
8002         * as\mcs51\lkmain.c
8003         * as\z80\asdata.c
8004         * as\z80\asm.h
8005         * as\z80\asmain.c
8006         * as\z80\asout.c
8007         * as\z80\z80pst.c
8008         * link\z80\aslink.h
8009         * link\z80\lkdata.c
8010         * link\z80\lklibr.c
8011         * link\z80\lkmain.c
8012         * src\SDCCglue.c
8013
8014 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8015
8016         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8017         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8018
8019 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8020
8021         * src/z80/mappings.i: fix _mul[us][int,long] entries
8022
8023 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8024
8025         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8026
8027 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8028
8029         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8030         * support/regression/tests/bitopcse.c: added
8031         fixed warning:
8032         * src/avr/gen.c:
8033         * src/pic/gen.c:
8034         * src/pic16/gen.c:
8035         * src/z80/gen.c:
8036         * src/xa51/gen.c:
8037
8038 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8039
8040         added support for new library format to z80, gbz80 linkers:
8041         *link/z80/aslink.h
8042         *link/z80/lklex.c
8043         *link/z80/lklib.c
8044         *link/z80/lklist.c
8045
8046 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8047
8048         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8049         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8050
8051 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8052
8053         added DUMMY_READ_VOLATILE:
8054         * src/SDCC.y:
8055         * src/avr/gen.c:
8056         * src/xa51/gen.c:
8057         * src/z80/gen.c:
8058         * src/pic/gen.c:
8059         * src/pic16/gen.c:
8060         * src/mcs51/gen.c:
8061         * src/ds390/gen.c:
8062         * src/SDCCcse.c (algebraicOpts): many improvements
8063         * src/SDCCcse.h: removed algebraicOpts()
8064         * src/SDCCicode.c (picDummyRead): added
8065
8066 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8067
8068         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8069         "Insufficient space in data memory".
8070
8071 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/mcs51/gen.c: fixed bug #771358
8074         * src/z80/gen.c: fixed bug #759087
8075
8076 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8077
8078         * src/pic16/glue.c: minor cleanup by Vangelis
8079
8080 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8081
8082         * device/include/regc515c.h: fixed #758477
8083         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8084         * device/lib/_gptrput.c: saved a few bytes
8085         * my tab spacing is 8, yours too?)
8086         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8087         * device/lib/serial.c: process RX bytes earlier than TX bytes
8088         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8089
8090 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8091
8092         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8093
8094 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8095
8096     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8097
8098 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8099
8100         * device/lib/Makefile.in: bad fix, reverted to 1.43
8101
8102 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8103
8104         * device/lib/Makefile.in: added missing z80 object files
8105
8106 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8107
8108         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8109         pic16 progress by Vangelis:
8110         * src/SDCCglobl.h:
8111         * src/SDCCmain.c:
8112         * src/pic/Makefile:
8113         * src/pic:
8114         * pic/Makefile:
8115         * pic16/device.c:
8116         * pic16/device.h:
8117         * pic16/gen.c:
8118         * pic16/gen.h:
8119         * pic16/genarith.c:
8120         * pic16/glue.c:
8121         * pic16/main.c:
8122         * pic16/pcode.c:
8123         * pic16/pcode.h:
8124         * pic16/pcodepeep.c:
8125         * pic16/peeph.def:
8126
8127 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8128
8129     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8130
8131 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8132
8133     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8134     added gbz80 build to MSVC project.
8135     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8136     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8137     from 8051 stuff and setup so it links using a .lnk file.
8138
8139 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8140
8141     * support/librarian/sdcclib.c: sdcc librarian.
8142     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8143     with sdcclib.
8144
8145 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8146
8147     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8148
8149 2003-07-02  Borut Razem <borut.razem AT siol.net>
8150
8151         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8152         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8153         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8154         src/xa51/main.c, src/z80/main.c:
8155         virtualization of glue() function: each port has it's own glue function,
8156         which is accessed by do_glue function pointer in PORT.general structure
8157
8158 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8159
8160         * DS800C400 fun, improved ROM interface and tinibios.
8161
8162 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8163
8164         * More support for DS80C400. Now includes beginning of interface to ROM.
8165
8166 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8167
8168         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8169
8170 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8171
8172         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8173
8174 2003-06-19  Borut Razem <borut.razem AT siol.net>
8175
8176         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8177
8178 2003-06-19  Borut Razem <borut.razem AT siol.net>
8179
8180         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8181         fixed Z80 port - crt0.o: cannot open.
8182
8183 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8184
8185         * support/Util/MySystem.c (merge_command): revert bad fix
8186
8187 2003-06-18  Borut Razem <borut.razem AT siol.net>
8188
8189         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8190
8191 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8192
8193         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8194         option --use-stdout sends errors to stdout instead of stderr.
8195
8196 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8199
8200 2003-06-15  Borut Razem <borut.razem AT siol.net>
8201
8202         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8203         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8204         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8205         fixed width array of pointers replaced with sets;
8206         multiple include and lib paths ared transferred to preprocessor and linker
8207         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8208         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8209         fixed width array of pointers
8210         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8211         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8212         fixupPath(), getPathDifference()
8213         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8214         fixed width array of pointers
8215
8216 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8217
8218         * src/pic16/ralloc.c: fix warnings
8219         * src/pic16/pcode.c: fix warning
8220
8221 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8222
8223          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8224         know all the details, but essentially this set of changes enable
8225         the pic16 port to generate movff instructions and generate assembler
8226         directives,
8227         * src/SDCCmain.c:
8228         * src/pic16/gen.c:
8229         * src/pic16/glue.c:
8230         * src/pic16/pcode.c:
8231         * src/pic16/device.c:
8232         * src/pic16/main.c:
8233         * src/pic16/pcode.h:
8234         * src/pic16/pcoderegs.c:
8235         * src/pic16/ralloc.c:
8236         * src/pic16/ralloc.h:
8237
8238 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8239
8240         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8241         added option --vc, so sdcc errors and warnings are compatible with
8242         Microsoft Visual Studio.
8243
8244 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8245
8246         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8247           device/lib/libfloat.lib: added atof function.
8248
8249 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8250
8251         * doc/sdccman.lyx: updated to Lyx 1.3
8252         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8253         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8254         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8255
8256 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8257
8258         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8259
8260 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8261
8262         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8263           additions to the "related tools/documentation" section
8264
8265 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8266
8267         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8268
8269 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8270
8271         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8272         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8273
8274 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8275
8276         * doc/sdccman.lyx: fix double dash and other minor things
8277         * doc/Makefile: fix double dash
8278
8279 2003-05-28  Karl Bongers(patches from Martin Helmling)
8280         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8281           condition and ignore commands.
8282
8283 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8284
8285         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8286           is in parts still quite out of date, I did changes as far as I felt makes sense
8287           for a non-native english speaker.
8288           Please feel free to add to the manual or to correct my changes.
8289         * doc/Makefile: undid touching the date of intermediate tex files.
8290
8291 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8292
8293         * doc/sdccman.lyx: Manual has an index now
8294
8295 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8296
8297         Finalize muluint/mulsint and mululong/mulslong merging:
8298         * device/lib/_mulint.c
8299         * device/lib/_mullong.c
8300         * device/lib/gbz80/mul.s
8301         * device/lib/gbz80/stubs.s
8302         * device/lib/z80/mul.s
8303         * device/lib/z80/stubs.s
8304         * src/SDCCsymt.c (initCSupport)
8305
8306 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8307
8308         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8309         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8310           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8311           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8312           instead of /Zm500.
8313
8314 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8315
8316         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8317           the regression tests I'm not brave enough to enable 245.b, 245.c
8318         * doc/sdccman.lyx: added latex preamble for hyperref package.
8319           Using pdflatex this will give you a hyperlinked pdf file with
8320           bookmarks. (prepend '%' before /usepackage if this breaks something)
8321
8322 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8323
8324          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8325
8326 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8329
8330 2003-05-21    <johan AT balder>
8331
8332         * src/SDCCglue.c (printIval): fixed bug #739934
8333
8334 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8335
8336         Applied patch from bug 737905 (renamed yylineo to mylineno):
8337         * src/altlex.c
8338         * src/SDCCast.c
8339         * src/SDCglobl.h
8340         * src/SDCC.lex
8341         * src/SDCCsymt.c
8342         * src/SDCCval.c
8343         * src/pic16/pcode.c: Cleaned warnings
8344         * src/pic16/pcodeflow.c: Cleaned warnings
8345         * src/pic16/pcoderegs.c: Cleaned warnings
8346
8347 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8348
8349         * src/pic16/pcode.c: Cleaned warnings
8350         * src/pic16/pcodepeep.c: Cleaned warnings
8351         * src/pic16/ralloc.c: Cleaned warnings
8352
8353 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8354
8355         * doc/sdccman.lyx: fixed bug 739745
8356         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8357
8358 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8359
8360         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8361         it can be defined with CFLAGS when running configure
8362         * src/SDCCmain.c: fixed compiling + linking with object files
8363
8364 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8365
8366         * configure.in: configure for pic16 port,
8367             added --disable-pic16-port
8368         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8369         * src/SDCCmain.c: linkOptions is changed to set *,
8370             added if/endif conditional macros to remove options help
8371             messages from optionsTable when a port is not configured, added
8372             support for the PIc16 port in the ports table, when executing
8373             the compiler with no port specified on command line, a default
8374             port is selected with the new macro DEFAULT_PORT which is
8375             defined in port.h, in setDefaultOptions() linkOptions is removed
8376             from initialization assignment, since now it is a set,
8377             parseCmdLine uses setParseWithComma for linkOptions, in
8378             linkEdit() linkOptions are accessed with new function indexSet()
8379             which returns the i'th item of a set variable. See SDCCset.c, in
8380             linkEdit() when calling buildCmdLine(), added linkOptions as
8381             last argument. Now users can pass arguments to gplink via the
8382             -Wl option, main() uses pic16glue() to glue up pic16 programs
8383         * src/SDCCpeeph.c: various changes to support pic16
8384         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8385             return the i'th item of the set
8386         * src/SDCCset.h: added function prototype for indexSet()
8387         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8388         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8389         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8390             added macro DEFAULT_PORT
8391         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8392         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8393             generated
8394         * src/pic16/glue.c: commented out some error producing lines
8395         * src/pic16/main.c: __config directives are commented out to stop
8396             gpasm complaining and test the linkage with gplink, _linkCmd and
8397             _asmCmd changed to be more gplink and gpasm friendly
8398         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8399             produced an error when parsed, peep rule 12 is added to utilize
8400             movff, but it is commented out since the pCode does not support
8401             yet a command with 2 address arguments
8402
8403 2003-05-18    <johan AT balder>
8404
8405         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8406         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8407 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8408
8409         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8410   Added feature to script commands from file.
8411
8412 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8413
8414         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8415         * src/SDCCutil.c: include ctype.h for win32
8416
8417 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8418
8419         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8420
8421 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8422
8423         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8424   Fixed so you can set breakpoints prior to run, run does not stop
8425   on entry now.  Add tbreak.  Other enhancements and fixes for use
8426   with ddd.
8427
8428 2003-05-12  Borut Razem <borut.razem AT siol.net>
8429
8430         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8431
8432 2003-05-11  Borut Razem <borut.razem AT siol.net>
8433
8434         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8435         the path of bin directory, so that PATH is the only env. variable, which has to be set
8436         in case of standard installation.
8437         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8438         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8439         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8440
8441 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8442
8443         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8444         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8445         temp files are in the port dir; clean the gen/test directory when
8446         generating new test.c
8447         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8448         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8449         * support/regression/tests/zeropad.c: added
8450
8451 2003-05-09    <johan AT balder>
8452
8453         * src/SDCCglue.c: fixed bug #597940
8454
8455 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8456
8457         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8458   cache sfr, optimize next,step, fix off by one sourceline,
8459   support ddd list function.
8460         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8461
8462 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         * support/regression/HTMLgen.py: added compare_s2f()
8465         * support/regression/Makefile: redo 1.27
8466         * support/regression/generate-cases.py: redo 1.5
8467
8468 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * support/regression/tests/float.c: workaround 33 bit hex constant
8471         * support/regression/tests/simplefloat.c: fix division for host
8472
8473 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8474
8475         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8476         that tame's the PIC's over-aggressive optimizer.
8477
8478 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8479
8480          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8481          support for MSVC.
8482
8483 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8484
8485         Initial support for DS80C400. "Hello world" runs on TINIm400
8486         (with polled I/O).
8487
8488 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8489
8490          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8491          * Some notes on ddd usage added in debugger/README
8492          Martin Helmling adding more features and fixes for ddd GUI debugger.
8493          Code added for nexti, stepi, up, down, and other adjustments.
8494
8495 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8496
8497         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8498         * src/pic/peeph.def Added two rules to optimize carry manipulation
8499         * src/pic/* removed debug printfs
8500
8501 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8502
8503         * debugger/mcs51/cmd.c: added header newalloc.h
8504
8505 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8506
8507         * as/Makefile: new EXEEXT
8508         * as/z80/Makefile: remove trailing slash of BUILDIR
8509         * as/z80/clean.mk: new EXEEXT
8510         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8511         * support/cpp2/Makefile.in: new EXEEXT
8512         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8513
8514 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8515
8516         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8517         EXEEXT was introduced to fix all related problems with targets
8518         "clean", "install" and "uninstall"; a couple of further flaws
8519         especially with "clean" have been fixed too
8520         * as/mcs51/Makefile.in
8521         * as/mcs51/clean.mk
8522         * as/z80/Makefile
8523         * Makefile
8524         * clean.mk
8525         * debugger/mcs51/Makefile.in
8526         * debugger/mcs51/clean.mk
8527         * link/z80/Makefile
8528         * link/z80/Makefile.in
8529         * link/z80/clean.mk
8530         * link/Makefile
8531         * packihx/Makefile.in
8532         * packihx/clean.mk
8533         * sim/ucsim/Makefile
8534         * sim/ucsim/clean.mk
8535         * sim/ucsim/avr.src/Makefile.in
8536         * sim/ucsim/avr.src/clean.mk
8537         * sim/ucsim/s51.src/Makefile.in
8538         * sim/ucsim/s51.src/clean.mk
8539         * sim/ucsim/xa.src/Makefile.in
8540         * sim/ucsim/xa.src/clean.mk
8541         * sim/ucsim/z80.src/Makefile.in
8542         * sim/ucsim/z80.src/clean.mk
8543         * sim/ucsim/main_in.mk
8544         * sim/ucsim/packages_in.mk
8545         * sim/ucsim/gui.src/Makefile.in
8546         * sim/ucsim/gui.src/serio.src/Makefile.in
8547         * sim/ucsim/gui.src/serio.src/clean.mk
8548         * src/Makefile.in
8549         * src/clean.mk
8550         * support/cpp2/Makefile.in
8551         * support/cpp2/clean.mk
8552         * support/makebin/Makefile
8553         * support/makebin/clean.mk
8554         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8555         * doc/sdccman.lyx: --program-suffix no longer needed
8556
8557 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8558
8559          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8560          Martin Helmling added support for ddd GUI debugger.
8561          Code added to display assembly, set variables, and other commands
8562          to interface to ddd.
8563
8564 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8565
8566         * as/Makefile: fix target clean
8567         * as/clean.mk: fix target clean
8568         * as/z80/clean.mk: fix target clean
8569
8570 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8571
8572         * Makefile.common.in: added  AT EXEEXT AT
8573         * configure.in: removed all mingw32 stuff
8574         * configure: rebuilt from configure.in
8575         * doc/sdccman.lyx: updated section "installation"
8576         * support/scripts/sdcc_mingw32: adapted to configure
8577         * support/scripts/sdcc_cygwin_mingw32: added
8578
8579 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8580
8581         * src/pic Added object file support for the PIC port
8582         * src/pic Applied patch from Craig Franklin (this started the object file support)
8583         * src/regression Updated the PIC regression tests for object files
8584
8585 2003-04-20  Borut Razem <borut.razem AT siol.net>
8586
8587         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8588           lklex.c: In function `getfid':
8589           lklex.c:203: warning: array subscript has type `char'
8590         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8591           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8592         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8593           stack handling macros
8594
8595 2003-04-19  Borut Razem <borut.razem AT siol.net>
8596
8597         * "handling space characters in file path" task:
8598         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8599         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8600         * support/Util/MySystem.h: make it self-sufficient
8601         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8602           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8603           handling space characters in file path
8604         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8605           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8606         * support/Util/MySystem.c: handling space characters in executable's path
8607
8608 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8609
8610         * as/z80/Makefile: fix permanent rebuild of z80
8611         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8612         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8613
8614 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8615
8616         * src/SDCCopt.c: add special case optimization to replace modulo by
8617           a power of two with a bitwise AND.
8618
8619 2003-04-18    <johan AT balder>
8620
8621         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8622
8623 2003-04-17    <johan AT balder>
8624
8625         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8626         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8627
8628 2003-04-13  Borut Razem <borut.razem AT siol.net>
8629
8630         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8631         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8632           fixed mingw problem in adl_NORMALIZE_PATH
8633
8634 2003-04-12  Borut Razem <borut.razem AT siol.net>
8635
8636         * fixed "#pragma SAVE/RESTORE can not be nested":
8637         * src/SDCC.lex: reworked pragma handling functions
8638         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8639         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8640
8641 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8642
8643         * src/SDCCutil.c (pathEquivalent): defined but not used
8644         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8645         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8646         * configure: rebuilt from configure.in
8647         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8648         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8649         * device/include/Makefile.in: replace sdcc_datadir
8650         * device/lib/Makefile.in: replace sdcc_datadir
8651         * Makefile.common.in: add LDFLAGS from configure
8652         * packihx/Makefile.in: use LDFLAGS
8653         * src/Makefile.in: use LDFLAGS
8654         * support/cpp2/Makefile.in: add LDFLAGS from configure
8655         * support/makebin/Makefile: use LDFLAGS
8656         * .version: bumped version number to 2.3.5
8657
8658 2003-04-12  Borut Razem <borut.razem AT siol.net>
8659
8660         * completed "different paths" task:
8661         * src/SDCCmacro.c: fixed bug in handling quotes
8662         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8663         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8664
8665 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8666
8667         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8668
8669 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8670
8671         * ds390/gen.c ds390/peeph.def: fix bug 706781
8672
8673 2003-04-11  Borut Razem <borut.razem AT siol.net>
8674
8675         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8676
8677 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8678
8679         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8680         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8681          set - this bit used to not be set...).
8682         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8683           bad code in PIC Port
8684         * src/regression/and2.c added to test bug 609268
8685         * src/regression/Makefile added and2.c to regression test
8686
8687
8688 2003-04-08    <johan AT CP255758-A>
8689
8690         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8691         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8692         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8693
8694 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8695
8696         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8697         fix bug #487815
8698         * support/cpp2/Makefile.in: fix bug #487815
8699         * configure: rebuilt from configure.in
8700         * Makefile.common.in: docdir changed, new path suffixes
8701         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8702         * sdcc_vc_in.h: reflect changes from sdccconf.h
8703         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8704         * src/SDCCutil.h: remove BINDIR hack
8705         * doc/sdccman.lyx: update new path hierarchy
8706
8707 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8708
8709         * src/SDCCpeeph.c: added okToRemoveSLOC test
8710
8711 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8712
8713         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8714
8715 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8716
8717         * src/SDCCpeeph.c: added labelIsReturnOnly test
8718         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8719
8720 2003-04-05    <johan AT balder>
8721
8722         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8723         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8724         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8725         * src/SDCCast.c: fixed a warning
8726         * src/SDCCast.h: fixed a warning
8727         * src/SDCCicode.c (operandFromAst): fixed a warning
8728
8729 2003-04-04    <johan AT balder>
8730
8731         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8732         * src/SDCCast.c (decorateType): fixed bug #715076
8733         * src/SDCC.y: fixed bug #702907
8734
8735 2003-04-03    <johan AT balder>
8736
8737         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8738         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8739         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8740         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8741         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8742
8743 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8744
8745         * _decdptr.c: fix return values
8746         * _gptrget.c: fix return values
8747         * _gptrgetc.c: fix return values
8748         * _gptrput.c: fix return values
8749         * _mulint.c: fix return values
8750         * as/z80/Makefile: fix 'make -j' problem
8751
8752 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8753
8754         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8755         * configure.in: big cleanup, updated to autoconf 2.5x
8756         * configure: rebuilt from configure.in
8757         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8758         * sdcc_vc_in.h: reflect changes from sdccconf.h
8759         * doc/Makefile: fixed a flaw in "make install"
8760
8761 2003-04-02    <johan AT balder>
8762
8763         * src/ds390/gen.c (genCmp): no comments
8764         * src/mcs51/gen.c (genCmp): no comments
8765         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8766         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8767
8768 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8769
8770         * support/regression/generate-cases.py: place generated file in given sub directory
8771         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8772         * support/regression/Makefile: improvements for 'make -j';
8773         side effect: it's simpler and faster now
8774
8775 2003-03-31  Borut Razem <borut.razem AT siol.net>
8776
8777         * src/z80/main.c: link-{port} and as-{port} defined without path
8778         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8779
8780 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8781
8782         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8783
8784 2003-03-30  Borut Razem <borut.razem AT siol.net>
8785
8786         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8787           changed type of list parameter to set
8788         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8789         * src/port.h: changed type of do_assemble() parameter to set
8790         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8791           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8792           definition of "cppoutfilename" macro with NULL value in preProcess()
8793         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8794         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8795         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8796           replaced with set *binPathSet
8797         * shash_add() deallocates the item, if allready exsists, before adding the new one
8798         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8799
8800 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8801
8802         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8803           a nested for loop bug in the PIC port
8804         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8805           for loops
8806
8807 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8808
8809         * support/Util/dbuf.h: remove C++ stuff to make it portable
8810
8811 2003-03-28  Borut Razem <borut.razem AT siol.net>
8812
8813         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8814           literal strings in stringLiteral()
8815         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8816         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8817           to the project
8818
8819 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8820
8821         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8822
8823 2003-03-26    <johan AT balder>
8824
8825         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8826         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8827         * src/SDCCast.c (decorateType): fixed " -v < 3"
8828
8829 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8830
8831         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8832         Added Lenny Story's debug infrastructure changes:
8833         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8834         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8835         * src/cdbFile.c: added
8836         * src/SDCCdebug.c: added
8837         * src/SDCCdebug.h: added
8838         * src/SDCCast.c (createFunction)
8839         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8840         * src/SDCCmain.c (parseCmdLine, main)
8841         * src/SDCCmem.c (redoStackOffsets)
8842         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8843         * src/SDCCsymt.h
8844         * src/common.h
8845         * src/avr/gen.c (genAVRCode)
8846         * src/ds390/gen.c (gen390Code)
8847         * src/mcs51/gen.c (gen51Code)
8848         * src/pic/gen.c (genpic14Code)
8849         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8850         * src/xa51/gen.c (genXA51Code)
8851         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8852
8853 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8854
8855         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8856         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8857
8858 2003-03-22    <johan AT balder>
8859
8860         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8861
8862 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8863
8864         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8865         * doc/cdbfileformat.lyx: added, written by Lenny Story
8866         * doc/Makefile: added cdbfileformat.lyx
8867         * doc/clean.mk: added cdbfileformat.lyx
8868
8869 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8870
8871         * src/mcs51/peeph.def: fix bug #705773
8872
8873 2003-03-20    <johan AT balder>
8874
8875         An sfr/sbit can have an "at #" AND an initializer
8876         * src/SDCCsymt.c (checkSClass):
8877         * src/SDCCmem.c (allocGlobal):
8878         * src/SDCCmem.c (allocLocal):
8879         * src/SDCCast.c (createBlock):
8880
8881 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8882
8883         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8884
8885 2003-03-16    <johan AT balder>
8886
8887         Undid the hackup of const and volatile, the problem is much bigger
8888         * src/SDCC.y:1.65
8889         * src/SDCCast.c:1.171
8890         * src/SDCCglue.c:1.138
8891         * src/SDCCicode.c:1.146
8892         * src/SDCCsymt.c:1.150
8893         * src/SDCCval.c:1.65
8894
8895 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8896
8897         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8898         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8899
8900 2003-03-13    <johan AT balder>
8901
8902         Hackup const and volatile modifiers in type chains a bit:
8903         * src/SDCC.y:1.63
8904         * src/SDCCast.c:1.169
8905         * src/SDCCglue.c:1.136
8906         * src/SDCCicode.c:1.143
8907         * src/SDCCsymt.c1.146
8908         * src/SDCCsymt.h1.59
8909         * src/SDCCval.c:1.63
8910
8911 2003-03-12    <johan AT balder>
8912
8913         * src/SDCCBBlock.h: more LRH debugging junk
8914         * src/SDCCcflow.h: more LRH debugging junk
8915         * src/SDCCloop.c: more LRH debugging junk
8916         * src/SDCC.y (struct_declaration): fixed bug #697590
8917         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8918         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8919         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8920
8921 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8922         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8923         test function names must now match exactly).
8924         * src/SDCCcse.c: added special case in findCheaperOp to allow
8925         extending a short integer. Makes less awful code for bug 700121 test case.
8926
8927 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8928
8929         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8930         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8931
8932 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8933
8934         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8935         actually called (operandsNotEqual() was called for all
8936         operandsNotEqualX tests).
8937
8938 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8939
8940         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8941         with shorter literals. Fixes bug 700121.
8942
8943 2003-03-11    <johan AT balder>
8944
8945         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8946
8947 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8948
8949         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8950         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8951
8952 2003-03-10  Borut Razem <borut.razem AT siol.net>
8953
8954         * src/SDCCmain.c: pipe preprocessor's output
8955         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8956         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8957         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8958         which closes all pipes in pipeSet set
8959         * src/SDCCset.c: free deleted item in function deleteSetItem()
8960         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8961         moved from z80 to src subproject
8962         * .version: increased version number to 2.3.4
8963
8964 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8965
8966         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8967         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8968         * support/regression/ports/xa51/spec.mk: fix typo
8969
8970 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8971
8972         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8973
8974 2003-03-09  Borut Razem <borut.razem AT siol.net>
8975
8976         * src/SDCCmain.c: pipe preprocessor's output
8977         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8978         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8979         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8980         which closes all pipes in pipeSet set
8981         * src/SDCCset.c: free deleted item in function deleteSetItem()
8982         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8983         moved from z80 to src subproject
8984
8985 2003-03-09  Borut Razem <borut.razem AT siol.net>
8986
8987         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8988         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8989         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8990         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8991         * src/SDCCglobl.h: unification of WIN32 native definitions
8992
8993 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8994
8995         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8996
8997 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * src/configure.in:   check for endianess (even while cross-compiling)
9000         * src/configure:      check for endianess (even while cross-compiling)
9001         * src/configure_in.h: check for endianess (even while cross-compiling)
9002         * src/avr/gen.c:        remove old endianess stuff
9003         * src/mcs51/gen.c:      remove old endianess stuff
9004         * src/ds390/gen.c:      remove old endianess stuff
9005         * src/pic/gen.c:        remove old endianess stuff
9006         * src/pic/genarith.c:   remove old endianess stuff
9007         * src/pic/glue.c:       fix endianess check
9008         * src/pic16/gen.c:      remove old endianess stuff
9009         * src/pic16/genarith.c: remove old endianess stuff
9010         * src/pic16/glue.c:     fix endianess check
9011         * src/xa51/gen.c:       remove old endianess stuff
9012         * src/z80/gen.c:        fix endianess check
9013         * src/SDCCglue.c:       fix endianess check
9014         * src/ds390/peeph.def: fix bug 700036
9015
9016 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9017
9018         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9019         * src/configure: find appropriate data-types on host for SDCC's int and long
9020         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9021         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9022         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9023
9024 2003-03-07    <johan AT balder>
9025
9026         Just a big NOOP:
9027                 some minor cleanups before the big shot
9028                 OP_DEFS and OP_USES now use Kevin's protection
9029                 new option --nolabelopt
9030
9031         * src/SDCCBBlock.c:
9032         * src/SDCCast.c,:
9033         * src/SDCCcflow.c:
9034         * src/SDCCcse.c:
9035         * src/SDCCicode.c:
9036         * src/SDCCicode.h:
9037         * src/SDCClabel.c:
9038         * src/SDCCloop.c:
9039         * src/SDCCmain.c:
9040         * src/ds390/ralloc.c:
9041         * src/mcs51/ralloc.c:
9042         * src/pic/ralloc.c:
9043         * src/xa51/ralloc.c:
9044         * src/z80/ralloc.c:
9045
9046 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9047
9048         * src/pic/pcode.c (get_op): fix 64 bit warnings
9049         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9050         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9051         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9052         * support/regression/tests/malloc.c: fix 64 bit warnings
9053
9054 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9055
9056         * src/mcs51/gen.c (genMinus): fixed bug 696436
9057
9058 2003-03-02  Borut Razem <borut.razem AT siol.net>
9059
9060         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9061
9062 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9063
9064         * configure.in: test for mkstemp
9065         * sdccconf_in.h: add HAVE_MKSTEMP
9066
9067 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9068
9069         * device/include/ctype.h: removed warning while using --stack-auto
9070         * device/include/malloc.h: removed warning while using --stack-auto
9071         * device/include/string.h: removed warning while using --stack-auto
9072
9073 2003-02-23  Borut Razem <borut.razem AT siol.net>
9074
9075         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9076         because NDEBUG is defined (see man assert)
9077         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9078
9079 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9080
9081         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9082         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9083
9084 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9085
9086         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9087         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9088
9089 2003-02-18    <johan AT balder>
9090
9091         * as/mcs51/asmain.c (asmbl): module can start with a digit
9092         * as/z80/asmain.c (asmbl): module can start with a digit
9093
9094 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9095
9096         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9097         * src/asm.c: fix pipe() for Mingw32
9098
9099 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9100
9101         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9102         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9103         make -V work again; --c1mode reads now from stdin
9104         * doc/sdccman.lyx: added --c1mode
9105         * support/Util/SDCCerr.c: new messages for c1 mode
9106         * support/Util/SDCCerr.h: new messages for c1 mode
9107         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9108
9109 2003-02-15    <johan AT balder>
9110
9111         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9112
9113 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9114
9115         * doc/sdccman.lyx: Environment variables, -o and other minor things
9116
9117 2003-02-14    <johan AT balder>
9118
9119         * src/xa51/main.c: before anyone really tries to use it :)
9120
9121         * Install doc's in share/sdcc/doc
9122         * removed some obsolete files
9123         * Do a proper make distclean and uninstall
9124         M Makefile.common.in
9125         R sdccbuild.sh
9126         M as/Makefile
9127         M device/include/Makefile.in
9128         M device/lib/Makefile.in
9129         M doc/sdccman.lyx
9130         M link/Makefile
9131         M sim/ucsim/doc/Makefile.in
9132         M src/clean.mk
9133         R src/avr/peeph.rul
9134         R src/xa51/peeph.rul
9135         M support/cpp2/Makefile.in
9136         M support/makebin/Makefile
9137
9138
9139 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9140
9141         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9142
9143 2003-02-10  Borut Razem <borut.razem AT siol.net>
9144
9145         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9146         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9147         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9148         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9149         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9150         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9151         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9152         src/z80/Makefile.bcc: Borland Makefile cleanup
9153         * as/z80/Makefile.bcc: Added Borland Makefile
9154         * support/cpp2/borland.h: Removed
9155
9156 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9159         * src/SDCC.lex: new pragma NOIV
9160         * src/SDCCglobl.h: new pragma NOIV
9161         * src/SDCCmem.c: new pragma NOIV
9162
9163 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9164
9165         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9166
9167 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/SDCCmain.c: signal handling is switched off by --debug
9170         * doc/Makefile: small fix for install; use clean.mk again
9171         * doc/clean.mk: clean *.pdf and *.html too
9172
9173 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9174
9175         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9176         * device/lib/printfl.c: fix a ds390 bug by making it portable
9177         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9178         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9179         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9180         * debugger/mcs51/cmd.c: converted multi-line string literals
9181         * sim/ucsim/globals.cc: converted multi-line string literals
9182         * src/SDCCmain.c: introduced signal handler to remove temp files
9183         * doc/Makefile: small tweaks, implement clean
9184         * doc: removed generated files
9185
9186 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9187
9188         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9189         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9190         Address Record is not correctly generated for DS390."
9191
9192 2003-02-02  Borut Razem <borut.razem AT siol.net>
9193
9194         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9195         * as/mcs51/asm.h: fixed compilation with Borland C
9196         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9197         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9198         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9199         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9200         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9201         src/z80/Makefile.bcc: delete $(LIB) only if exist
9202         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9203
9204 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9205
9206         * device/include/malloc.h: introduced NULL
9207         * device/include/string.h: introduced NULL
9208         * device/include/stdlib.h: introduced NULL
9209         * device/lib/_memcpy.c: removed NULL
9210         * device/lib/_strcat.c: removed NULL
9211         * device/lib/_strchr.c: removed NULL
9212         * device/lib/_strcmp.c: removed NULL
9213         * device/lib/_strcpy.c: removed NULL
9214         * device/lib/_strcspn.c: removed NULL
9215         * device/lib/_strlen.c: removed NULL
9216         * device/lib/_strncat.c: removed NULL
9217         * device/lib/_strncmp.c: removed NULL
9218         * device/lib/_strncpy.c: removed NULL
9219         * device/lib/_strpbrk.c: removed NULL
9220         * device/lib/_strrchr.c: removed NULL
9221         * device/lib/_strspn.c: removed NULL
9222         * device/lib/_strstr.c: removed NULL
9223         * device/lib/_strtok.c: removed NULL
9224         * device/lib/malloc.c: removed NULL, include own header
9225
9226 2003-02-02    <johan AT balder>
9227
9228         * 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
9229         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9230         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9231         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9232         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9233         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9234
9235 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9236
9237         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9238         area 'DATA'"
9239
9240 2003-02-01    <johan AT balder>
9241
9242         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9243
9244 2003-01-31    <johan AT CP255758-A>
9245
9246         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9247
9248 2003-01-30    <johan AT balder>
9249
9250         * src/SDCCBBlock.c: automatic bug detection
9251         * src/SDCCicode.c: automatic bug detection
9252
9253 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9254
9255         * src/SDCCglobl.h:   now --xram-size 0 works
9256         * src/SDCCmain.c:    now --xram-size 0 works
9257
9258 2003-01-29    <johan AT balder>
9259
9260         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9261
9262 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9263
9264         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9265         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9266         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9267         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9268         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9269         * src/SDCCmain.c:    Added options --xram-size and --code-size
9270
9271 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9272
9273         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9274         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9275
9276 2003-01-27    <johan AT balder>
9277
9278         * src/SDCC.y: fixed bug #613764
9279
9280 2003-01-26    <johan AT balder>
9281
9282         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9283         * src/SDCCsymt.h: fixed bug #673374
9284         * src/SDCCglue.c: fixed bug #661910
9285         * src/SDCCast.c: fixed bug #458099 and 673374
9286
9287 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9290         * as/mcs51/strcmpi.h: added
9291         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9292         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9293         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9294         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9295         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9296         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9297         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9298         * as/mcs51/Makefile.aslink: new module strcmpi
9299         * as/mcs51/Makefile.asx8051: new module strcmpi
9300         * as/mcs51/Makefil.bcc: new module strcmpi
9301         * as/mcs51/Makefile.in: new module strcmpi
9302         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9303
9304 2003-01-26    <johan AT balder>
9305
9306         * src/SDCCglue.c: reverted back to 1.124
9307         * src/SDCCast.c: reverted back to 1.156
9308         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9309
9310 2003-01-25    <johan AT balder>
9311
9312         * src/SDCCglue.c: A better fix for bug #661910
9313         * src/SDCCast.c: A better fix for bug #661910
9314         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9315
9316 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         * src/Makefile.in: remove spawn.o
9319         * src/SDCCmain.c: remove spawn.h
9320         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9321         * src/spawn.c: removed
9322         * src/spawn.h: removed
9323         * support/regression/ports/ds390/spec.mk: link with -r
9324
9325 2003-01-24    <johan AT CP255758-A>
9326
9327         * src/ds390/gen.c (aopOp): fixed bug #667458
9328         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9329         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9330         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9331
9332 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9333
9334         * src/mcs51/peeph.def: better assembler identation by Frieder
9335         * src/mcs51/gen.c: better assembler identation by Frieder
9336
9337 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9338
9339         * as/z80/string.h: removed for gcc 3.2
9340         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9341         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9342
9343 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9344
9345         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9346         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9347         * support/regression/Makefile: separate temp files for ports
9348         * support/regression/generate-cases.py: separate temp files for ports
9349         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9350         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9351
9352 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * moved tinitalk to device/examples/ds390
9355
9356 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9357
9358         * as/mcs51/lkmem.c: rflag is for DS390
9359         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9360         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9361                          (linkEdit): move mem- and map-files the same way as ihx-files
9362         * src/z80/main.c (_setDefaultOptions): removed --generic
9363         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9364         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9365         * src/pic/glue.c (picglue): --c1mode works again
9366         * src/pic16/glue.c (pic16glue): --c1mode works again
9367         * src/asm.c (printCLine): fix #660034
9368
9369 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9370
9371         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9372         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9373         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9374         * as/mcs51/lkmem (summary): better fix for sp problem
9375         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9376         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9377         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9378                                               remove --stack-after-data
9379
9380 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9381
9382         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9383         * src/SDCCutil.c (join): ugly bug: missing '\0'
9384         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9385
9386 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9387
9388         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9389         * src/port.h: typo
9390         * src/pic/main.c (_asmCmd): gpasm supports -o
9391         * src/z80/main.c: more general macros
9392         * device/lib/Makefile.in: remove intermediate files
9393
9394 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * .version: Bumped version number to 2.3.3
9397         * src/SDCCBBlock.c: new option -o
9398         * src/SDCCglobl.h: new option -o
9399         * src/SDCCglue.c: new option -o
9400         * src/SDCCmain.c: new option -o
9401         * src/asm.c: new option -o
9402         * src/ds390/main.c: new option -o
9403         * src/pic/glue.c: new option -o
9404         * src/pic/pcode.c: new option -o
9405         * src/pic/ralloc.c: new option -o
9406         * src/pic16/glue.c: new option -o
9407         * src/pic16/pcode.c: new option -o
9408         * src/pic16/ralloc.c: new option -o
9409         * src/z80/main.c: new option -o
9410         * device/lib/Makefile.in: use -o
9411         * support/regression/ports/ds390/spec.mk: use -o
9412         * support/regression/ports/gbz80/spec.mk: use -o
9413         * support/regression/ports/mcs51/spec.mk: use -o
9414         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9415         * support/regression/ports/z80/spec.mk: use -o
9416         * support/regression/ports/ucz80/spec.mk: use -o
9417         * support/regression/ports/xa51/spec.mk: use -o
9418         * support/regression/fwk/lib/timeout.c: fix usage string
9419
9420 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9421         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9422
9423 2003-01-07    <johan AT balder>
9424
9425         * src/SDCCast.c (decorateType): fixed bug #600035
9426
9427 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9428         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9429         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9430         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9431         * src/pic/pcode.c: outcommented unused variable to remove warnings
9432         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9433
9434 2003-01-06    <karl AT turbobit.com>
9435         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9436    regression tests.
9437
9438 2003-01-06    <johan AT balder>
9439
9440         * src/SDCCicode.c: fixed array add
9441
9442 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9443         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9444         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9445
9446 2003-01-04    <johan AT balder>
9447
9448         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9449
9450 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9451         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9452
9453 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9454         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9455         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9456
9457 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9458         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9459
9460 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9461         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9462
9463 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9464         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9465
9466 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9467
9468     * in \sdcc\as\mcs51\ changed these files in order to create an
9469     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9470     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9471     following files to include the previous two files: aslink.dsp,
9472     Makefile.aslink, Makefile.bcc, and Makefile.in.
9473
9474     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9475     .adb instead of .cdb
9476
9477 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9478
9479         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9480         value from option --iram-size.
9481
9482 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9483
9484         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9485         dram[] array.
9486
9487 2002-09-18    <wiml AT hhhh.org>
9488
9489         * SDCClrange.h: exposed setFromRange() and setToRange()
9490         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9491           packRegsForAccUse() (bug 542397)
9492         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9493           multiple times and emitting the fetch operations more than once
9494           added aopGetUsesAcc() function to allow binary operators to
9495           fetch their operands in the correct order; made genMinus() emit
9496           compact code for X = LITERAL - Y
9497
9498 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9499         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9500         sprintf() in line 1267.
9501
9502 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9503         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9504         like ports.
9505
9506 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9507         Changes to aslink (All the changes are marked with 'JCF'):
9508
9509         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9510         summary().
9511
9512         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9513         area BSEG.  Also moves, if possible, the DATA area down into the internal
9514         ram so more space is available.
9515
9516         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9517         sflag.
9518
9519         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9520         not bytes.  Function summary() which creates a memory usage summary
9521         file with extension .mem.  Reports of overlaping stack and small stack
9522         size.  If the space for the stack is less than 16 bytes aslink trows a
9523         warning.
9524
9525         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9526         the 8051.  Option 'y' for memory summary output file.
9527
9528         Changes to sdcc (All the changes are marked with 'JCF'):
9529
9530         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9531
9532         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9533         overlaying area for it (uses RegBankUsed[4]).
9534
9535         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9536         bank zero as used by default.  By default aslink locates the stack
9537         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9538         the creation of the .mem file.  Delegates the allocation of data area
9539         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9540         the begining of the stack area to aslink.
9541
9542         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9543         glue() in SDCCglue.c creates an area for it.
9544
9545 2002-09-03  Borut Razem <borut.razem AT siol.net>
9546         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9547         sdcc/src/pic/glue.c:
9548         introduced atexit() handler for teporay files removal in case of
9549         errors, assertions, ...
9550
9551 2002-08-29  Borut Razem <borut.razem AT siol.net>
9552         * sdcc/support/cpp2/auto-host_vc_in.h:
9553         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9554         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9555         Maybe there is a similar problem with BORLANDC? It should be checked!
9556
9557         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9558         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9559         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9560         was not executed, and the compiler (cl) launched a warning:
9561         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9562
9563 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9564         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9565
9566 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9567         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9568
9569         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9570           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9571           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9572           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9573           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9574           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9575           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9576         - added Release configuration in VS projects
9577         - review of compiler an linker options
9578         - VC .exe files are generated in bin_vc directory, not to interfere
9579           with binaries generated from other projects (cygwin, mingw, bcc ...)
9580
9581         * sdcc/src/yacc.dsp: added
9582
9583         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9584         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9585         and insert the version number definitions from .version
9586
9587         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9588
9589         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9590         added - genarate auto-host.h using auto-host_vc_in.h as template
9591
9592         * sdcc/sdcc_vc.h,
9593         removed from CVS, generated automatically
9594
9595 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9596         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9597
9598 2002-08-11  Borut Razem <borut.razem AT siol.net>
9599         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9600
9601 2002-08-10  Borut Razem <borut.razem AT siol.net>
9602         * src/SDCCmain.c (main):
9603         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9604         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9605         The consequence was that some temporary files were not removed.
9606
9607         * src/SDCCglue.c:
9608         unification of code in functions tempfilename() and tempfile():
9609         function tempnam() is defined in Visual Studio 6.0 and .NET
9610
9611         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9612
9613         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9614           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9615         - removed compiler command line option /WX: Treats all warnings as errors
9616         - update a list of source files, included into the project
9617
9618         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9619           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9620         changed project type to Generic Project so that can be correcly converted to VS.NET project
9621
9622         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9623
9624         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9625
9626         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9627
9628         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9629         added return 0 statements after assert() to make compiler happy
9630
9631         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9632         added newline in the def file to keep MSC compiler satisfied
9633
9634         * sdcc/src/z80/gen.c:
9635         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9636           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9637         - solved MSC error in function aopDump()
9638
9639         * sdcc_vc.h: define PREFIX as "\\sdcc"
9640
9641 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9642         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9643
9644 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9645         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9646         - Rewrote the register banking algorithm.
9647         - Added pCode live-range analysis to registers (for now, only non-used and
9648         singly-used registers optimized away)
9649
9650         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9651
9652         * 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.
9653
9654 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9655         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9656
9657 2002-04-22  Michael Hope  <michaelh AT vroom>
9658
9659         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9660
9661         * configure.in (DD_COPT): Added include support required for gbdk.
9662
9663         * .version: Bumped version number just to increase it.
9664
9665         * src/SDCCmain.c: Added -nostdinc to the default options.
9666
9667 2002-04-15  Michael Hope  <michaelh AT vroom>
9668
9669         * device/lib/z80/printf.c (sprintf): Added.
9670
9671         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9672
9673         * src/z80/peeph.def: Added transpose redundent load rule.
9674
9675         * src/z80/main.c: Added force callee saves for jaune.
9676
9677         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9678
9679         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9680
9681 2002-03-28  Johan Knol  <johan AT balder>
9682
9683         * src/SDCCval.c: fixed bug #532436
9684
9685 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9686         * /src/port.h:
9687         Added "char *Processor" field to the port structure.
9688
9689         * /src/SDCCmain.c:
9690         Added -p option. Allows port dependent processor to be specified.
9691
9692         * all ports:
9693         Initialized the new field char *Processor field to NULL in all ports
9694
9695         * /src/pic/*:
9696         Compiler generated registers for interrupt context saving
9697         were not getting allocated.
9698
9699 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9700
9701         * /src/SDCCast.c:
9702         Fixed left shift. Will promote the left side of a left shift
9703         if a) left shifting more than size of operand or b) when assigned
9704         to something size > size of left side
9705
9706 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9707         * src/pic/*
9708         tons of changes. Register allocation has been
9709         rewritten. Added customization for the various PICs. Flow
9710         analysis is restructured. ...
9711
9712         * src/pic/device.h:
9713         Added
9714
9715         * src/pic/device.c:
9716         Added. device.c is a PIC port hack to accomodate variations
9717         in PIC devices.
9718
9719 2002-03-13  Michael Hope  <michaelh AT vroom>
9720
9721         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9722
9723 2002-03-04  johanknol  <johanknol AT manik>
9724
9725         * /src/SDCCval.c: fixed
9726
9727         const unsigned char arr[][2] = { { 0, 1 } };
9728         t18.c:1: error: Initializer element is not constant
9729
9730 2002-03-04  bela  <bela AT manik>
9731
9732         * /device/include/mcs51reg.h:
9733         ds89c420 register definition update
9734
9735 2002-03-03    <johan AT FRIJA>
9736
9737         * support/Util/SDCCerr.c: did something, but don't no why anymore
9738
9739         * support/regression/tests/bug-524691.c: made it a little less shy
9740
9741         * src/SDCCast.c (decorateType): fixed bug #524697
9742
9743         * src/SDCCast.c: made some lineno improvements
9744
9745         * src/SDCCval.c (getNelements): changed warning to error
9746
9747         * src/SDCCglue.c (printIvalArray): changed warning to error
9748
9749         * src/SDCCicode.c: fixed a warning for mingw
9750
9751         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9752
9753         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9754
9755 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9756
9757         * src/ds390/peeph.def:
9758         Added some more peephole rules
9759
9760         * src/ds390/gen.c: Various fixes & enhancements
9761
9762         * src/SDCClrange.c, src/SDCClrange.h:
9763         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9764
9765         * src/ds390/ralloc.c:
9766         various fixes & enhancements (ds390) specific
9767
9768         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9769         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9770         from rallocs.
9771
9772         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9773
9774 2002-03-02    <johan AT FRIJA>
9775
9776         * src/SDCCast.c (decorateType): fixed bug #524708
9777
9778         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9779
9780         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9781
9782 2002-03-01  Michael Hope  <michaelh AT vroom>
9783
9784         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9785
9786         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9787
9788 2002-03-01    <johan AT FRIJA>
9789
9790         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9791
9792         * src/SDCCast.c (decorateType): fixed bug #524209
9793
9794         * src/SDCCval.c (valNot): fixed bug #524195
9795
9796 2002-02-26    <johan AT balder>
9797
9798         * src/xa51/gen.c: fixed a warning
9799
9800         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9801
9802         * src/SDCCast.c (decorateType): fixed bug #522534
9803
9804 2002-02-23    <johan AT balder>
9805
9806         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9807
9808 2002-02-22    <johan AT balder>
9809
9810         * src/SDCCast.c: fixed bug #514865
9811
9812         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9813
9814 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9815
9816         * sdcc/src/SDCCloop.c:
9817         Previous fix was not good. basic blocks that have "break" or "return" are
9818         not really partof a loop , but live ranges used in these blocks should
9819         be live thru the entire loop, so set partOfLoop but don't add them to
9820         loop region
9821
9822 2002-02-21    <johan AT FRIJA>
9823
9824         * src/SDCCcse.c: fixed bug #514308
9825
9826 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9827
9828         * src/SDCCloop.c:
9829         Fixed BUG #519583. If a conditional block ended in a return/break
9830         statement inside a loop, it was not being considered part of the loop.
9831
9832         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9833
9834 2002-02-10  Karl Bongers <karl AT turbobit.com>
9835
9836         * debugger/*:
9837         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9838         with lots of comments and notes.
9839
9840         * device/examples/test2.c:
9841         Fix bug, "red" variable not being initialized(compiler complained).
9842
9843         * device/examples/Makefile, examples/test3.c:
9844         Add Makefile in device/examples folder, compiles test3.c
9845         for use as a multiple module SDCDB test case.
9846
9847         * sim/ucsim/cmd.src/cmdset.cc:
9848         Took out debug printfs in ucsim "next" command.
9849
9850         * sim/ucsim/xa.src:
9851         Karl and Johan start ucsim XA support.  Most dissassembly working,
9852         about 75% emulation done(plenty of work remaining).
9853
9854         * sim/ucsim/z80.src:
9855         Add Z80 support to ucsim, add test-ucz80 regression test,
9856         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9857         Notice z80 compiler fails on examples/test3.c/crc code.
9858
9859 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9860
9861         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9862         Added support for --parms-in-bank1
9863
9864         * src/ds390/peeph.def:
9865         added a few more peephole optimzations
9866
9867         * src/ds390/main.c:
9868         1) added __builtin_inp & __builtin_outp used to read in data of given length
9869            from a memory mapped port
9870         2) added __builtin_memcmp
9871         3) added __builtin_swapw swap bytes of a short
9872
9873         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9874         1) handle multiple send & receives from register bank1
9875         2) ralloc can now allocate DPTR1 to some liveRanges
9876
9877         * src/SDCCsymt.c, src/SDCCsymt.h:
9878         changes to handle multiple sends & receives
9879
9880         * src/SDCCptropt.h:
9881         added some pointer arithmetic optimization
9882
9883         * src/SDCCptropt.c:
9884         added some pointer arithmetic optimizations but not stable yet so not
9885         called from anywhere (will get this working shortly)
9886
9887         * src/SDCCopt.c: fixed for multiple sends & receives
9888
9889         * src/SDCCmain.c:
9890         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9891         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9892            set preprocessor defines (depending on options)
9893
9894         * src/SDCCicode.c, src/SDCCicode.h:
9895         changes made to handle multiple sends & receives
9896
9897         * src/SDCCglobl.h:
9898         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9899
9900         * src/SDCCcse.c, src/SDCCcse.h:
9901         added function findbackward def (to be used in upcoming optimization)
9902
9903         * src/SDCCcflow.c, src/SDCCcflow.h:
9904         added function returnAtEnd - to determine if a basic block terminates with
9905         a RETURN iCode
9906
9907         * src/SDCCast.c, src/SDCCast.h:
9908         added option parms-in-bank1
9909
9910         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9911         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9912         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9913         adjusted for --parms-in-bank1 option
9914
9915         * device/include/string.h:
9916         donot redefine "reentrant" keyword
9917
9918         * device/include/ds80c390.h: Added some more SFRs
9919
9920 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9921
9922         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9923
9924 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9925
9926         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9927
9928 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9929
9930         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9931
9932 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9933
9934         * Added --xram-movc option
9935
9936 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9937
9938         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9939
9940 2002-01-11  Johan Knol
9941
9942         * Added math lib of Jesus Calvino-Fraga
9943
9944 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9945
9946         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9947         * support/regression/Makefile: new target test-mcs51-stack-auto
9948         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9949
9950 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9951
9952         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9953
9954 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9955
9956         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9957
9958 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9959
9960         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9961
9962         * src/SDCCglue.h: add definition for printIvalChar()
9963
9964 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9965
9966         * src/SDCCast.c: fix #498138 by Johan
9967
9968         * src/SDCCglue.c: fix #498138 by Johan
9969
9970 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9971
9972         * support/regression/Makefile: fix clean
9973
9974         * support/regression/ports/ds390/support.c: fix transmission of last character
9975
9976 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9977
9978         * /sdcc/src/ds390/gen.c:
9979         a) improved computing address of stack variable
9980         b) took out some #if 0 code
9981         c) improved parmBytes adjustment
9982         d) improved genPlusIncr & genMinusIncr
9983         e) genCmp could generate bad code (when left assigned to DPTR)
9984         f) Fixed bug in hasInc
9985
9986         * /sdcc/src/ds390/ralloc.c:
9987         a) packRegsForSupport could mess up live information (Fixed)
9988         b) packRegsDPTRuse could be incorrect for left & right shift
9989
9990         * /sdcc/src/mcs51/ralloc.c:
9991         packRegsForSupport could mess up the live information (Fixed)
9992
9993         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9994
9995         * /sdcc/src/SDCCast.c:
9996         can reverse a loop even if function call is present as long
9997         as the loop control variable is local & is not passed as parameter
9998
9999 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10000
10001         * /sdcc/ChangeLog: *** empty log message ***
10002
10003         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10004         More builtin function additions for TININative
10005
10006         * /sdcc/src/ds390/ralloc.c:
10007         Had broken the regression testsuite
10008
10009         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10010
10011         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10012         Added funcattr hasStackParms will be set for reentrant functions when there
10013         are paramteres on the stack, this helps in minimizing frame pointer generation
10014         typeFromStr can handle function pointers now
10015
10016         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10017         *** empty log message ***
10018
10019 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10020
10021         * /src/ds390/gen.c, /src/ds390/main.c:
10022         More builtin function additions for TININative
10023
10024         * /src/ds390/ralloc.c:
10025         Had broken the regression testsuite
10026
10027         * /src/SDCCast.c: Fixed a bug in dumptree
10028
10029         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10030         Added funcattr hasStackParms will be set for reentrant functions when there
10031         are paramteres on the stack, this helps in minimizing frame pointer generation
10032         typeFromStr can handle function pointers now
10033
10034         * /doc/builtins.txt, /doc/TININative.txt:
10035         *** empty log message ***
10036
10037
10038 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10039
10040         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10041         ALPHA version for -mTININative
10042
10043         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10044         updated to reflect changes in the port structure
10045
10046         * /src/port.h:
10047         added function do_assemble (similar to do_link) if non-null this function
10048         will be called to do assembly (-mTININative) requires a multi command
10049         assembly
10050         added function genAssemblerEnd will be called to generate assembler Epilogue
10051
10052         * /src/SDCCsymt.c:
10053         added _JavaNative to debug info printing
10054
10055         * /src/SDCCmain.c: added option --tini-libid
10056         added port->do_assemble function (-mTININative) has a multi command assemble
10057
10058         * /src/SDCCglue.c: Disabled "constExpr" check
10059         added port->genAssemblerEnd function
10060
10061         * /src/SDCCglobl.h: Added option --tini-libid value
10062
10063         * /src/SDCCast.h:
10064         tookout optimizeCompare from the header (has no external references)
10065
10066         * /src/SDCCast.c: made one more function "static"
10067
10068 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10069
10070         * src/z80/mappings.i: Added z80asm support.
10071
10072         * src/z80/main.c: Added z80asm support on --asm=z80asm
10073
10074         * src/z80/gen.c: Fixed asm portability issues.
10075
10076         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10077
10078         * src/SDCCglue.c (printExterns): Added global/extern split.
10079
10080 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10081
10082         * support/regression/Makefile: added test for mcs51 model large
10083
10084         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10085
10086         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10087
10088 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10089
10090         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10091
10092 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10093
10094         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10095
10096         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10097
10098 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10099
10100         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10101
10102         * support/regression/tests/simplefloat.c: Port to mcs51.
10103
10104 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10105         * support/regression/tests/bug-485362.c: Added.
10106
10107         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10108
10109         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10110
10111         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10112
10113         * src/z80/gen.c (aopDump): Added a dump function.
10114
10115 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10116         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10117
10118         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10119
10120         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10121
10122         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10123
10124         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10125
10126         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10127
10128         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10129
10130         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10131
10132         * support/regression/ports/ds390/support.c: Use tinibios.
10133
10134         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10135
10136 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10137
10138         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10139         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10140
10141         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10142
10143         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10144
10145 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10146
10147         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10148
10149         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10150         (packRegsForIYUse): Created and optimised.
10151
10152 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10153
10154         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10155 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10156
10157         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10158
10159         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10160
10161         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10162
10163 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10164
10165         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10166
10167         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10168
10169 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10170
10171         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10172
10173         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10174
10175         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10176
10177 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10178
10179         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10180         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10181         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10182
10183         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10184
10185         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10186         (genNotFloat): Added.
10187         (genUminusFloat): Added.
10188
10189         * device/lib/z80/Makefile: Added floating pt stubs.
10190
10191         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10192
10193         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10194
10195         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10196
10197 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10198
10199         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10200
10201         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10202
10203         * sdcc/support/regression/Makefile: Add port ds390.
10204
10205         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10206
10207         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10208
10209         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10210
10211         * sdcc/support/regression/ports/ds390/support.c: Added.
10212
10213         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10214
10215         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10216
10217         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10218
10219 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10220
10221         * device/include/malloc.h: Added z80 and gbz80 support.
10222
10223         * device/lib/gbz80/heap.s: Added.
10224
10225         * device/lib/z80/heap.s: Added.
10226
10227         * device/lib/malloc.c: Added z80 and gbz80 support.
10228
10229         * support/regression/tests/malloc.c (testMalloc): Added.
10230
10231         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10232
10233         * support/regression/tests/bug-478094.c: Added.
10234
10235         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10236
10237 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10238
10239         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10240
10241         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10242
10243         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10244
10245         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10246
10247         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10248
10249 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10250
10251         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10252
10253 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10254
10255         * support/regression/tests/bug-477927.c: Added.
10256
10257         * src/z80/peeph.def: Added minor rules.
10258
10259         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10260
10261         * src/z80/peeph.def: Added jump optimisation modification.
10262
10263 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10264
10265         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10266
10267 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10268
10269         * support/regression/tests/funptrs.c: Added.
10270
10271 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10272
10273         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10274
10275 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10276
10277         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10278
10279         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10280
10281         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10282         (movLeft2ResultLong): Created.
10283
10284         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10285         (joinPushes): Added.  Joins two char pushes into a word push.
10286
10287 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10288
10289         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10290
10291         * support/makebin/Makefile (install): Added creation of dest dir.
10292
10293 2001-10-24 Karl Bongers <karl AT turbobit.com>
10294
10295         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10296
10297 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10298
10299         * src/z80/ralloc.c: Turned off faulty pack for one use.
10300
10301         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10302
10303         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10304
10305 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10306
10307         * support/regression/Makefile: Improved clean
10308
10309         * support/regression/ports/gbz80/spec.mk: Added clean
10310
10311         * support/regression/ports/host/spec.mk: Added clean
10312
10313         * support/regression/ports/z80/spec.mk: Added clean
10314
10315         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10316
10317         * support/regression/ports/mcs51/timeout.c: little improvements
10318
10319 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10320
10321         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10322
10323         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10324
10325         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10326
10327 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10328
10329         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10330
10331         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10332
10333 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10334         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10335
10336         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10337
10338         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10339
10340         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10341
10342         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10343
10344         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10345
10346         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10347
10348         * support/regression/tests/longor.c: Added.
10349
10350 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10351
10352         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10353
10354         * as/mcs51/aslink.h: define PATH_MAX
10355
10356         * as/mcs51/asm.h: define PATH_MAX
10357
10358         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10359
10360         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10361
10362         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10363
10364         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10365
10366         * src/SDCCglobl.h: define PATH_MAX
10367
10368         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10369
10370         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10371
10372 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10373
10374         * src/z80/gen.c (gencjneshort): Fixed
10375
10376         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10377
10378 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10379
10380         * support/regression/tests/bug-469671.c: Added.
10381
10382         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10383
10384 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10385
10386         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10387
10388         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10389
10390 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10391
10392         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10393
10394         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10395
10396         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10397
10398         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10399
10400         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10401
10402         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10403
10404         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10405
10406 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10407
10408         * 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.
10409
10410         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10411
10412         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10413
10414 2001-10-07    <johan AT FRIJA>
10415
10416         * device/lib/gets.c (gets): fixed the return value.
10417
10418 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10419         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10420
10421         * 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.
10422
10423         * 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.
10424
10425         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10426
10427         * src/pic/gen.c: Removed Safe_strdup.
10428
10429         * configure.in: Added option to enable libgc support.
10430
10431         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10432         (bitVectUnion): Optimised.
10433         (bitVectIntersect): Optimised.
10434         (bitVectBitsInCommon): Optimised.
10435         (bitVectCplAnd): Optimised.
10436
10437         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10438
10439 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10440
10441         * src/SDCCmain.c: distinguish between assembler debug and plain options
10442
10443         * src/avr/main.c:   remove standard assembler options
10444
10445         * src/ds390/main.c: remove standard assembler options
10446
10447         * src/mcs51/main.c: remove standard assembler options
10448
10449         * src/port.h: removed "PENDING" comment
10450
10451 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10452
10453         * src/device/lib/_mulint.c  : new, with assember functions
10454
10455         * src/device/lib/_mullong.c : new, with assember functions
10456
10457         * src/device/lib/_divuint.c : with assember functions
10458
10459         * src/device/lib/_divsint.c : with assember functions
10460
10461         * src/device/lib/_divulong.c: with assember functions
10462
10463         * src/device/lib/_divslong.c: with assember functions
10464
10465         * src/device/lib/_moduint.c : with assember functions
10466
10467         * src/device/lib/_modsint.c : with assember functions
10468
10469         * src/device/lib/_modulong.c: with assember functions
10470
10471         * src/device/lib/_modslong.c: with assember functions
10472
10473         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10474
10475         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10476
10477         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10478                                       replaced _mululong.c and _mulslong.c by _mullong.c
10479
10480 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10481
10482         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10483
10484 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10485
10486         * src/SDCCglue.c: test, if win32api is available for MINGW
10487
10488 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10489
10490         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10491         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10492         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10493         * support/regression/ports/host/spec.mk: removed GENERIC
10494         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10495         * support/regression/ports/z80/spec.mk: removed GENERIC
10496
10497 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10498
10499         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10500
10501         * support/regression/tests/bug-467035.c: Created.
10502
10503 2001-10-01    <johan AT FRIJA>
10504
10505         * src/SDCC.y: fixed bug #466586 part 1
10506
10507 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10508
10509         * SDCCicode.c: z80 has no generic pointers
10510         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10511
10512 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10513
10514         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10515
10516 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10517
10518         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10519
10520         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10521
10522 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10523
10524         * configure.in: Fixed up so that ucsim is only configured once.
10525
10526         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10527
10528         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10529         (getPathDifference): As above.
10530
10531         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10532
10533         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10534
10535 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10536         * .version: Updated to 2.3.1
10537
10538         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10539         Added copyright header.
10540
10541         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10542         (assemble): Added support for macro based assembler commands.
10543         (linkEdit): Added support for macro based linker commands.
10544         (preProcess): Changed the pre-processor to use macros.
10545         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10546         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10547
10548         * device/lib/z80/crt0.s: Added module name for debugging.
10549
10550 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10551
10552         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10553
10554         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10555
10556         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10557
10558         * src/Makefile.in: Added SDCCmacro and SDCCutil
10559
10560 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10561
10562         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10563
10564 2001-09-16    <johan AT FRIJA>
10565
10566         * 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.
10567
10568 2001-09-15    <johan AT FRIJA>
10569
10570         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10571         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10572
10573 2001-09-11    <johan AT FRIJA>
10574
10575         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10576
10577 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10578
10579         * support/regression/tests/bug-460444.c: Added test case.
10580
10581         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10582         (genCast): Added justification for all of the asserts.
10583
10584 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10585
10586         * support/regression/support.c: _xdata replaced by xdata
10587
10588         * support/regression/spec.mk: removed _generic
10589
10590 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10591
10592         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10593
10594         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10595         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10596
10597         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10598
10599         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10600
10601         * support/regression/tests/bug-460010.c: Added test case.
10602
10603         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10604
10605 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10606
10607         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10608
10609         * support/regression/testfwk.c: removed workaround for bug #436344
10610
10611         * support/regression/tests/bp.c: use less memory with mcs51
10612
10613         * support/regression/tests/bug-441448.c: use less memory
10614
10615         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10616
10617         * support/regression/collate-results.py: typo
10618
10619 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10620
10621         * support/regression/tests/fetchoverlap.c: Added new test case.
10622
10623         * support/regression/tests/bp.c: Added new test case.
10624
10625         * support/regression/tests/bug-448984.c: Added new test case.
10626
10627         * support/regression/tests/pow2shifts.c: Added new test case.
10628
10629         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10630         (genlshTwo): Fixed right shift for count > 8.
10631
10632         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10633
10634 2001-09-08    <johan AT FRIJA>
10635
10636         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10637
10638 2001-09-07    <johan AT FRIJA>
10639
10640         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10641
10642         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10643
10644 2001-09-06    <johan AT FRIJA>
10645
10646         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10647         * bernhard noted me at this: "() equals to (void)" (1.38)
10648
10649 2001-09-05    <johan AT FRIJA>
10650
10651         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10652
10653 2001-09-04    <johan AT FRIJA>
10654
10655         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10656
10657
10658 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10659
10660         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10661
10662 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10663
10664         * link/z80/aslink.h: Fixed path for PATH_MAX
10665
10666 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10667
10668         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10669
10670         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10671
10672         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10673
10674         * 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.
10675
10676 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10677
10678         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10679         (genCmp): Fixed up genCmp for the GB with longs.
10680
10681         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10682
10683         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10684
10685         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10686
10687         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10688
10689 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10690
10691         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10692
10693 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10694
10695         * 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.
10696
10697         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10698
10699 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10700
10701         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10702
10703         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10704
10705 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10706
10707   * sim/ucsim/configure:    little improvement of Cygwin-detection
10708   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10709   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10710   * support/regression/tests/bug-221100.c: small changes for mcs51
10711   * support/regression/tests/bug-221168.c: small changes for mcs51
10712   * support/regression/tests/bug-227710.c: small changes for mcs51
10713   * support/regression/tests/staticinit.c: small changes for mcs51
10714   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10715   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10716   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10717
10718 $Revision$